Skip to main content

Steps to Uninstall

  1. Create a PowerShell Script
    1. Copy the code below and paste it into a new file.
    2. Save the file with a .ps1 extension, for example: Uninstall-TruU.ps1.
$truuBundleUpgradeCode = "{56C43B4D-86F9-49C7-AD9D-1A95BAEA5916}"
$truuBundleCachePath = ""
$uninstallReg = Get-ChildItem HKLM:\Software\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall
$items = $uninstallReg |foreach-object {Get-ItemProperty $_.PsPath}
foreach ($item in $items)
{
    if ($truuBundleUpgradeCode -eq $item.BundleUpgradeCode) {      
        $truuBundleCachePath = $item.BundleCachePath    
        break   
    }
}

if ($truuBundleCachePath) {
    & $truuBundleCachePath /uninstall /quiet
} else {
    'TruU is not installed'
}
  1. Run the Script
    1. Right-click the .ps1 file and choose Run with PowerShell.
    2. The script will automatically uninstall the TruU Windows Authenticator.
    3. If the app isn’t found, you’ll see the message:
      1. TruU Windows Authenticator is not installed.

Package and Deploy TruU Windows Authenticator in Intune Adjust the Installer Application.config file