mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-04-20 03:48:30 +00:00
452 B
452 B
title, description
| title | description |
|---|---|
| CTT PowerShell Profile - Install |
function Invoke-WinUtilInstallPSProfile {
if (Test-Path $Profile) {
Rename-Item $Profile -NewName ($Profile + '.bak')
}
Start-Process pwsh -ArgumentList '-Command "irm https://github.com/ChrisTitusTech/powershell-profile/raw/main/setup.ps1 | iex"'
}