Untitled

 avatar
unknown
plain_text
a year ago
384 B
93
Indexable
@echo off

title Frostpunk 2- Beta
mode con cols=130 lines=30
color 1A

setlocal
set SCRIPT_DIR=%~dp0
set PS_RUN=PowerShell -NoProfile -ExecutionPolicy Bypass -Command

pushd %SCRIPT_DIR%

if exist "%SCRIPT_DIR%AppxManifest.xml" (
    goto :INSTALL_Game
)

:INSTALL_Game
%PS_RUN% "Add-AppxPackage -register -path '%SCRIPT_DIR%AppxManifest.xml'"

:END
popd
pause
Editor is loading...
Leave a Comment