Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Space-Banane/3bf40d654cdcaf91f8f9e26ef0c87938 to your computer and use it in GitHub Desktop.

Select an option

Save Space-Banane/3bf40d654cdcaf91f8f9e26ef0c87938 to your computer and use it in GitHub Desktop.
Open and Close Banana Shooter 1k Times. For an achivement lol
$exePath = "C:\Program Files (x86)\Steam\steamapps\common\Banana Shooter\Banana Shooter.exe"
for ($i = 0; $i -lt 1000; $i++) {
$proc = Start-Process -FilePath $exePath -PassThru
Start-Sleep -Seconds (Get-Random -Minimum 8 -Maximum 12)
Stop-Process -Id $proc.Id -Force
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment