Files
winutil/docs/content/dev/features/Powershell-Profile-Powershell-7--Only/UninstallPSProfile.md
T
2026-05-07 15:53:01 -05:00

479 B

title, description
title description
CTT PowerShell Profile - Remove
function Invoke-WinUtilUninstallPSProfile {

    if (Test-Path ($Profile + ".bak")) {
        Move-Item -Path ($Profile + ".bak") -Destination $Profile
    } else {
        Remove-Item -Path $Profile
    }

    Write-Host "Successfully uninstalled CTT PowerShell Profile." -ForegroundColor Green
}