7 lines
185 B
PowerShell
Executable File
7 lines
185 B
PowerShell
Executable File
$source = "https://uptime.cabinbagonly.co.uk/api/push/4jW4smdg8B?status=up"
|
|
$destination = "C:\crap.txt"
|
|
|
|
Invoke-WebRequest -Uri $source -OutFile $destination
|
|
|
|
Remove-Item $destination
|