mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-03 13:40:35 +02:00
Improve list-profiles.ps1
This commit is contained in:
parent
e8040b7717
commit
952b84d94d
@ -11,23 +11,26 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
function ShowProfile { param([string]$Level, [string]$Name, [string]$Filename)
|
function ListProfile { param([int]$Level, [string]$Profile, [string]$Location)
|
||||||
"$Level Profile '$Name'"
|
if (test-path "$Location") { $Existent = "yes" } else { $Existent = "no" }
|
||||||
if (test-path "$Filename") {
|
new-object PSObject -Property @{
|
||||||
" at $Filename"
|
'Level' = "$Level"
|
||||||
} else {
|
'Profile' = "$Profile"
|
||||||
" at $Filename (file missing)"
|
'Location' = "$Location"
|
||||||
|
'Existent' = "$Existent"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function ListProfiles {
|
||||||
|
ListProfile 1 "AllUsersAllHosts" $PROFILE.AllUsersAllHosts
|
||||||
|
ListProfile 2 "AllUsersCurrentHost" $PROFILE.AllUsersCurrentHost
|
||||||
|
ListProfile 3 "CurrentUserAllHosts" $PROFILE.CurrentUserAllHosts
|
||||||
|
ListProfile 4 "CurrentUserCurrentHost" $PROFILE.CurrentUserCurrentHost
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
ShowProfile "1" "AllUsersAllHosts" $PROFILE.AllUsersAllHosts
|
ListProfiles | format-table -property Level,Profile,Location,Existent
|
||||||
""
|
|
||||||
ShowProfile "2" "AllUsersCurrentHost" $PROFILE.AllUsersCurrentHost
|
|
||||||
""
|
|
||||||
ShowProfile "3" "CurrentUserAllHosts" $PROFILE.CurrentUserAllHosts
|
|
||||||
""
|
|
||||||
ShowProfile "4" "CurrentUserCurrentHost" $PROFILE.CurrentUserCurrentHost
|
|
||||||
exit 0
|
exit 0
|
||||||
} catch {
|
} catch {
|
||||||
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
Loading…
Reference in New Issue
Block a user