Improve list-profiles.ps1

This commit is contained in:
Markus Fleschutz 2021-08-30 14:52:10 +02:00
parent e8040b7717
commit 952b84d94d

View File

@ -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])"