Files
winutil/docs/content/dev/features/Powershell-Profile-Powershell-7--Only/UninstallPSProfile.md
T

19 lines
498 B
Markdown
Raw Normal View History

2026-02-23 18:28:56 -06:00
---
title: "Uninstall CTT PowerShell Profile"
description: ""
---
```powershell {filename="functions/private/Invoke-WinUtilUninstallPSProfile.ps1",linenos=inline,linenostart=1}
function Invoke-WinUtilUninstallPSProfile {
if (Test-Path ($Profile + '.bak')) {
Remove-Item $Profile
Rename-Item ($Profile + '.bak') -NewName $Profile
}
else {
Remove-Item $Profile
}
2026-03-26 15:26:48 -05:00
Write-Host "Successfully uninstalled CTT PowerShell Profile." -ForegroundColor Green
2026-02-23 18:28:56 -06:00
}
```