Advertisement
ZTTrak

AMTKStart

May 23rd, 2024 (edited)
649
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Write-Output "
  2. ███████ ████████ ████████ ██████   █████  ██   ██     ██████  ███████ ██    ██ ███████ ██       ██████  ██████  ███    ███ ███████ ███    ██ ████████
  3.   ███     ██       ██    ██   ██ ██   ██ ██  ██      ██   ██ ██      ██    ██ ██      ██      ██    ██ ██   ██ ████  ████ ██      ████   ██    ██    
  4.  ███      ██       ██    ██████  ███████ █████       ██   ██ █████   ██    ██ █████   ██      ██    ██ ██████  ██ ████ ██ █████   ██ ██  ██    ██    
  5. ███       ██       ██    ██   ██ ██   ██ ██  ██      ██   ██ ██       ██  ██  ██      ██      ██    ██ ██      ██  ██  ██ ██      ██  ██ ██    ██    
  6. ███████    ██       ██    ██   ██ ██   ██ ██   ██     ██████  ███████   ████   ███████ ███████  ██████  ██      ██      ██ ███████ ██   ████    ██    
  7.                                                                                                                                                      
  8.                                                                                                                                                      "
  9. Write-Host "Choose a verison of AmtrakWatcher:"
  10. Write-Host "1. Stable Release"
  11. Write-Host "2. Beta Release"
  12. $choice = Read-Host "Choice"
  13. switch ($choice) {
  14.     "1" {
  15.         Write-Output "Loading latest stable release..."
  16.         $scriptContent = Invoke-WebRequest -Uri "https://pastebin.com/raw/eDMxQLve" -UseBasicParsing | Select-Object -ExpandProperty Content
  17.         Invoke-Expression -Command $scriptContent
  18.         Clear-Host
  19.     }
  20.     "2" {
  21.         Write-Output "Loading latest beta release..."
  22.         $scriptContent = Invoke-WebRequest -Uri "https://pastebin.com/raw/FDYT7T7d" -UseBasicParsing | Select-Object -ExpandProperty Content
  23.         Invoke-Expression -Command $scriptContent
  24.         Clear-Host
  25.     }
  26.     Default {
  27.         Write-Host "Invalid choice. Please enter another choice"
  28.     }
  29.     "nuh uh" {
  30.         Write-Output "yuh uh"
  31.     }
  32. }
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement