Which command correctly sets the action to run a PowerShell script located at C:\Tools\cleanup.ps1 using schtasks?
Aschtasks /create /tn "CleanupTask" /tr "cleanup.ps1" /sc daily /st 22:00
Bschtasks /create /tn "CleanupTask" /tr "powershell.exe -File C:\Tools\cleanup.ps1" /sc daily /st 22:00
Cschtasks /create /tn "CleanupTask" /tr "powershell cleanup.ps1" /sc daily /st 22:00
Dschtasks /create /tn "CleanupTask" /tr "powershell.exe cleanup.ps1" /sc daily /st 22:00