Getting Started with DeskDirector
DeskDirector Portals
Browser Support
What is the DeskDirector Admin Portal?
What is the DeskDirector TECH Portal?
What is the DeskDirector Client Portal?
Desktop Portal
Managing Your Account
Pricing & Subscription Plans
Deskdirector - Sign up walk through
Managing your DeskDirector Subscription
Admin Essentials
Release Notes
Enabling Master Admin
Permissions & Feature Configuration (Tokity)
Permissions & Feature Configuration (ConnectWise/Autotask Partners)
Automatic Contact Creation
The Developer Corner
Monitoring Portal Usage
DeskDirector Features Overview
Desktop Portal Version Differences
Logging in to DeskDirector
User Profiles & Profile Pictures
Office Hours
Using Markdown
How Searching Works
Embedding Help Page Media
Get started with the DeskDirector Power Automate Connector
Features
Portal Customization
Service Catalogue
Forms
Getting started with DeskDirector Forms
DeskDirector Forms - Question Types in Detail
Dynamic Form Content
Communication
Actionable Messages for Emails
Real-Time Chats
Notifications
Email Notifications
Email Template Engine
Surveys
Broadcasts
Generative AI
DeskDirector with Generative AI
Setting up AI Service Providers
AI Assistants in DeskDirector
Custom Tools for AI Assistants
Knowledge Bases for AI Assistants
Ticket Summary for Tech Portal
Advanced
Login & Authentication
Contact & User Groups
Approvals
Task Lists
The Learning Center
Group Tags
Custom Domains
File Storage
Portal Deep Linking
Clean Tickets
Contacts
Accounts
Service Dashboard
Auditing and Analytics
Integrations
ConnectWise
ConnectWise Custom Menu Item for DeskDirector
ConnectWise
ConnectWise Quotes & Invoices
ConnectBooster
ConnectWise Sell
ConnectWise - Avoid Aggressive Notifications
AutoTask
Switching or Merging PSAs
QuoteWerks
Wise-Pay
TimeZest
BiggerBrains
OneNote Notebooks
Integrations - Frequently Asked Questions
IT Glue
Microsoft Teams App
Introducing the DeskDirector for Microsoft Team App
Installing the Microsoft Teams App (Client Mode)
Installing the Microsoft Teams App (Tech Mode)
Setting up Tags for Teams Discussions (Tech)
Branding the DeskDirector Teams App
DeskDirector Teams App Notifications
User Groups Integration with Microsoft Teams
Setting up Content Security Policy (CSP)
Advanced topic: Setting up Tech & Client Mode in the same tenancy
Integrating Microsoft Teams with DeskDirector Tech Portal
Smart Alerts for Tech Users
Microsoft Power Automate
Actions
Solutions
Power Automate Template Gallery
Featured Solution: Teams Ticket Discussion
Featured Solution: Ticket Briefing
Introduction to Power Automate
Power Automate Connector - Setting up your first flow
DeskDirector Power Platform Connector Reference
DeskDirector Connector Triggers
Troubleshooting
Troubleshooting via Web Developer Tools
Desktop Portal - Common Issues
Contact & Service Agent Impersonation
Diagnose Entities Tool
DeskDirector Desktop App - Installation Issues
Troubleshooting DeskDirector Connection Issues
Login & Authentication - Common Issues
Permissions & Access - Common Issues
Tickets & Chats - Common Issues
Approvals - Common Issues
Email & Email Delivery - Common Issues
PSA Entity Syncing - Common Issues
PSA Integration - Common Issues
ConnectWise Integration - Common Issues
Autotask Integration - Common Issues
ConnectWise Audit Trail - Exporting API Logs
Microsoft Teams App - Common Issues
Contact DeskDirector Support
Security
Glossary
Archived
- All Categories
- Archived
- Uninstalling the Legacy Windows Portals
Uninstalling the Legacy Windows Portals
Updated
by Andy Chen
Legacy DDPortal Removal Tool
The DDPortal removal tool helps cleanly uninstall DD Portal, making sure you have a fresh environment before installing the latest version.
The versions the removal tool uninstalls include:
- WPF clients
- Desktop Portal v2 (Hybrid + Squirrel and terminal version)
- Desktop Portal v3/v4

