mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-22 16:03:22 +01:00
68 lines
1.6 KiB
Markdown
68 lines
1.6 KiB
Markdown
*set-profile.ps1*
|
|
================
|
|
|
|
This PowerShell script sets the PowerShell profile for the current user.
|
|
|
|
Parameters
|
|
----------
|
|
```powershell
|
|
PS> ./set-profile.ps1 [<CommonParameters>]
|
|
|
|
[<CommonParameters>]
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
```
|
|
|
|
Example
|
|
-------
|
|
```powershell
|
|
PS> ./set-profile
|
|
|
|
```
|
|
|
|
Notes
|
|
-----
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
Related Links
|
|
-------------
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
Script Content
|
|
--------------
|
|
```powershell
|
|
<#
|
|
.SYNOPSIS
|
|
Sets the user's PowerShell profile
|
|
.DESCRIPTION
|
|
This PowerShell script sets the PowerShell profile for the current user.
|
|
.EXAMPLE
|
|
PS> ./set-profile
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
try {
|
|
"⏳ (1/3) Querying path to PowerShell profile 'CurrentUserCurrentHost'..."
|
|
$PathToProfile = $PROFILE.CurrentUserCurrentHost
|
|
"$PathToProfile"
|
|
|
|
"⏳ (2/3) Creating the profile (if non-existent)..."
|
|
$Null = New-Item -Path $profile -ItemType "file" -Force
|
|
|
|
"⏳ (3/3) Copying my-profile.ps1..."
|
|
$PathToRepo = "$PSScriptRoot/.."
|
|
Copy-Item "$PathToRepo/scripts/my-profile.ps1" "$PathToProfile" -force
|
|
|
|
"✔️ updated your PowerShell profile by my-profile.ps1 - it gets active on next login"
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|
|
```
|
|
|
|
*(generated by convert-ps2md.ps1 using the comment-based help of set-profile.ps1 as of 12/16/2023 10:12:25)*
|