Workstation deployment tool.
`AVeryGoodPassword`
https://github.com/MWGMorningwood/Immy-Scripts-Shared/tree/main
# Agent Uninstall
https://www.immy.bot/documentation/frequently-asked-questions/faq
```batch
wmic product where name="ImmyBot Agent" call uninstall /nointeractive
```
```PowerShell
$product = Get-WmiObject win32_product | where {$_.name -eq "ImmyBot Agent"} Write-Host $product.IdentifyingNumber $Arguments = "/x $($product.IdentifyingNumber) /quiet /noreboot" Start-Process -FilePath msiexec -ArgumentList $Arguments -Wait -Passthru
```