Skip to content

Instantly share code, notes, and snippets.

@imoutsatsos
Created May 4, 2023 16:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imoutsatsos/33f65fafb736a7579ad00afff653f7c4 to your computer and use it in GitHub Desktop.
Save imoutsatsos/33f65fafb736a7579ad00afff653f7c4 to your computer and use it in GitHub Desktop.
#Generated by ChatGPT
$taskName = "Cantaloupe Task"
$actionArgs = "-Dcantaloupe.config=cantaloupe.properties -Xmx2g -jar cantaloupe-5.0.5.war"
$action = New-ScheduledTaskAction -Execute "java.exe" -Argument $actionArgs
$trigger = New-ScheduledTaskTrigger -Daily -At "3:00am"
$settings = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -DontStopIfGoingOnBatteries
Register-ScheduledTask -TaskName $taskName -Action $action -Trigger $trigger -Settings $settings
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment