mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-09 01:25:04 +01:00
31 lines
824 B
PowerShell
Executable File
31 lines
824 B
PowerShell
Executable File
#!/usr/bin/pwsh
|
|
<#
|
|
.SYNTAX list-profiles.ps1
|
|
.DESCRIPTION lists your PowerShell profiles
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
|
#>
|
|
|
|
function ShowProfile { param([string]$Level, [string]$Name, [string]$Filename)
|
|
"$Level Profile '$Name'"
|
|
if (test-path "$Filename") {
|
|
" at $Filename"
|
|
} else {
|
|
" at $Filename (file missing)"
|
|
}
|
|
}
|
|
|
|
try {
|
|
ShowProfile "1" "AllUsersAllHosts" $PROFILE.AllUsersAllHosts
|
|
""
|
|
ShowProfile "2" "AllUsersCurrentHost" $PROFILE.AllUsersCurrentHost
|
|
""
|
|
ShowProfile "3" "CurrentUserAllHosts" $PROFILE.CurrentUserAllHosts
|
|
""
|
|
ShowProfile "4" "CurrentUserCurrentHost" $PROFILE.CurrentUserCurrentHost
|
|
exit 0
|
|
} catch {
|
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|