DDPortal Removal Tool Basic Usage Guide
- Download the CLI tool from here.
- Run the tool with your RMM tool.
Important Notes:
- Administrative privileges are required. This is because the tool removes all machine-wide installed portals.
- Quiet mode. Add the /quiet parameter to enable quiet mode, this means uninstalling without user confirmation.
- Logger. Logs are created in the folder logs under the working directory. Your RMM tool might also capture the console output logs.
Example 1
Run the following command to remove all installed portals.
DdUninstaller /quiet
Example 2
Remove all old version but keep the latest v3 version portal and the user settings folder.
DdUninstaller /quiet /keepUserSettings /keepLatestV3Version
Optional parameters
/quiet | Enable quiet mode, uninstalling without user confirmation. Usage example: |
/keepLatestVersion | Keep the latest portal, best to use it with together with /keepUserSettings Use this parameter if you want to keep the latest version and remove other older versions. |
/keepUserSettings | Keep files under user folders These folders contain files for logs and session cookies, etc. Usage example: |
/nologging | Turn off logging. Logs are created in the folder logs under the working directory. |
/remove:"Your app name" | Specify an additional app to be removed. Only use this when the tool fails to find your installed portals. See below How to remove registry remnants. |
/removeFile:"path-to-the-file" | Specify an additional file to be removed. |
/removeFolder:"path-to-the-folder" | Specify an additional folder to be removed. Warning: all content within the folder will be removed. |
Advanced Usage
How to remove registry remnants
You may find that after an app has been uninstalled, the app is removed from the Windows system's "Add or remove programs" list but it still exists in your RMM tool. This is because the Windows system still keeps a record for this app. The record is kept in case you reinstall the app. In this case, you can use the following guide to completely remove it from the machine.
- Identify the app(s) to be removed.
The name of the portal should look like * Machine-Wide Installer in the RMM tool, e.g. My Awesome Portal Machine-Wide Installer. This is the remains of the previous version (v2).
- Remove the registry key with the /remove parameter.
For example, specify Brand 1 Machine-Wide Installer and Brand 2 Machine-Wide Installer to be cleaned up with the /remove parameter.
DdUninstaller /quiet /keepUserSettings /keepLatestV3Version /remove:"Brand 1 Machine-Wide Installer" /remove:"Brand 2 Machine-Wide Installer"
How to manually specify the files/folders to be removed
If the uninstaller is not able to automatically recognize the shortcuts and folders created by a branded portal, you can manually specify them to be removed.
Use
- /removeFile to specify a file. e.g. /removeFile:"%Desktop%\Folder 2\portal 2.lnk"
- /removeFolder to specify a folder. e.g. /removeFolder:"%startup%\Folder 3"
Notes
- Multiple files and/or folders can be specified.
- All content within the folder will be removed.
- Make sure to put the path parameter inside quotes.
- The path parameter can be
- absolute, e.g. C:\\Users\userx\Desktop\shortcut.lnk
- or with a leading variable, e.g. %startup%\Folder 3.
- When use variables, the specified files/folders found under any of users on a machine will be removed.
Below is a list of the supported variables.
Variable | Example |
%Desktop% | C:\Users\user1\Desktop |
%StartMenu% | C:\Users\user1\AppData\Roaming\Microsoft\Windows\Start Menu |
%Startup% | C:\Users\user1\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\\Startup |
%UserProfile% | C:\Users\user1 |
%AppData% | C:\Users\user1\AppData\Roaming |
%LocalAppData% | C:\Users\user1\AppData\Local |
Release Notes
v1.0.1
- Added support for uninstalling v4 portals
- Changed parameter name from /keepLatestV3Version to /keepLatestVersion
v1.0.0.13
- Removed Anno setups with /VERYSELENT parameter (not UI popups)
v1.0.0.12
- Improved discover user profiles
v1.0.0.11
- Implemented removing extra files/folders
v1.0.0.10
- Improved discovering user profiles and branded app folders