Replaced fogservice.zip from a backup prior to my last update. Domain joins are working again.
Latest posts made by Eli Kelly
-
RE: AD Joins not working.
-
RE: HostnameChanger error: "Length of data to decrypt is invalid."
Haven’t tried this but Tom posted this in the development thread for reverting to earlier version.
[URL=“http://fogproject.org/forum/threads/latest-development-fog.10556/page-22#post-42431”]Latest Development FOG[/URL]I’m having an issue with AD joins that might be related. My host names are not changing with service starts but do change after image downloads. I’m going to try recompiling hostnamechanger today. I’ll update my thread in the Windows forum as I go.
-
RE: AD Joins not working.
Ok some progress.
Checkboxes: Appears to be an issue with my Chrome browser. Checkboxes work normally in IE.
Log: Not showing activity related to AD because of Windows Firewall settings.
AD Joins failing: Now see a “padding is invalid message”.
Do I need to recompile the hostnamechanger module and encrypt the AD password again after updating to svn 2868 from svn 1858?
-
AD Joins not working.
Current SVN 2868. This was working in previous versions.
Join Domain after image checkbox does not stay checked after updating hosts. None of the previously AD registered hosts have checkbox checked any more.
The fog log on the clients does not show any AD activity but that is to be expected based on the checkbox status.
-
RE: GUI hangs when listing images
For now I will do some housekeeping. Some of the images can be deleted and some of them can be stored offline.
Thanks!
-
GUI hangs when listing images
Searches are relatively responsive but “list all images” takes about 5 minutes and hangs the browser tab until it is done. This isn’t critical but it would be desirable for this to work.
Current: svn 2868 on CentOS 6.6
First noticed this after I updated from svn 1858 to what I think was svn 2759 (or right around).
I bring the following up in case there is a helpful clue:
-No errors found in logs
-FOG_MEMORY_LIMIT=1024 made no detectable difference
-Storage nodes work but dashboard disk info fails to connect to them. Not trying to solve this unless it is a symptom of a more significant issue. Credentials stored work to connect to database through SSH. I did have to change the default image directory to /home/fog. This issue predates image list issue
-I have 43 images taking up just under 1TB.
-
RE: Windows 7 Deployment FOG- SAD2 Driver tool
VMWare is working again for me. There was one important step that I was missing. It was expressed clearly by the OP. There was even a screenshot. I have even done it hundreds of times correctly in the past.
It simply turned out that I have been forgetting to tick the “Generalize” box! Sysprep wasn’t processing anything from the Specialize phase of my unattend.
-
RE: Securing Active Directory
I have only had luck using Visual Studio 2008. None of the Express versions have worked for me. None of the newer standard versions seem to work either.
-
RE: Windows 7 Deployment FOG- SAD2 Driver tool
[quote=“jmeyer, post: 32641, member: 6537”]Have you reboot your VM before and after sysprep to see if this happen ?[/quote]
VM reboot after sysprep completes normally.
Update: Gave up on VMWare for this. I switched to VirtualBox and the process is working perfectly except that I get prompts for a hostname when windows starts up after deploying to a physical machine. Actually it initially prompted for the hostname and timezone. My unattend (which works correctly with my old VMWare snapshots as well as with MDT deployments) originally declared the Timezone and ComputerName in the specialize pass. Adding a Timezone value in the OOBE pass fixed the prompt for time zone but adding the ComputerName tag there doesn’t make a difference. I have tried leaving the ComputerName tag out of both sections and not surprisingly the hostname prompt still appears when the physical machine boots after deployment.
Admittedly my unattend file is somewhat complex as it does a few things such as configure RDP, enable Administrator, disable WER. Tomorrow I will try a very basic unattend file but thought I would see if any ideas came up that would save me the troubleshooting time.
Thanks
Eli
-
RE: Fog 0.33b edit PXE menu
This is working pretty well for me. Much credit to others on this forum who came up with most of this…
[CODE]login && goto validate || goto return
:validate
iseq ${password} yourpasswordhere && goto MENU || goto return:MENU
menu
item --gap – ---------------- iPXE boot menu ----------------
item ipxedemo ipxe online boot demo
item shell ipxe shell
item pe86 Generic WinPE x86
item lt86 MDT Lite Touch x86
item lt64 MDT Lite Touch x64
item ghost Ghost Boot
item dban Derek’s Boot and Nuke
item return return to previous menu
item hostinfo details about this computer
choose --default return --timeout 5000 target && goto ${target}:ipxedemo
chain http://boot.ipxe.org/demo/boot.php ||
goto MENU:shell
shell ||
goto MENU:pe86
initrd http://${fog-ip}/ISO/pe86.iso
chain memdisk iso raw ||
goto MENU:lt86
initrd http://${fog-ip}/ISO/lt86.iso
chain memdisk iso raw ||
goto MENU:lt64
initrd http://${fog-ip}/ISO/lt64.iso
chain memdisk iso raw ||
goto MENU:ghost
initrd http://${fog-ip}/ISO/ghost.iso
chain memdisk iso raw ||
goto MENU:dban
initrd http://${fog-ip}/ISO/dban.iso
chain memdisk iso raw ||
goto MENU:return
chain http://${fog-ip}/${fog-webroot}/service/ipxe/boot.php?mac=${net0/mac} ||
prompt
goto MENU:hostinfo
echo This computer : ||
echo MAC address…${net0/mac} ||
echo IP address…${ip} ||
echo Netmask…${netmask} ||
echo Serial…${serial} ||
echo Asset number…${asset} ||
echo Manufacturer…${manufacturer} ||
echo Product…${product} ||
echo BIOS platform…${platform} ||
echo ||
echo press any key to return to Menu ||
prompt
goto MENUautoboot
item return return to previous menu
choose --default return --timeout 5000 target && goto ${target}:ipxedemo
chain http://boot.ipxe.org/demo/boot.php ||
goto MENU:shell
shell ||
goto MENU:return
chain http://${fog-ip}/${fog-webroot}/service/ipxe/boot.php?mac=${net0/mac} ||
prompt
goto MENUautoboot[/CODE]