Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- REM Look for all files with the .appid extension in the current folder
- SETLOCAL ENABLEDELAYEDEXPANSION
- FOR /F "delims=" %%F IN ('dir /b *.appid') DO (
- REM Remove the .appid extension from the file name
- SET filename=%%~nF
- REM Write the name of the .appid file to steam_appid.txt
- echo !filename! > steam_appid.txt
- )
- REM Move the steam_appid.txt file to the steam_settings folder
- move steam_appid.txt steam_settings
- REM Exit the batch file
- ENDLOCAL
Advertisement
Add Comment
Please, Sign In to add comment