Compare commits

..

2 Commits

Author SHA1 Message Date
Cryostrixx
9f45d91249
Merge 8b3583e61d into 6e708bfe95 2024-11-11 01:41:39 +00:00
Cryostrixx
8b3583e61d
Readd $PSProfile.hash file removal to Invoke-WinUtilUninstallPSProfile.ps1 2024-11-10 17:32:30 -08:00

View File

@ -175,6 +175,9 @@ function Invoke-WinUtilUninstallPSProfile {
# Silently cleanup the oldprofile.ps1 file that was created when the CTT PowerShell profile was installed.
Remove-Item "$env:USERPROFILE\oldprofile.ps1" | Out-Null
# Silently cleanup the $PSProfile.hash file that was created when the CTT PowerShell profile was installed.
Remove-Item "$PSProfile.hash" | Out-Null
} else {
# Let the user know that the CTT PowerShell profile is not installed and that the uninstallation was skipped.
Write-Host "===> Chris Titus Tech's PowerShell Profile Not Found. Skipped Uninstallation. <===" -ForegroundColor Magenta