Forum Discussion
JanO
Sep 10, 2025Copper Contributor
fslogix printing does not work after changing profile from UPM to fslogix
I use Manuel Winkel's script <www.deyda.net> to convert UPM profiles to FSLogix profiles. Which users then encounter the problem that they can no longer print? Deleting printers from the registry and...
Kidd_Ip
Sep 11, 2025MVP
Would suggest below:
1. Clean Printer Registry Keys More Thoroughly
Remove-Item -Path "HKCU:\Software\Microsoft\Windows NT\CurrentVersion\PrinterPorts" -Recurse -Force
Remove-Item -Path "HKCU:\Printers" -Recurse -Force
Run this as the affected user before FSLogix mounts the profile.
2. Reset Print Spooler Dependencies
Stop-Service spooler
Remove-Item -Path "C:\Windows\System32\spool\PRINTERS\*" -Force
Start-Service spooler
3. Use FSLogix Profile Exclusions
[Registry]
ExcludeRegistry=HKCU\Printers
ExcludeRegistry=HKCU\Software\Microsoft\Windows NT\CurrentVersion\PrinterPorts
4. Test with a Clean VHD(X)
If all else fails, create a fresh FSLogix profile and compare registry snapshots with the converted one.
JanO
Sep 11, 2025Copper Contributor
I found an error: when I go to the user's profile and set admin rights, printing works again. After that, it works forever. Does anyone have a solution for this? Which rights are not compatible?