Files
winutil/docs/content/dev/features/Powershell-Profile-Powershell-7--Only/InstallPSProfile.md
2026-02-23 18:28:56 -06:00

450 B

title, description
title description
Install CTT PowerShell Profile
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"'
}