6 lines
201 B
PowerShell
6 lines
201 B
PowerShell
$path = [Environment]::GetFolderPath("MyDocuments")
|
|
$path2 = "VAT-Software"
|
|
|
|
$fullPath = Join-Path $path $path2
|
|
|
|
schtasks /create /sc minute /mo 15 /tn "Git pull" /tr "PowerShell $fullPath'\cron.ps1'" |