How To Unregister/Remove the Universal Print connector

Wajahat Baig 1 Reputation point
2021-06-08T15:22:20.227+00:00

I have been trying to remove the unused Universal Print Connectors with no success. Any suggestions.

103486-image.png

Please note: not that familiar with PowerShell

Windows Server Printing
Windows Server Printing
Windows Server: A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.Printing: Printer centralized deployment and management, scan and fax resources management, and document services
644 questions
Windows Server PowerShell
Windows Server PowerShell
Windows Server: A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.PowerShell: A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
5,396 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Karlie Weng 14,721 Reputation points Microsoft Vendor
    2021-06-09T02:27:47.79+00:00

    Hello @Wajahat Baig

    Did you follow all the steps mentioned in this article :How to remove a Universal Print connector.

    Removing a Connector:
    1.Unshare all the printers that use the connector from the Portal
    2.Unregister all the printers that use the connector, either from the Portal or from the server itself
    3.In an elevated PowerShell window, run:

    Install-Module UniversalPrintManagement  
    Connect-UPService  
    Get-UPConnector  
    Remove-UPConnector -ConnectorId   
    

    4.copying the output of Get-UPConnector to find out your connector ID to feed into Remove-UPConnector. Make sure the account you use to sign in has Printer Administrator or Global Administrator rights, and a license for Universal Print assigned to it.
    5.Restart the Print Connector Service to clear up any local data, and then uninstall the connector.

    Best Regards
    Karlie


    If the Answer is helpful, please click "Accept Answer" and upvote it.

    0 comments No comments

  2. Karlie Weng 14,721 Reputation points Microsoft Vendor
    2021-06-09T03:00:26.947+00:00

    Found similar error from github , you may post there and see.

    0 comments No comments