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

497 B

title, description
title description
Uninstall CTT PowerShell Profile
function Invoke-WinUtilUninstallPSProfile {
    if (Test-Path ($Profile + '.bak')) {
        Remove-Item $Profile
        Rename-Item ($Profile + '.bak') -NewName $Profile
    }
    else {
        Remove-Item $Profile
    }

    Write-Host "Successfully uninstalled CTT Powershell Profile" -ForegroundColor Green
}