4 lines
186 B
PowerShell
4 lines
186 B
PowerShell
# It all starts with a single line of powershell code.
|
|
$DateTime = Get-Date -UFormat "%Y%m%d%H%M%S"
|
|
New-Item -Name "Dummy$DateTime" -Path "C:\ITD\DummyFiles\"
|
|
Start-Sleep -Seconds 360 |