Functions/Startup.ps1
function Startup { Set-Location "\" $CPL = Get-ChildItem C:\Windows\System32\*.cpl | Select-Object Name $MSC = Get-ChildItem C:\Windows\System32\*.msc | Select-Object Name $CPLplusMSC = $CPL + $MSC $CPLplusMSC | Format-Wide -Column 5 # Get-ChildItem "$([Environment]::GetFolderPath("MyDocuments"))\WindowsPowerShell\pwd" | Select-Object Name | Format-Wide -Column 4 Write-Output "----" # Get-WorkingTime Get-Alias | Where-Object Source -EQ "JaapsTools" | Select-Object -ExpandProperty DisplayName Write-Output "----`n`n" } |