Jump to content

jvennes

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by jvennes

  1. dir of WDS Scripts folder: Directory of Y:\Scripts 03/14/2014 12:14 PM . 03/14/2014 12:14 PM .. 11/14/2013 03:11 PM Optiplex_9010-USB3 03/05/2014 04:46 PM Optiplex_9020-USB3 03/14/2014 11:47 AM 400 namechange.cmd 03/07/2014 02:05 PM 4,800 setupcomplete.cmd 2 File(s) 5,200 bytes It's the complete driver package (which also installs the USB3mon service). Directory of Y:\Scripts\Optiplex_9010-USB3 11/14/2013 03:11 PM . 11/14/2013 03:11 PM .. 08/13/2013 06:43 PM apps 08/13/2013 06:43 PM Drivers 08/13/2013 06:43 PM Lang 08/13/2013 06:43 PM x64 11/02/2006 09:21 AM 319,456 DIFxAPI.dll 07/18/2013 02:44 AM 8,104 mup.xml 08/13/2013 06:45 PM 46,134 Readme.txt 07/18/2013 02:44 AM 961,784 Setup.exe 08/09/2012 04:17 PM 5,226 Setup.if2 07/18/2013 02:43 AM 41,984 USB3Ver.dll 6 File(s) 1,382,688 bytes
  2. namechange.cmd is called by the image unattend.xml in WDS. @[u][url="http://www.edugeek.net/member.php?u=16971"]echo[/url][/u] off pushd %~dp0 :: This script is called by unattend.xml :: Copy setupcomplete.cmd, and the 2 usb drivers to local computer for install completion. if not exist %WINDIR%\Setup\Scripts md %WINDIR%\Setup\Scripts xcopy /e /y /i /q /c . %WINDIR%\Setup\Scripts\ :: Rename the computer to its registered DNS name, then reboot. wsname /N:$DNS /reboot popd Here is my setupcomplete.cmd: @[u][url="http://www.edugeek.net/member.php?u=16971"]echo[/url][/u] off title %0 pushd %~dp0 setlocal enableextensions :: ================================================================================================== :: This script is the last script that runs after the Windows setup is complete. :: This is where we do the final cleanup, activate MS office, and finally, :: join the computer to the domain and delete this file! (Modified 03/07/2014 -JFV) :: ================================================================================================== :: Activate MS Office 2013 products %WINDIR%\System32\cscript.exe "%PROGRAMFILES%\Microsoft Office\Office15\ospp.vbs" /act :: ================================================================================================== :: Delete the sysprep folder created by GHOST (if it exists) if exist %SYSTEMDRIVE%\sysprep rd /s /q %SYSTEMDRIVE%\sysprep :: ================================================================================================== :: Delete the unattend.xml files (may contain passwords). if exist %WINDIR%\System32\sysprep\unattend.xml del /Q /F %WINDIR%\System32\sysprep\unattend.xml if exist %WINDIR%\Panther\unattend.xml del /Q /F %WINDIR%\Panther\unattend.xml :: ================================================================================================== :: Check to see if this is an Optiplex 9010/9020 and install USB3 drivers wmic computersystem get model | findstr /i /c:"Optiplex 9010" if not errorlevel 1 set target=Optiplex_9010-USB3 wmic computersystem get model | findstr /i /c:"OptiPlex 9020" if not errorlevel 1 set target=Optiplex_9020-USB3 if defined target ( pushd %target% setup -s popd ) :: ================================================================================================== :: Join the domain netdom join %COMPUTERNAME% /domain:engr /UserD:accountop /PasswordD:xxxxxxxx /REB:5 :: ================================================================================================== :: Delete this script (because it contains a password). rd /s /q %windir%\Setup\Scripts :: ================================================================================================== Hope this helps
  3. I have the Optiplex 9010's and 9020's. If I inject the USB3 drivers into the image, they will BSOD after installing the drivers. Solution: I have my image Unattend file run a script which copies the 2 folders (9010-USB3 & 9020-USB3) and the setupcomplete.cmd to the C:\Windows\Setup\Scripts folder. In SetupComplete.cmd, I use wmic computersystem get model to determine which drivers to install. pushd to the appropriate folder, and run setup -s (silent install). Now the drivers for the USB3 are installed just before the installation is complete. Hope this helps
×
×
  • Create New...