diff --git a/Scripts/on-desktop-login.ps1 b/Scripts/on-desktop-login.ps1 index 0a75d09e..3e8c0b17 100755 --- a/Scripts/on-desktop-login.ps1 +++ b/Scripts/on-desktop-login.ps1 @@ -2,7 +2,7 @@ .SYNOPSIS Executes tasks on desktop login .DESCRIPTION - This PowerShell script executes useful tasks on every desktop login by the user (e.g. open Web dashboards, list the news, fetch repos). + This PowerShell script executes some 'welcome' tasks on every user's desktop login. NOTE: For installation on Windows create and put a symbolic link to this script into the Autostart folder (usually at: C:\Users\\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup). .EXAMPLE PS> ./on-desktop-login.ps1 @@ -15,6 +15,11 @@ try { & "$PSScriptRoot/write-big.ps1" "Welcome back" " " + & "$PSScriptRoot/check-uptime.ps1" + & "$PSScriptRoot/check-firewall.ps1" + & "$PSScriptRoot/check-swap-space.ps1" + & "$PSScriptRoot/check-drives.ps1" + & "$PSScriptRoot/check-pending-reboot.ps1" & "$PSScriptRoot/open-dashboards.ps1" " " & "$PSScriptRoot/write-quote.ps1"