Install CTT PowerShell Profile
functions/private/Invoke-WinUtilInstallPSProfile.ps1
1function Invoke-WinUtilInstallPSProfile {
2
3 if (Test-Path $Profile) {
4 Rename-Item $Profile -NewName ($Profile + '.bak')
5 }
6
7 Start-Process pwsh -ArgumentList '-Command "irm https://github.com/ChrisTitusTech/powershell-profile/raw/main/setup.ps1 | iex"'
8}