PowerShell/Scripts/set-profile.ps1

21 lines
609 B
PowerShell
Raw Normal View History

2021-04-17 09:34:20 +02:00
#!/usr/bin/pwsh
2021-02-24 20:18:27 +01:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX set-profile.ps1
2021-03-22 20:10:18 +01:00
.DESCRIPTION sets the PowerShell profile for the current user
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2021-02-24 20:18:27 +01:00
#>
try {
$PathToProfile = $PROFILE.CurrentUserCurrentHost
$PathToRepo = "$PSScriptRoot/.."
copy-item "$PathToRepo/Scripts/my-profile.ps1" "$PathToProfile" -force
2021-04-19 09:04:17 +02:00
"✔️ updated PowerShell profile 'CurrentUserCurrentHost' by my-profile.ps1 - it gets active on next login"
2021-02-24 20:18:27 +01:00
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}