REM REM Running MSRT locally REM REM REM Checking for x86 or x64 REM To use this as part of a GPO Startup Script, change to your domain. REM Notice the copy of the MRT.log up to a central location has \. This is on purpose. REM In most cases, opening a share with everyone write permissions on a DC is not recommended, it is suggested to use a REM member server or workstation. REM if /i %PROCESSOR_ARCHITECTURE% == x86 goto x86 if /i %PROCESSOR_ARCHITECTURE% == AMD64 goto x64 if /i %PROCESSOR_ARCHITECTURE% == IA64 goto End :x86 call \\\netlogon\Sleep.exe 10 Start /wait \\\netlogon\Windows-KB890830-V2.6.exe /q copy %windir%\debug\mrt.log \\\\%computername%_%username%_mrt.log goto End :x64 call \\\netlogon\windows-kb890830-x64-v2.6.exe /q copy %windir%\debug\mrt.log \\\\%computername%_%username%_mrt.log :End Exit