Uninstall CTT PowerShell Profile

functions/private/Invoke-WinUtilUninstallPSProfile.ps1
 1function Invoke-WinUtilUninstallPSProfile {
 2    if (Test-Path ($Profile + '.bak')) {
 3        Remove-Item $Profile
 4        Rename-Item ($Profile + '.bak') -NewName $Profile
 5    }
 6    else {
 7        Remove-Item $Profile
 8    }
 9
10    Write-Host "Successfully uninstalled CTT Powershell Profile" -ForegroundColor Green
11}