Enable & Disable Driver Updates from Windows Update during OSD
To Prevent install driver from windows updates, you can add command line to disable in OSD task sequence
cmd.exe /c reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\DriverSearching" /v SearchOrderConfig /t REG_DWORD /d 0 /f
To Enable use the below command line
cmd.exe /c reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\DriverSearching" /v SearchOrderConfig /t REG_DWORD /d 1 /f
No comments:
Post a Comment