PowerShell/scripts/on-desktop-login.ps1
2024-04-18 14:56:44 +02:00

42 lines
1.2 KiB
PowerShell
Executable File

<#
.SYNOPSIS
Executes tasks on every desktop login
.DESCRIPTION
This PowerShell script executes some 'welcome' tasks on every desktop login by the user.
NOTE: For installation on Windows create and put a symbolic link to this script into the Autostart folder (usually at: C:\Users\<USERNAME>\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup).
.EXAMPLE
PS> ./on-desktop-login.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
& "$PSScriptRoot/write-big.ps1" "Welcome back"
" "
& "$PSScriptRoot/check-uptime.ps1"
& "$PSScriptRoot/check-pending-reboot.ps1"
& "$PSScriptRoot/check-firewall.ps1"
& "$PSScriptRoot/check-smart-devices.ps1"
& "$PSScriptRoot/check-swap-space.ps1"
& "$PSScriptRoot/check-drives.ps1"
& "$PSScriptRoot/open-dashboards.ps1"
" "
& "$PSScriptRoot/write-quote.ps1"
" "
& "$PSScriptRoot/list-news.ps1"
" "
& "$PSScriptRoot/write-joke.ps1"
" "
& "$PSScriptRoot/cd-repos.ps1"
& "$PSScriptRoot/fetch-repos.ps1"
" "
& "$PSScriptRoot/play-big-ben.ps1"
& "$PSScriptRoot/write-clock.ps1"
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}