PowerShell/Scripts/list-profiles.ps1

34 lines
1017 B
PowerShell
Raw Normal View History

2021-02-24 19:03:31 +01:00
#!/bin/powershell
<#
.SYNTAX ./list-profiles.ps1
.DESCRIPTION lists your PowerShell profiles
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
2021-02-24 19:44:05 +01:00
function ShowProfile { param([int]$Level, [string]$Name, [string]$Filename)
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 ""
}
2021-02-24 19:03:31 +01:00
2021-02-24 19:44:05 +01:00
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
2021-02-24 19:03:31 +01:00
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}