Skip to content

Instantly share code, notes, and snippets.

@epjuan21
Created May 30, 2024 13:40
Show Gist options
  • Save epjuan21/07cdaeae39ff41498890da5357628ae2 to your computer and use it in GitHub Desktop.
Save epjuan21/07cdaeae39ff41498890da5357628ae2 to your computer and use it in GitHub Desktop.
BackUpDbXenco12PM
$A=New-ScheduledTaskAction -Execute 'C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe' -Argument '-File D:\ScriptsPowerShellProgramados\BackUpDbXenco.ps1'
$T=New-ScheduledTaskTrigger -Daily -At 12:00pm
$U=New-ScheduledTaskPrincipal -UserId "HOSPITAL\Administrador" -LogonType ServiceAccount -RunLevel Highest
$S=New-Scheduledtasksettingsset
$D=New-ScheduledTask -Action $A -Principal $U -Trigger $T -Settings $S -Description "Copia de Seguridad Base de Datos BETANIA 12:00 PM"
Register-ScheduledTask BackUpXenco12PM -InputObject $D
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment