Skip to content

Instantly share code, notes, and snippets.

@dsolodow
Last active April 29, 2019 15:26
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 dsolodow/508b2c16b489fe7ec951 to your computer and use it in GitHub Desktop.
Save dsolodow/508b2c16b489fe7ec951 to your computer and use it in GitHub Desktop.
Description for New-UpdateHelpJob.ps1
<#
Creates a scheduled task to run a daily Update-Help on the local machine
#>
$trigger = New-JobTrigger -Weekly -At "7:30 AM" -DaysOfWeek "Monday"
$option = New-ScheduledJobOption -StartIfOnBattery -RequireNetwork -RunElevated
Register-ScheduledJob -Name UpdateHelp -ScriptBlock {Update-Help -Module * -Force} -Trigger $trigger -ScheduledJobOption $option
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment