mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-04-20 03:48:30 +00:00
497 B
497 B
title, description
| title | description |
|---|---|
| CTT PowerShell Profile - Remove |
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
}