mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-06-04 14:17:27 +00:00
ec3166bdc6
* Update Invoke-WinUtilInstallPSProfile.ps1 * Update Invoke-WinUtilUninstallPSProfile.ps1 * Update Invoke-WinUtilInstallPSProfile.ps1 * Update Invoke-WinUtilUninstallPSProfile.ps1
11 lines
298 B
PowerShell
11 lines
298 B
PowerShell
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
|
|
}
|