Advertisement
Guest User

Untitled

a guest
Apr 28th, 2025
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PowerShell 0.28 KB | Software | 0 0
  1. $Url = "https://s3.eu-west-1.amazonaws.com/testreach.apps/testreach-desktop-app/TestReachAppSetup.exe"
  2. $Destination = Join-Path $env:TEMP "TestReachAppSetup.exe"
  3.  
  4. Invoke-WebRequest -Uri $Url -Outfile $Destination
  5.  
  6. Start-Process -Filepath $Destination -ArgumentList "/silent" -Wait
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement