> ## Documentation Index
> Fetch the complete documentation index at: https://docs.truu.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Windows Authenticator Uninstallation

> This is a step by step guide as to how one uninstalls the TruU Windows Authenticator.

### 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'
}
```

2. 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](/docs/package-and-deploy-truu-windows-authenticator-in-intune)

[Adjust the Installer Application.config file](/docs/adjust-the-installer-applicationconfig-file)
