2024-11-06 16:46:56 -08:00
|
|
|
function Invoke-WinUtilInstallPSProfile {
|
|
|
|
|
|
2026-01-08 22:33:35 +02:00
|
|
|
if (Test-Path $Profile) {
|
|
|
|
|
Rename-Item $Profile -NewName ($Profile + '.bak')
|
2024-11-06 16:46:56 -08:00
|
|
|
}
|
2026-01-08 22:33:35 +02:00
|
|
|
|
|
|
|
|
Start-Process powershell -ArgumentList '-Command "irm https://github.com/ChrisTitusTech/powershell-profile/raw/main/setup.ps1 | iex"'
|
2024-11-07 19:14:46 +01:00
|
|
|
}
|