...
You receive an error message stating "Unable to select Printer "Printer Name" - Failed to access print parameters" or there are no Printers available in the dropdown list.
Solution
This error indicates that one of the printers on the machine has a problem printer driver or permissions issues that is preventing us access to all the printer information or that the system has no "default" printer or there is a problem with the Windows WMI system. The way the Revit Print API works is that we ask it what printers are available on the machine, then we set the printer appropriate as per the format settings. However, if any of the printers on the system give us an error, the Revit Print API enters an error state and even if you aren't using that Printer, they all will fail with that message. Only a restart of Revit will clear the error.
...
Warning |
---|
If this does not resolve the issue This can be a result of problem with the Windows' WMI system which is what Transmit uses to query the system for printer information. This can be resolved by working through the following article and recompiling the .mof files or running the command below. Unfortunately, this is quite a technical process and is best to have your IT team assist. |
Recompile MOF files for WMI errors
Run the following from an elevated command prompt:
Code Block |
---|
cd C:\Windows\System32\Wbem for /f %s in ('dir /b *.mof *.mfl') do mofcomp %s for %i in (*.dll) do regSvr32 -s %i net stop winmgmt /y net start winmgmt gpupdate /force |
Related articles
Page Properties | ||
---|---|---|
| ||
|
...