Jump to content

Recommended Posts

Posted

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

  • 3 months later...
  • 5 months later...
Posted
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.

Posted

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

 

  • Like 1

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 account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...