
acpowell
Established Members-
Posts
6 -
Joined
-
Last visited
acpowell's Achievements
Newbie (1/14)
0
Reputation
-
SCCM 2012 R2 SP1 OSD 0x80004005 on HP 840 G3 win7x64
acpowell replied to acpowell's topic in Configuration Manager 2012
Fixed this on my own. I tried a windows 10 TS and it worked. when looking through the BIOS I noticed the machines I had defaulted to UEFI on with BIOS off. So I changed that to BIOS on one machine and it imaged. So I modified my Partition steps in the windows 7 image to account for UEFI and that fixed the issue. -
We recently started getting G3 models of the HP Elitebook 840 and since then we cannot image them with the normal Windows 7 TS. It starts applying the OS and then errors at like 99%. It only seems to effect this model of machine. we are using PE10 and I have installed the HP PE10 drivers to the boot.wim I did apply so CU updates to the server recently to fix the driver duplication issue. I am attaching the SMSTS.log from the latest attempt. (the "@" is denoting redaction of company server info) thanks for the help. PS. this happens with USB media and PXE UPDATE*** removed log file as issue was resolved.
-
Windows 10 ENT setupcomplete.cmd never launches
acpowell replied to acpowell's question in Windows Deployment Services (WDS)
I am also seeing in the unattendGC\setupact.log that the file supposedly runs: 2016-02-16 11:11:00, Info [windeploy.exe] RunUserProvidedScript: Found script at [C:\WINDOWS\Setup\Scripts\SetupComplete.cmd]; executing with UI hidden... 2016-02-16 11:18:25, Info [windeploy.exe] RunUserProvidedScript: Successfully executed script; (returned with exit code 0x0) 2016-02-16 11:18:25, Info [windeploy.exe] WinDeploy.exe exiting with code [0x0] Although I am not seeing any evidence of it running other than this log. Here is the script it is running and confirmed to work on windows 8.1 and it works if I run it manually: @echo Off Echo ################################################### Echo ################################################### Echo ## ## Echo ## Apply customizations to Default User profile ## Echo ## ## Echo ################################################### Echo ################################################### Echo ################## Echo # Registry Edits # Echo ################## Echo ********************************** Echo Load Default User registry hive Echo ********************************** reg load HKU\DefaultUser "C:\Users\Default\ntuser.dat" Echo ****************************** Echo Force Classic Control Panel Echo ****************************** reg add "HKU\DefaultUser\Software\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel" /v StartupPage /d 1 /t REG_DWORD /f reg add "HKU\DefaultUser\Software\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel" /v AllItemsIconView /d 1 /t REG_DWORD /f Echo ************************************************************************* Echo Show the desktop icons for Computer, User's Files, and Internet Explorer Echo ************************************************************************* Echo ************************************* Echo **Show Computer icon on the desktop** Echo ************************************* REG ADD "HKU\DefaultUser\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /v "{20D04FE0-3AEA-1069-A2D8-08002B30309D}" /t REG_DWORD /d 0 /f Echo ***************************************** Echo **Show User's Files icon on the desktop** Echo ***************************************** REG ADD "HKU\DefaultUser\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /v "{59031a47-3f72-44a7-89c5-5595fe6b30ee}" /t REG_DWORD /d 0 /f Echo ********************************************** Echo **Show Internet Explorer icon on the desktop** Echo ********************************************** REG ADD "HKU\DefaultUser\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /v "{871C5380-42A0-1069-A2EA-08002B30309D}" /t REG_DWORD /d 0 /f Echo ***************************************************** Echo Disable Microsoft Office first run message Echo ***************************************************** reg add "HKU\DefaultUser\Software\Microsoft\Office\14.0\Common\General" /v ShownOptIn /d 1 /t REG_DWORD /f Echo ***************************************************** Echo Disable Microsoft Communicator First Run Tour Echo ***************************************************** reg add "HKU\DefaultUser\Software\Microsoft\Communicator" /v FirstRunPlayed /d "1" /t REG_DWORD /f Echo ***************************************************** Echo Set default theme Echo ***************************************************** reg add "HKU\DefaultUser\Software\Policies\Microsoft\Windows\Personalization" /v Themefile /d "%systemroot%\Resources\Themes\**REDACTED**.theme" /t REG_SZ /f Echo ============================================================================== Echo Make Windows use OEM Background image Echo ============================================================================== REG ADD HKLM\SOFTWARE\Policies\Microsoft\Windows\Personalization /V LockScreenImage /T REG_SZ /D C:\Windows\Web\Wallpaper\**REDACTED**\**REDACTED**LockScreenImage_Lenovo.png /F Echo *********************************** Echo Unload Default User registry hive Echo *********************************** reg unload HKU\DefaultUser -
Windows 10 ENT setupcomplete.cmd never launches
acpowell replied to acpowell's question in Windows Deployment Services (WDS)
From what I am reading it completes the copy, which I can verify on the machine once I log into it. I even went so far as to have it create an ErrorHandler.cmd also. -
Windows 10 ENT setupcomplete.cmd never launches
acpowell posted a question in Windows Deployment Services (WDS)
I am using SCCM 2012 R2 to do ploy Windows 10 Enterprise. That last step in the task sequence puts a SetupComplete.cmd script in C:\Windows\Setup\Scripts\. This has worked flawlessly on my windows 7 and windows 8.1 installs but when I try to get it to work with windows 10 it is a no go. I can run the file manually and it works fine but I need it to run before the user logs in as it adds things to the profile. I am not sure where to even start with troubleshooting this as it just worked from the get go with the other builds. Any help would be greatly appreciated.