06/06/2019
Enable Mouse in OSD Task Sequence
A lot of times people wonder or ask about how to enable Mouse during OSD Task Sequence in MDT or SCCM. Here is the command. Just add a command line in your Task Sequence and copy and paste the command below:
cmd.exe /c reg load HKLM\Offline c:\windows\system32\config\software & cmd.exe /c REG ADD “HKLM\Offline\Microsoft\Windows\CurrentVersion\Policies\System” /v EnableCursorSuppression /t REG_DWORD /d 0 /f & cmd.exe /c reg unload HKLM\Offline