Search

Index

Revindex Task Scheduler

Web Get (PowerShell)

Last updated on 2015-04-17 1 mins. to read

Here's a simple PowerShell script to query any web site. Just change the URL below to your own site.

$client = New-Object System.Net.WebClient
$html = $client.DownloadString("http://www.myurl.com/")

Comments


Powered by Revindex Wiki