This post is more than 5 years old
4 Posts
0
148467
August 6th, 2014 08:00
PNTools installl command line
Hi,
I am trying to install the pntools msi as an SCCM application. In out environment, we only want to install the core and the Universal Printer Driver. I have been searching for the documentation on how to achieve that, but have not found any so far. Can someone point me in the right direction?
TIA


umack
4 Posts
0
August 18th, 2014 03:00
Hi,
If you look at the feature list in the PNTools MSI, you see the following features:
USB_IT - USB virtual hub
MMR - WMP redirection
Required_Components - core
DNA - latency reduction (mandatory on WAN) - part of Required_Components
FMMR - Flash redirection
MM_GA - legacy graphics acceleration - part of Required_Components
Metaprofiles_IT - User Profile Management
PNShell - login actions - - part of Required_Components
Print_IT - Universal printer Driver
So to install the core plus UPS, you would need Required_Components and Print_IT
I'm pretty sure (but not 100% certain) that you would need the following:
MSIEXEC /i pntools.msi ADDLOCAL=Required_Components, Required_Print_IT /qn /forcerestart
regards,
Rick
TFelts
4 Posts
0
August 18th, 2014 08:00
Thanks for this. Got me going in the right direction. The command line that appears to be working is
MSIEXEC /i "pntools64.msi" ADDLOCAL="Required_Components,Print_IT" /norestart
A check of the Feature Table (using Orca) revealed that the UPD feature was labelled "Print_IT".
Thanks again.