Skip to content

Instantly share code, notes, and snippets.

@AdamMaras
Forked from NickCraver/GitHubTrendingWeekly.ps1
Last active June 26, 2016 16:02
Show Gist options
  • Save AdamMaras/99bf7a437b0843dd3cbb996f4ecea076 to your computer and use it in GitHub Desktop.
Save AdamMaras/99bf7a437b0843dd3cbb996f4ecea076 to your computer and use it in GitHub Desktop.
A weekly task that pops up https://github.com/trending in Chrome to find interesting OSS projects.
Register-ScheduledTask `
-Action (New-ScheduledTaskAction `
-Execute ((Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\chrome.exe")."(default)") `
-Argument 'https://github.com/trending') `
-Trigger (New-ScheduledTaskTrigger -Weekly -DaysOfWeek Monday -At 3am) `
-TaskName "GitHub Trending" `
-Description "Weekly check of GitHub trending repos."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment