Skip to content

Instantly share code, notes, and snippets.

@Bluscream
Last active June 21, 2018 10:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bluscream/6d817a50abc934c00a6cefa8e57b26e9 to your computer and use it in GitHub Desktop.
Save Bluscream/6d817a50abc934c00a6cefa8e57b26e9 to your computer and use it in GitHub Desktop.
VAC Fixer
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\System\GameConfigStore]
"GameDVR_Enabled"=dword:00000000
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\GameDVR]
"AllowGameDVR"=dword:00000000
@echo off
color 0b
:SET_VARIABLES
echo.
echo Initializing...
echo.
title VAC Fixer by Bluscream - %date% , %time%
cd "C:\Program Files (x86)\Steam"
:KILL_GAMES
echo.
echo Killing Games...
echo.
taskkill /f /t /im csgo.exe
taskkill /f /t /im vibrance.GUI.exe
:REPAIR_GAMES
echo.
echo Repairing Games...
echo.
REM start steam://defrag/730
start steam://validate/730
echo Press any key when finished!
pause
:STOP_STEAM
echo.
echo Stopping Steam...
echo.
"steam://ExitSteam"
:KILL_STEAM
echo.
echo Killing Steam...
echo.
color 0a
taskkill /f /t /im Steam.exe
taskkill /f /t /im steamcmd.exe
taskkill /f /t /im SteamService.exe
taskkill /f /t /im steamwebhelper.exe
taskkill /f /t /im GameOverlayUI.exe
taskkill /f /t /im streaming_client.exe
taskkill /f /t /im steamerrorreporter.exe
taskkill /f /t /im steamerrorreporter64.exe
taskkill /f /t /im x86launcher.exe
taskkill /f /t /im x64launcher.exe
taskkill /f /t /im html5app_steam.exe
:KILL_OVERWOLF
echo.
echo Killing Overlays...
echo.
color 0e
taskkill /f /t /im Overwolf.exe
taskkill /f /t /im OverwolfBrowser.exe
taskkill /f /t /im OverwolfHelper.exe
taskkill /f /t /im OverwolfHelper64.exe
taskkill /f /t /im OverwolfTSHelper.exe
taskkill /f /t /im raptr.exe
taskkill /f /t /im raptr_ep64.exe
taskkill /f /t /im raptr_im.exe
taskkill /f /t /im GTLite.exe
taskkill /f /t /im GSInGameService.exe
taskkill /f /t /im GameVox.exe
:GAMEDVR
echo.
echo Disabling GameDVR...
echo.
color 0c
"G:\Steam\steamapps\common\Counter-Strike Global Offensive\_TOOLS\Disable GameDVR.reg"
:FIX_BOOT
echo.
echo Fixing Boot Values...
echo.
color 0c
bcdedit /set {current} nx OptIn
bcdedit /deletevalue nx
bcdedit /deletevalue nointegritychecks
bcdedit /deletevalue loadoptions
bcdedit /debug off
:REPAIR_STEAM
echo.
echo Repairing Steam Service...
echo.
color 0b
"C:\Program Files (x86)\Steam\bin\SteamService.exe" /repair
goto START_OVERWOLF
:REPAIR_WINDOWS
echo.
echo Repairing Windows Files...
echo.
color 0d
sfc /scannow
:KILL_SELF
echo.
echo Finishing...
echo.
taskkill /f /t /im cmdhost.exe
taskkill /f /t /im cmd.exe
:START_OVERWOLF
echo.
echo Starting overwolf now...
echo.
"C:\Program Files (x86)\Overwolf\OverwolfLauncher.exe"
:START_GAME
echo.
echo Starting game now...
echo.
REM start steam://checksysreqs/730
start steam://run/730
goto exit
:PAUSE
pause
:EXIT
exit
:REBOOT
shutdown /r /t 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment