Question

Papercut Deployment

  • 26 April 2024
  • 1 reply
  • 29 views

Badge

Has anyone had any success deploying the PaperCut Client via Automox? I have tried every angle I can think of and they all time out, or say it was successful but nothing was installed! From PC’s knowledge base it can be deployed via GPO or “ automated software deployment ”  I am just banging my head here lol


1 reply

Userlevel 5
Badge +1

I've not tried, but looks like they have an MSI installer that might help. https://www.papercut.com/help/manuals/ng-mf/clienttool/user-client-install-windows/

 

Give this a go and review the output in activity log. 

 

start-process msiexec -argumentlist "/i pc-client-admin-deploy.msi AUTORUN=1 /qn /norestart /l*v $env:SystemRoot\temp\pc-client-install.log" -wait
Get-Content $env:SystemRoot\temp\pc-client-install.log

 

If you use the EXE you might be able to get the log like this…

$log = Get-Childitem "$env:LOCALAPPDATA\Temp\Setup log*"
Get-Content$log.fullname

Refencing this for log file location https://www.papercut.com/help/manuals/ng-mf/common/install-win/

Reply