Rename set-profile.ps1 to write-posershell-profile.ps1

This commit is contained in:
Markus Fleschutz 2023-12-26 11:57:02 +01:00
parent 8b642165c7
commit c89673f442
2 changed files with 29 additions and 31 deletions

View File

@ -1,31 +0,0 @@
<#
.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
}

View File

@ -0,0 +1,29 @@
<#
.SYNOPSIS
Writes the user's PowerShell profile
.DESCRIPTION
This PowerShell script writes the PowerShell profile for the current user.
.EXAMPLE
PS> ./write-powershell-profile.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
"⏳ (1/3) Querying path to PowerShell profile 'CurrentUserCurrentHost'..."
$pathToProfile = $PROFILE.CurrentUserCurrentHost
"⏳ (2/3) Creating the profile (if non-existent)..."
$null = New-Item -Path $pathToProfile -ItemType "file" -Force
"⏳ (3/3) Updating the profile by my-profile.ps1..."
Copy-Item "$PSScriptRoot/my-profile.ps1" "$pathToProfile" -force
"✔️ Updated your PowerShell profile - it gets active on next login"
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}