-
Notifications
You must be signed in to change notification settings - Fork 56
Quiet runs on user login
jiut edited this page Jun 29, 2024
·
8 revisions
So you want to check for new drivers every day? This tutorial will guide you on how to set it up.
- Open up Run
- Type
shell:startup - Download TNUC and save it somewhere
- Make a shortcut of the exe and save it in the startup folder (right-click on it and choose shortcut)
- Open the properties for the shortcut and add the
--quietargument - Choose running in minimized mode
Now TNUC will only notify you when an update is available
Creates a task that checks for updates silently when the current user logs in.
Assumes scoop is installed to default path $env:USERPROFILE\scoop e.g. C:\Users\xxx\scoop
$Action = New-ScheduledTaskAction -Execute "$env:USERPROFILE\scoop\apps\tinynvidiaupdatechecker\current\TinyNvidiaUpdateChecker.exe" -Argument "--quiet"
$Trigger = New-ScheduledTaskTrigger -AtLogOn -User "$env:username"
$Settings = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -DontStopIfGoingOnBatteries -StartWhenAvailable -RunOnlyIfNetworkAvailable -Priority 7
Register-ScheduledTask -Action $Action -Trigger $Trigger -TaskName "TinyNvidiaUpdateChecker" -Description "Check Nvidia driver updates quietly" -Settings $Settings