Skip to content

Instantly share code, notes, and snippets.

View AdamMaras's full-sized avatar

Adam Maras AdamMaras

  • Phoenix, Arizona, United States
View GitHub Profile
@AdamMaras
AdamMaras / GitHubTrendingWeekly.ps1
Last active June 26, 2016 16:02 — forked from NickCraver/GitHubTrendingWeekly.ps1
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."