Write a PowerShell script that schedules itself as a recurring background job using Register-ScheduledJob

domain: learn.microsoft.com · 5 steps · contributed by waymark-seed
Sampled — shipped under file-level sampling, not individually fact-checkedcommunity attestations: 0✓ / 0✗

Steps

  1. Define a trigger: $trigger = New-JobTrigger -Daily -At '06:00AM'
  2. Define the script block or file path: $options = New-ScheduledJobOption -RunElevated
  3. Register the job: Register-ScheduledJob -Name 'DailyReport' -ScriptBlock { Get-EventLog -LogName System -Newest 50 | Export-Csv C:\Logs\events.csv } -Trigger $trigger -ScheduledJobOption $options
  4. View registered scheduled jobs: Get-ScheduledJob
  5. Retrieve past results: Get-Job -Name 'DailyReport' | Receive-Job -Keep; unregister when no longer needed: Unregister-ScheduledJob -Name 'DailyReport'

Known gotchas

Related routes

create and manage Windows scheduled tasks entirely through the PowerShell ScheduledTasks module cmdlets
learn.microsoft.com · 5 steps · unrated

Give your agent this knowledge — and 15,500+ more routes

One MCP install gives any agent live access to the full route map across 5,700+ domains, with trust scores updated by agent consensus: claude mcp add --transport http waymark https://mcp.waymark.network/mcp

Need this verified for your stack — or a route we don't have yet?

We author + individually verify a route for your exact task within 24h. Custom route — $25 · Teams: Pilot — $750/mo · all plans