2024-11-08 12:38:20 +01:00
|
|
|
The *list-powershell-profiles.ps1* Script
|
|
|
|
===========================
|
2024-03-27 17:36:59 +01:00
|
|
|
|
|
|
|
list-powershell-profiles.ps1
|
|
|
|
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
```powershell
|
|
|
|
|
|
|
|
|
|
|
|
[<CommonParameters>]
|
|
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
|
|
```
|
|
|
|
|
|
|
|
Script Content
|
|
|
|
--------------
|
|
|
|
```powershell
|
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
|
|
Lists the PowerShell profiles
|
|
|
|
.DESCRIPTION
|
|
|
|
This PowerShell script lists the user's PowerShell profiles.
|
|
|
|
.EXAMPLE
|
|
|
|
PS> ./list-powershell-profiles.ps1
|
|
|
|
|
|
|
|
Prio Profile Name Location Existent
|
|
|
|
---- ------------ -------- --------
|
|
|
|
1 AllUsersAllHosts /opt/PowerShell/profile.ps1 no
|
|
|
|
2 AllUsersCurrentHost /opt/PowerShell/Microsoft.PowerShell_profile.ps1 no
|
|
|
|
3 CurrentUserAllHosts /home/markus/.config/powershell/profile.ps1 no
|
|
|
|
4 CurrentUserCurrentHost /home/markus/.config/powershell/Microsoft.PowerShell_profile.ps1 yes
|
|
|
|
.LINK
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
#>
|
|
|
|
|
|
|
|
function ListProfile { param([int]$prio, [string]$profileName, [string]$Location)
|
|
|
|
if (Test-Path "$Location") { $Exists = "yes" } else { $Exists = "no" }
|
|
|
|
New-Object PSObject -Property @{ 'Prio'="$prio"; 'Profile Name'="$profileName"; 'Location'="$Location"; 'Exists'="$Exists" }
|
|
|
|
}
|
|
|
|
|
|
|
|
function ListProfiles {
|
|
|
|
ListProfile 1 "AllUsersAllHosts" $PROFILE.AllUsersAllHosts
|
|
|
|
ListProfile 2 "AllUsersCurrentHost" $PROFILE.AllUsersCurrentHost
|
|
|
|
ListProfile 3 "CurrentUserAllHosts" $PROFILE.CurrentUserAllHosts
|
|
|
|
ListProfile 4 "CurrentUserCurrentHost" $PROFILE.CurrentUserCurrentHost
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
ListProfiles | Format-Table -property Prio,'Profile Name',Exists,Location
|
|
|
|
exit 0 # success
|
|
|
|
} catch {
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2024-11-20 11:52:20 +01:00
|
|
|
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:51:56)*
|