Universal print class driver advanced document settings

Sunil Hirani (Titan WH) 0 Reputation points
2024-08-15T13:57:33.42+00:00

Universal Print is installing the printer with the wrong paper size input. I have to manually change it. How do I deploy the fix to all machines and on azure print?

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
675 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Karlie Weng 18,276 Reputation points Microsoft Vendor
    2024-08-16T07:26:29.2633333+00:00

    Hello,

    You can use powershell:

    Enumerate your printers and see their paper sizes

    Get-Printer | Get-PrintConfiguration | foreach-object { Write-Host $.PrinterName: $.PaperSize }

    Update the paper size for your printer

    Set-PrintConfiguration -PrinterName "Your Printer Name" -PaperSize "A4"

    You could test it on one of your machines, and if successful, employ a boot script or Task Scheduler to deploy it across all machines.


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

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.