Functions/Startup.ps1
function Startup { $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 } |