mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-04 14:30:42 +02:00
Added open-help.ps1
This commit is contained in:
parent
9695724b4d
commit
f5e3c66dc3
@ -5,13 +5,14 @@ if ($IsLinux) { $username = $(whoami) } else { $username = $env:USERNAME }
|
|||||||
$host.ui.RawUI.WindowTitle = "$username @ $(hostname)"
|
$host.ui.RawUI.WindowTitle = "$username @ $(hostname)"
|
||||||
|
|
||||||
# GREETING
|
# 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
|
# COMMAND PROMPT
|
||||||
function prompt { Write-Host "`n➤ " -noNewline -foregroundColor yellow; return " " }
|
function prompt { Write-Host "`n➤ " -noNewline -foregroundColor yellow; return " " }
|
||||||
|
|
||||||
# ALIAS NAMES
|
# ALIAS NAMES
|
||||||
del alias:pwd -force -errorAction SilentlyContinue
|
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 pwd -value list-workdir.ps1 # pwd = print working directory
|
||||||
set-alias -name ll -value get-childitem # ll = list folder (long format)
|
set-alias -name ll -value get-childitem # ll = list folder (long format)
|
||||||
del alias:ls -force -errorAction SilentlyContinue
|
del alias:ls -force -errorAction SilentlyContinue
|
||||||
|
14
scripts/open-help.ps1
Normal file
14
scripts/open-help.ps1
Normal file
@ -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
|
||||||
|
}
|
@ -9,7 +9,7 @@
|
|||||||
PS> ./update-powershell-profile.ps1
|
PS> ./update-powershell-profile.ps1
|
||||||
⏳ (1/2) Query path to PowerShell profile 'CurrentUserCurrentHost'...
|
⏳ (1/2) Query path to PowerShell profile 'CurrentUserCurrentHost'...
|
||||||
⏳ (2/2) Copy my-profile.ps1 to C:\Users\Markus\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1...
|
⏳ (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
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
@ -27,7 +27,7 @@ try {
|
|||||||
$null = New-Item -Path $pathToProfile -ItemType "file" -Force
|
$null = New-Item -Path $pathToProfile -ItemType "file" -Force
|
||||||
Copy-Item "$path" "$pathToProfile" -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
|
exit 0 # success
|
||||||
} catch {
|
} catch {
|
||||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
Loading…
Reference in New Issue
Block a user