diff --git a/scripts/my-profile.ps1 b/scripts/my-profile.ps1 index f64075da..4f6fd536 100755 --- a/scripts/my-profile.ps1 +++ b/scripts/my-profile.ps1 @@ -5,13 +5,14 @@ if ($IsLinux) { $username = $(whoami) } else { $username = $env:USERNAME } $host.ui.RawUI.WindowTitle = "$username @ $(hostname)" # GREETING -Write-Host "šŸ‘‹ Welcome $username to PowerShell at $(hostname)." -foregroundColor green +Write-Host "šŸ‘‹ Welcome $username to $(hostname)'s PowerShell - type 'hlp' for help." -foregroundColor green # COMMAND PROMPT function prompt { Write-Host "`nāž¤ " -noNewline -foregroundColor yellow; return " " } # ALIAS NAMES del alias:pwd -force -errorAction SilentlyContinue +set-alias -name hlp -value open-help.ps1 set-alias -name pwd -value list-workdir.ps1 # pwd = print working directory set-alias -name ll -value get-childitem # ll = list folder (long format) del alias:ls -force -errorAction SilentlyContinue diff --git a/scripts/open-help.ps1 b/scripts/open-help.ps1 new file mode 100644 index 00000000..c3519cbb --- /dev/null +++ b/scripts/open-help.ps1 @@ -0,0 +1,14 @@ + +try { + & "$PSScriptRoot/open-default-browser.ps1" "https://docs.microsoft.com/en-us/powershell" + Start-Sleep -milliseconds 100 + & "$PSScriptRoot/open-default-browser.ps1" "https://github.com/fleschutz/PowerShell/blob/main/docs/FAQ.md" + Start-Sleep -milliseconds 100 + & "$PSScriptRoot/open-default-browser.ps1" "https://github.com/fleschutz/PowerShell/blob/main/docs/cheat-sheet.md" + + & "$PSScriptRoot/write-typewriter.ps1" "DON'T PANIC and check your brower tabs..." + exit 0 # success +} catch { + "āš ļø Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" + exit 1 +} \ No newline at end of file diff --git a/scripts/update-powershell-profile.ps1 b/scripts/update-powershell-profile.ps1 index 5f721905..0d1a5a8f 100755 --- a/scripts/update-powershell-profile.ps1 +++ b/scripts/update-powershell-profile.ps1 @@ -9,7 +9,7 @@ PS> ./update-powershell-profile.ps1 ā³ (1/2) Query path to PowerShell profile 'CurrentUserCurrentHost'... ā³ (2/2) Copy my-profile.ps1 to C:\Users\Markus\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1... - āœ”ļø Updated your PowerShell profile - it get's active on next login. + āœ”ļø PowerShell profile updated - it get's active on next login. .LINK https://github.com/fleschutz/PowerShell .NOTES @@ -27,7 +27,7 @@ try { $null = New-Item -Path $pathToProfile -ItemType "file" -Force Copy-Item "$path" "$pathToProfile" -force - "āœ”ļø Updated your PowerShell profile - it get's active on next login." + "āœ”ļø PowerShell profile updated - it get's active on next login." exit 0 # success } catch { "āš ļø Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"