Advertisement
neploho

vac error fix 2

Jul 6th, 2015
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. @echo off
  2. cls
  3. echo Deleting Appcache...
  4. del "D:\Games\Steam\appcache"
  5. echo Repairing SteamService...
  6. start "" "D:\Games\Steam\bin\SteamService.exe" /repair
  7. echo Press any key when Steam Client Service closes...
  8. pause>nul
  9. echo Enabling DEP...
  10. bcdedit /deletevalue nx>nul
  11. bcdedit.exe /set {current} nx AlwaysOn>nul
  12. timeout /t 3 /nobreak>nul
  13. echo Turning off Kernel Debugging...
  14. bcdedit /debug off>nul
  15. timeout /t 3 /nobreak>nul
  16. echo Enabling Kernel Integrity...
  17. bcdedit /deletevalue nointegritychecks>nul
  18. bcdedit /deletevalue loadoptions>nul
  19. echo Press any key to launch Steam or just close this window now...
  20. pause>nul
  21. start "" "D:\Games\Steam\steam.exe"
  22. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement