document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. $ScriptBlock = {
  2.             Param ($lnk)
  3.              $progressOld = $ProgressPreference
  4.              $ProgressPreference=’SilentlyContinue’
  5.              $obj = new-object psobject -prop @{Name = $lnk; Status = (Invoke-WebRequest -Uri $lnk -DisableKeep).statuscode}
  6.              $ProgressPreference = $progressOld
  7.              $obj
  8.         }
');