2024-01-25 13:37:12 +01:00
|
|
|
Script: *write-powershell-profile.ps1*
|
|
|
|
========================
|
2024-01-03 12:11:22 +01:00
|
|
|
|
|
|
|
This PowerShell script writes the PowerShell profile for the current user.
|
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
```powershell
|
2024-03-27 17:36:59 +01:00
|
|
|
PS> ./write-powershell-profile.ps1 [[-path] <String>] [<CommonParameters>]
|
|
|
|
|
|
|
|
-path <String>
|
|
|
|
Specifies the path to the new profile ($PSScriptRoot/my-profile.ps1 by default)
|
|
|
|
|
|
|
|
Required? false
|
|
|
|
Position? 1
|
|
|
|
Default value "$PSScriptRoot/my-profile.ps1"
|
|
|
|
Accept pipeline input? false
|
|
|
|
Accept wildcard characters? false
|
2024-01-03 12:11:22 +01:00
|
|
|
|
|
|
|
[<CommonParameters>]
|
|
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
|
|
```
|
|
|
|
|
|
|
|
Example
|
|
|
|
-------
|
|
|
|
```powershell
|
|
|
|
PS> ./write-powershell-profile.ps1
|
2024-03-27 17:36:59 +01:00
|
|
|
⏳ (1/2) Querying path to profile 'CurrentUserCurrentHost'...
|
|
|
|
C:\Users\Markus\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1
|
|
|
|
⏳ (2/2) Copying file 'my-profile.ps1'...
|
|
|
|
✔️ New PowerShell profile written - it gets active on next login
|
2024-01-03 12:11:22 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
Notes
|
|
|
|
-----
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
|
|
|
Related Links
|
|
|
|
-------------
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
|
|
|
Script Content
|
|
|
|
--------------
|
|
|
|
```powershell
|
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
2024-03-27 17:36:59 +01:00
|
|
|
Writes the PowerShell profile
|
2024-01-03 12:11:22 +01:00
|
|
|
.DESCRIPTION
|
|
|
|
This PowerShell script writes the PowerShell profile for the current user.
|
2024-03-27 17:36:59 +01:00
|
|
|
.PARAMETER path
|
|
|
|
Specifies the path to the new profile ($PSScriptRoot/my-profile.ps1 by default)
|
2024-01-03 12:11:22 +01:00
|
|
|
.EXAMPLE
|
|
|
|
PS> ./write-powershell-profile.ps1
|
2024-03-27 17:36:59 +01:00
|
|
|
⏳ (1/2) Querying path to profile 'CurrentUserCurrentHost'...
|
|
|
|
C:\Users\Markus\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1
|
|
|
|
⏳ (2/2) Copying file 'my-profile.ps1'...
|
|
|
|
✔️ New PowerShell profile written - it gets active on next login
|
2024-01-03 12:11:22 +01:00
|
|
|
.LINK
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
#>
|
|
|
|
|
2024-03-27 17:36:59 +01:00
|
|
|
param([string]$path = "$PSScriptRoot/my-profile.ps1")
|
|
|
|
|
2024-01-03 12:11:22 +01:00
|
|
|
try {
|
2024-03-27 17:36:59 +01:00
|
|
|
"⏳ (1/2) Querying path to profile 'CurrentUserCurrentHost'..."
|
2024-01-03 12:11:22 +01:00
|
|
|
$pathToProfile = $PROFILE.CurrentUserCurrentHost
|
2024-03-27 17:36:59 +01:00
|
|
|
" $pathToProfile"
|
2024-01-03 12:11:22 +01:00
|
|
|
|
2024-03-27 17:36:59 +01:00
|
|
|
$filename = (Get-Item "$path").Name
|
|
|
|
"⏳ (2/2) Copying file '$filename'..."
|
2024-01-03 12:11:22 +01:00
|
|
|
$null = New-Item -Path $pathToProfile -ItemType "file" -Force
|
2024-03-27 17:36:59 +01:00
|
|
|
Copy-Item "$path" "$pathToProfile" -force
|
2024-01-03 12:11:22 +01:00
|
|
|
|
2024-03-27 17:36:59 +01:00
|
|
|
"✔️ New PowerShell profile written - it gets active on next login"
|
2024-01-03 12:11:22 +01:00
|
|
|
exit 0 # success
|
|
|
|
} catch {
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2024-03-27 17:36:59 +01:00
|
|
|
*(generated by convert-ps2md.ps1 using the comment-based help of write-powershell-profile.ps1 as of 03/27/2024 17:36:33)*
|