mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-02-04 15:00:09 +00:00
9 lines
278 B
PowerShell
9 lines
278 B
PowerShell
function Invoke-WinUtilInstallPSProfile {
|
|
|
|
if (Test-Path $Profile) {
|
|
Rename-Item $Profile -NewName ($Profile + '.bak')
|
|
}
|
|
|
|
Start-Process powershell -ArgumentList '-Command "irm https://github.com/ChrisTitusTech/powershell-profile/raw/main/setup.ps1 | iex"'
|
|
}
|