Advertisement
neploho

vac error fix 3

Jul 6th, 2015
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. @echo off
  2. :one
  3. echo Make sure this is run as administrator.
  4. echo.
  5. echo Steam Service Fixer is starting...
  6. echo (this may take several minutes)
  7. echo.
  8.  
  9. timeout /t 10
  10.  
  11. "C:\Program Files (x86)\Steam\bin\SteamService.exe" /repair
  12.  
  13. bcdedit.exe /set {current} nx AlwaysOn
  14. bcdedit.exe /deletevalue nx
  15.  
  16. bcdedit /deletevalue nointegritychecks
  17. bcdedit /deletevalue loadoptions
  18. bcdedit /debug off
  19.  
  20. echo.
  21. echo If you have changed the default Steam
  22. echo directory enter "skip" otherwise enter "continue"
  23.  
  24. set /p one=
  25. if %one%==continue goto:blank2
  26. if %one%==skip goto:blank
  27.  
  28. :blank
  29. cls
  30. echo.
  31. echo You need to restart your computer before playing.
  32. echo After the restart don't forget to: open Steam, goto CS:GO properties and "Verify Integrity of Game Cache" before playing
  33. echo.
  34. timeout /t 10
  35. echo To restart now type "restart" (SAVE ALL OPEN WORK)
  36. echo To manually restart before playing later enter "close"
  37.  
  38. set /p blank=
  39. if %blank%==restart goto:blank4
  40. if %blank%==close goto:blank3
  41.  
  42. :blank3
  43. exit
  44. -start "C:\Program Files (x86)\Steam\Steam.exe"
  45. -exit
  46.  
  47. :blank2
  48. RD /S /Q "C:\Program Files (x86)\Steam\appcache"
  49. RD /S /Q "C:\Program Files (x86)\Steam\SteamApps\common\Counter-Strike Global Offensive\csgo\cache"
  50. RD /S /Q "C:\Program Files (x86)\Steam\ClientRegistry.blob"
  51. goto blank
  52.  
  53. :blank4
  54. cls
  55. echo Restarting...
  56. shutdown.exe /r /t 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement