10 lines
301 B
Batchfile
10 lines
301 B
Batchfile
pushd \pilotgames
|
|
NET STOP PilotGameAgent
|
|
echo %1 >> agent_version.log
|
|
del /Q game_agent\*
|
|
copy downloads\PilotGameAgentRelease-2026.6.2.1.zip game_agent\.
|
|
cd game_agent
|
|
PowerShell Expand-Archive -Force -Path "PilotGameAgentRelease-2026.6.2.1.zip" -DestinationPath "."
|
|
NET START PilotGameAgent
|
|
popd
|