Skip to content

Instantly share code, notes, and snippets.

@tatupesonen
Last active May 22, 2020 17:01
Show Gist options
  • Save tatupesonen/24bb074eee9794a840e11044b6cbda3d to your computer and use it in GitHub Desktop.
Save tatupesonen/24bb074eee9794a840e11044b6cbda3d to your computer and use it in GitHub Desktop.
Remove Gallery and Story folders and start TEKKEN 7
::USAGE
::Make a start-tekken.bat file and paste the contents of this file inside of it.
::Replace the gamePath folder value with your TEKKEN 7 folder location.
::Example:
::set gamePath=C:\Program Files (x86)\Steam\steamapps\common\TEKKEN 7 for the default TEKKEN 7 install.
@echo off
set gamePath=C:\Program Files (x86)\Steam\steamapps\common\TEKKEN 7
IF EXIST "%gamePath%\TekkenGame\Content\Movies\Gallery" (
echo Removing Gallery folder...
RMDIR /Q /S "%gamePath%\TekkenGame\Content\Movies\Gallery"
) else (
echo Gallery folder doesn't exist.
)
IF EXIST "%gamePath%\TekkenGame\Content\Movies\Story" (
echo Removing Story folder...
RMDIR /Q /S "%gamePath%\TekkenGame\Content\Movies\Story"
) else (
echo Story folder doesn't exist.
)
::Start Tekken 7
echo Starting Tekken 7 on Steam
start steam://rungameid/389730
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment