형님들 기본적으로
C:\Program Files (x86)\Steam\steamapps\common 은 스팀에서 삭제하면 싹다 폴더까지 깔끔하게 날라가는데
appdata쪽은 날라가지가 않네 레지스트리도 그렇고 이건 스팀자체에서 어떻게 구성을 못하는건가?
installscript.vdf 파일을 실행파일과 같은위치에 두고
"InstallScript"
{
"Run Process On Uninstall"
{
"ProcessName" "cmd.exe"
"Arguments" "/C rmdir /S /Q \"%LOCALAPPDATA%\\내게임\" & reg delete \"HKEY_CURRENT_USER\\Software\\내게임\" /f"
"NoWait" "1"
}
}
이런식으로 해봤는데 소용이 없네
뭐가 잘못된건지 경험많은형님들 도와줘
appdata를 굳이 지워야될 이유가 있나? appdata 폴더는 윈도우 관장이라 니 맘대로 못 함
vdf 는 스팀에 업로드 하는거지 단순히 유저한테 ship 시켜서 작동시키는게 아닐걸; 그렇게 작동하면 악성코드지
First, the install script file must be part of a depot that is installed with the build. Ensure that the file resides within the defined ContentRoot of the App or Depot. Second, mark an install script using the InstallScript directive in a depot build script. You can see an example on the Uploading to Steam - Advanced Build Scripts page.