mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-04 14:30:42 +02:00
Improved list-profiles.ps1
This commit is contained in:
parent
daf53ac0c4
commit
a31375a523
@ -6,9 +6,26 @@
|
|||||||
.NOTES Author: Markus Fleschutz / License: CC0
|
.NOTES Author: Markus Fleschutz / License: CC0
|
||||||
#>
|
#>
|
||||||
|
|
||||||
try {
|
function ShowProfile { param([int]$Level, [string]$Name, [string]$Filename)
|
||||||
$PROFILE | select-object *
|
write-output "$($Level). '$($Name)'"
|
||||||
|
if (test-path "$Filename") {
|
||||||
|
write-output " at $($Filename) containing:"
|
||||||
|
$Content = get-content $Filename
|
||||||
|
write-output "$Content"
|
||||||
|
} else {
|
||||||
|
write-output " at $Filename (file non-existent)"
|
||||||
|
}
|
||||||
|
write-output ""
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
write-output ""
|
||||||
|
write-output "PowerShell Profiles"
|
||||||
|
write-output "-------------------"
|
||||||
|
ShowProfile 1 "AllUsersAllHosts" $PROFILE.AllUsersAllHosts
|
||||||
|
ShowProfile 2 "AllUsersCurrentHost" $PROFILE.AllUsersCurrentHost
|
||||||
|
ShowProfile 3 "CurrentUserAllHosts" $PROFILE.CurrentUserAllHosts
|
||||||
|
ShowProfile 4 "CurrentUserCurrentHost" $PROFILE.CurrentUserCurrentHost
|
||||||
exit 0
|
exit 0
|
||||||
} catch {
|
} catch {
|
||||||
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
Loading…
Reference in New Issue
Block a user