1234567891011121314151617181920 |
- @echo off
- chcp 866
- echo Debug trace off utility
- echo Remove debug trace parameters
- reg delete "HKLM\SYSTEM\CurrentControlSet\Services\sncc0\Trace" /f
- IF errorlevel 1 GOTO :error
- echo.
- echo Trace is turned off, computer should be restarted
- echo Restart computer right now (Y/N)?
- set /p answer=""
- IF /I %answer% EQU Y shutdown /r
- EXIT 0
- :error
- echo An error occured. Run command as administrator.
- pause
- EXIT 1
|