I don't know

This commit is contained in:
John Doty 2021-08-22 10:53:15 -07:00
parent 431fb18d89
commit 422b2d3320
3 changed files with 26 additions and 9 deletions

10
bin/axiom_verge.ps1 Normal file
View file

@ -0,0 +1,10 @@
$URL = "com.epicgames.launcher://apps/5e834b926aa547029903e0ae4f649a70%3Aa22fd963146146b1b0f6e0501be37693%3Ab1940ae77a284721957af7515b60308c?action=launch&silent=true"
Write-Output "Starting game..."
Start-Process $URL
Write-Output "Sleeping..."
sleep -seconds 30
Write-Output "Fetching process..."
$process = Get-Process $URL
Write-Output "Waiting for exit..."
$process.WaitForExit()