mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-02-04 15:00:09 +00:00
* Update Invoke-WinUtilUninstallPSProfile.ps1 * Update Invoke-WinUtilUninstallPSProfile.ps1 * Update Invoke-WinUtilUninstallPSProfile.ps1 * Update Invoke-WinUtilUninstallPSProfile.ps1
12 lines
315 B
PowerShell
12 lines
315 B
PowerShell
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
|
|
}
|