Update on-desktop-login.ps1

This commit is contained in:
Markus Fleschutz 2023-08-10 07:44:47 +02:00
parent 7055e9fef5
commit 94e7ea7669

View File

@ -1,8 +1,9 @@
<#
.SYNOPSIS
Executes tasks on desktop login
Executes scripts on desktop login
.DESCRIPTION
This PowerShell script executes tasks on every desktop login.
This PowerShell script executes welcome scripts on every desktop user login.
Just 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
@ -12,6 +13,8 @@
#>
try {
& "$PSScriptRoot/write-quote.ps1"
" "
& "$PSScriptRoot/open-dashboards.ps1"
& "$PSScriptRoot/list-news.ps1"
& "$PSScriptRoot/write-clock.ps1"