newpersn Posted July 3, 2024 Posted July 3, 2024 Hello I've have deployed Papercut out though Intune and its installed. Slight issue now where the client doesn't auto start. Print deploy is install and working fine. But not the client, Can start the client manual and works as expected. Any ideas? Thanks Newp
PaperCutterBrenda Posted July 5, 2024 Posted July 5, 2024 Hi there Newp, PaperCutter Brenda here. This is a known issue and we have it scheduled for a fix this month (July), so stay tuned! We're so sorry for the inconvenience. 1
Andy_Cap Posted October 16, 2024 Posted October 16, 2024 HI @PaperCutterBrenda - Has this been fixed?
aydee Posted April 1, 2025 Posted April 1, 2025 30 minutes ago, ITGuyNW said: Bringing this up as we are seeing this too. Yeah same here. Running the EXE remotely makes it work fine, but its not always starting on login. it seems to be random machines and random users.
RobFuller Posted April 1, 2025 Posted April 1, 2025 I use the following PowerShell install script with Intune. # Install PaperCut Client Start-Process msiexec.exe -ArgumentList '/i "win\pc-client-admin-deploy.msi" /qn' -Wait #Set to run for all users $registryPath = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" # Define the name of the registry value $valueName = "PaperCut Client" # Get the path to the Program Files directory $programFilesPath = [System.Environment]::GetFolderPath('ProgramFiles') # Define the path to the executable $exePath = "$programFilesPath\PaperCut MF Client\pc-client.exe" # Create the registry key if it doesn't exist if (-not (Test-Path $registryPath)) { New-Item -Path $registryPath -Force } # Set the registry value to run the executable Set-ItemProperty -Path $registryPath -Name $valueName -Value $exePath -Type String 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now