Unable to intercept the print jobs with Print Support App and Microsoft IPP Driver
Pegasus Admin
0
Reputation points
Hi Team,
I'm building the PSA print support application using a sample PSA code provided by MS, I am not able to confirm whether the app is activated with PrintSupportSettingsUI
and WorkflowTask
could you please help me with this?
I followed below steps:
- Project Setup:
- Created a new UWP project in Visual Studio.
- Configuration of
Package.appxmanifest
:- Added print support extensions in the manifest:
<Extensions> <printsupport:Extension Category="windows.printSupportWorkflow" EntryPoint="Printer_Support_App/> <printsupport:Extension Category="windows.printSupportSettingsUI" EntryPoint="Printer_Support_App.SettingsPage"/> </Extensions>
- Added capabilities:
<Capabilities> <Capability Name="internetClient" /> <Capability Name="privateNetworkClientServer" /> <DeviceCapability Name="printers" /> </Capabilities>
- Added print support extensions in the manifest:
- Development of PSA Components:
- Created
SettingsPage.xaml.cs
andSettingsPageViewModel.cs
for managing settings. - Implemented
WorkflowTask.cs
to handle print workflow tasks with Logging.
- Created
- Driver Configuration:
- Configured the IPP printer driver in Windows settings. By selecting "Microsoft IPP Class Driver" from the driver list in printer properties.
- Firewall and Network Configuration:
- Ensured the PSA app was allowed through the firewall.
- Verified the printer was accessible over the network.
- Execution and Issue Observation:
- Deployed the application and initiated print jobs.
- Observed that the print jobs were processed, but the PSA did not intercept the jobs as expected.
Despite following these steps, the PSA is not intercepting the print jobs. Any guidance or solutions from the community would be greatly appreciated.
Sign in to answer