4 lines
168 B
PowerShell
4 lines
168 B
PowerShell
|
|
$url = "http://admin.kfcf.com/Account/Encourage?sss=nptech1234"
|
||
|
|
$request = [System.Net.WebRequest]::Create($url)
|
||
|
|
$response = $request.GetResponse()
|
||
|
|
$response.Close()
|