I have a redirected printer port that use redmon (redirect port monitor) with a postscript printer driver to convert postscript to pdf and apply some other effects like watermarks, overlays, etc. In win 7 all work fine but in windows 10 the process run under system user account. In the configuration window of the printer port there is a flag called "Run as user" and in win7, checking this flag let the job running under the user account. In Windows 10 it seems not working. Any suggestion will be very appreciated. Thank you. Roy
in windows 10, redirect port monitor (redmon), run as user doesn't work
7.2k Views Asked by Roy At
1
There are 1 best solutions below
Related Questions in PDF
- Itext get special letters from pdf
- Carrierwave file upload with different file types
- Get text from a section of a pdf page with IcePdf
- itext pdf to image convert
- PDF to Text extractor in nodejs without OS dependencies
- PDF to ByteArray Conversion
- Opening PDF file in SWT Browser - XulRunner default viewer
- Generate TCPDF output to a shared drive folder
- Combine base and ggplot graphics in R figure window in different pages
- Updating a PDF Barcode Field in iOS and Android Device
- Prevent PDFsharp from saving an image file?
- Adding attachment links between lines in itext for pdf
- Crop Pdf from each edge using itextshap
- How to create a PDF with iText+XMLWorker from servlet using custom font?
- how to create a pdf editor for grails
Related Questions in PRINTING
- How to send ESC/POS commands to thermal printer in Linux
- JTable Printing. How to set page breaks programmatically?
- Why do print and echo behave differently in a "for" loop
- Is there a way to limit the html page to a particular page size?
- How to execute keybord shortcut CTRL + P by clicking a link using jquery
- Chrome print preview disable only link location in footer and header
- C program doesn't print
- how to print a receipt to a particular printer
- How to print Jasper reports from servlets?
- Is it possible to print web content on thermal printer?
- How to print the HTML in Java
- How to get a response of file printing job to user from printer using CUPS in linux
- Android PrintManager get callback
- Business card height and width in pixels on web?
- Microsoft Dynamics Ax 2012 R2 run time issue
Related Questions in WINDOWS-10
- How to set a app tile properties for a Universal Windows App
- How to debug missing dlls on Windows 10
- does not implement interface member IComponentConnector2
- Eventrigger routed event for AppBarButton?
- How to achieve AlarmApplicationManager AlarmAccessStatus as AllowedWithWakeupCapability?
- Different views with different code behinds but one binary in Windows 10
- Windows 10 xaml Controls Centre Screen
- Is .Net Native automatically enabled on a Windows Store App in Visual Studio 2015 on Windows 10?
- IE compatibility Changing is not working in Windows10 using meta tag
- Compiled Binding Two way
- Programmatic access to USSD from the Windows 10 Desktop
- Windows RT XAML Controls - GridWrap Column autosizing to window size
- Visual Studio Enterprise RC 2015: Windows 10.0.10069 SDK etc install errors
- WP10 TP Unable to get License Information 0xC03F7000
- SystemMediaTransportControl GetForCurrentView() fails in audio background task on Desktop Device Family (UWP C#
Related Questions in GHOSTSCRIPT
- GPL Ghostscript 9.10: ColorConversionStrategy is incompatible to ProcessColorModel
- Ghostscript - Wrong CMYK Color Conversion - 100% Yellow convert to 98% Yellow?
- Only convert files with the string "DUPLICATE" in the name
- Using GhostscriptProcessor to print a PDF file - Margins are messy
- Ghostscript rotate pdf page 180°
- ghostscript can just get images
- ColorConversionStrategy CMYK adds a white background
- How to fit PDF to a5 landscape using ghostscript?
- Convert PDF to PNG/JPG , using Wand, breaks in production via Gunicorn, fine on debug server
- Ghostscript convert PDF into large TIFF
- ghostscript how to retain pdf size while converting pdf to grayscale
- PostScript error with imagemask and raw data
- ghostscript stubbornly refuses to embed fonts
- How does Ghostscript handle vector objects that have no color
- Ghostscript: How to auto-crop STDIN to "bounding box" and write to PDF?
Related Questions in REDMON
- How to write STDOUT/STDIN via RedMon/cmd.exe to file?
- Send Print job from PuTTY to Zebra ZXP 3 SDK (non.zpl printer)
- Getting print data - Windows (Redmon)
- Redmon postscript output
- Is there a modern alternative to redmon redirected port?
- Redmon starts application as user SYSTEM instead of the current user
- Can't add new Redirected Port in Windows 7 after installing RedMon
- Where can I find resources on developing a PostScript printer for Windows 7
- windows 7 can't add printer redirected port
- Virtual printer : intercept data sent to printer using c#
- Printer Port configuration using redmon and ghostscript, error invalid window handle
- in windows 10, redirect port monitor (redmon), run as user doesn't work
- Running Redmon with a Service
- Intercept print data of DOS based printing
- pdf redirection to Windows Printer using Ghostscript
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I had a similar problem. I needed the user that printed the document to select the type of document and a patient ID. Then print the document to our EHR system as a PDF. Works in Windows 7 when "Run as User" is checked, but not on Windows 10. Redmon always runs the program as "SYSTEM". So I added a bit to the beginning of the program to check the user name. If it is "SYSTEM" the program looks for the an interactive user on the system by finding an instance of explorer.exe. If more than one interactive user is logged onto the system this will fail. Not a problem for my task. The program then starts another instance of itself running as the same user as explorer.exe, passing the same command line. A pipe is used so that stdin from the first instance can be piped to stdin on the second instance. Another limitation is that on a 64 bit OS, a 64 bit version of the program must be used. Otherwise explorer.exe may not be found.
The following code is what I placed at the beginning of my program. Don't be fooled by the program starting at main(). I am using a GUII toolkit that has WinMain() in it and then calls main(). I have only tested the code on ASCII programs. I tried to use the ASCII version of calls so that it would work with non-ASCII programs, but I am not sure I got all of them.
The LogInfoSys("Hello World"); function just writes to a log file.
Good luck.