Files
winutil/docs/content/dev/features/Powershell-Profile-Powershell-7--Only/InstallPSProfile.md
2026-04-17 09:04:35 -05:00

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"'
}