update inbox list
This commit is contained in:
11
vendor/scrivo/highlight.php/test/detect/powershell/default.txt
vendored
Normal file
11
vendor/scrivo/highlight.php/test/detect/powershell/default.txt
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
$initialDate = [datetime]'2013/1/8'
|
||||
|
||||
$rollingDate = $initialDate
|
||||
|
||||
do {
|
||||
$client = New-Object System.Net.WebClient
|
||||
$results = $client.DownloadString("http://not.a.real.url")
|
||||
Write-Host "$rollingDate.ToShortDateString() - $results"
|
||||
$rollingDate = $rollingDate.AddDays(21)
|
||||
$username = [System.Environment]::UserName
|
||||
} until ($rollingDate -ge [datetime]'2013/12/31')
|
||||
Reference in New Issue
Block a user