Printer Job Name

Hi
I am trying to change a pcl file so that the printer job name is altered, i can see from the .ics driver file that you can set this to the mdf name and static text only. Has anybody ever had to make a change like this?
I have the steps in place but the result is not what i expected, i use a perl script and a copy function to send the pcl file to the printer with the new printer job name included.
The thinking behind this is so that I can see my text on the print spooler and on the physical device, but it is turning out to be a night mare!
Any help would be appreciated.
Thanks

The problem i can see now is that I am trying to replicate the step when the .tmp file which is also the same as the PCL file is processed from the collector directory.
When it is, it uses the value from the ics file \E%-12345X@PJL\x20RDYMSG\x20DISPLAY="default" the default is the mdf name which is static.
I use a Perl script and have a copy function to move the changed PCL file to the Printer spool queue, but the job name is now 'Remote DownLevel Document' in stead of the value in the PCL file.
Any body any idea as how to fix this?
Thanks

Similar Messages

  • How to set  the CR print job name that displayed in Printer job queue?

    As following image shows, when I press the Print button in Crystal Report Preview GUI,
    a print job is sent to Windows Printer Spool.
    [Windows Printer queue dialog snapshot|http://www.box.net/shared/96vq4qa2mp]
    The "Document Name" in the dialog is like "Crystal Reports - temp_214d9d11-a73f-4872-81f6-b8a63bf0a6b9.rpt".
    I want to know which property of Crystal Reports can be used to set the print job name to a more meaningful one.
    Edited by: Xiaobing Sun on Apr 2, 2009 5:08 AM

    The solution in this thread is for VS .NET as this is the forum for CR in .NET.
    With Foxpro, I suspect you want to create a new thread in the SAP Crystal Reports - Legacy SDKs forum.
    Make sure you specify the exact version of CR used.
    - Ludek

  • JS: How to make a script to print one page at a time and set print job name?

    What I want is to print one page at a time to the printer.
    Document.print(false, app.printerPresets.item(0)) almost get me there. But how do I get it to print page by page? There seems to be no way to set which page to print to printerPreset.
    Also, is it possible to change print job name from the default of using document name?

    >Is there any solution to this other than saving the document to a different name before each page print?
    Here is an altered and abriged version of the script that I use. I use print preset called "PS to PDF" in it, so you should change it to your own.
    if(app.documents.length == 0){
       alert("Please open a document and try again.");
       exit();
    var myFolder = Folder ("~/Desktop");
    var myDoc = app.activeDocument;
    var myNoExtention = getFileNameOnly (myDoc.name);
    var myPrintPrefs = myDoc.printPreferences;
    if (app.printerPresets.item("PS to PDF") == null) {
       alert("Preset \"PS to PDF\" has not been installed");
       exit();
    else {
       myPrintPrefs.activePrinterPreset = app.printerPresets.item("PS to PDF"); 
    myDoc.sections.everyItem().sectionPrefix = "";
    myDoc.sections.everyItem().includeSectionPrefix = false;
       var stop = myDoc.pages.length;
       var w = new Window ( 'window', 'Printing PS-files' );
       var pb = w.add ('progressbar', [12, 12, 300, 24], 0, stop);
       var txt = w.add('statictext');
       txt.bounds = [0, 0, 200, 20];
       txt.alignment = "left";
       w.show()
    for(var myCounter = 0; myCounter < myDoc.pages.length; myCounter++){
       curPage = myCounter + 1;
       pb.value = curPage;
       var myText = String("Page " + curPage + " of " + myDoc.pages.length);
       txt.text = myText;       
       var myPageName = myDoc.pages.item(myCounter).name;
       var cornumber = pagenum(myPageName);
       var myFilePath = myFolder + "/" + myNoExtention + "_" + cornumber + ".ps";
       var myFile = new File(myFilePath);
       myPrintPrefs.pageRange = myPageName;
       myPrintPrefs.printFile = myFile;
       myDoc.print(false);
    w.hide();
    alert("Done!");
    function pagenum(myNumber){
       if (myNumber >= 1 && myNumber <= 9)
       x =  "0" + "0" + myNumber;
       else if (myNumber >= 10 && myNumber <= 99)
       x = "0" + myNumber;
       else if (myNumber >= 100 && myNumber <= 999)
       x = myNumber;
    return x
    function getFileNameOnly (myFileName) {
       var myString = "";
       var myResult = myFileName.lastIndexOf(".");
       if (myResult == -1) {
          myString = myFileName;
       else {
          myString = myFileName.substr(0, myResult);
       return myString;
    Kasyan

  • Change Print Job Name

    I have a VB.NET Windows program that load a Report file with rpt.Load(ReporFile) and after send to printer with rpt.PrintToPrinter(NumberofCopy, False, 0, 0).  I want to change the print job title. I see another  post: How to set  the CR print job name that displayed in Printer job queue? with this solution:
    CrystalDecisions.ReportAppServer.Controllers.PrintReportOptions prnOpts;
    prnOpts.JobTitle = "hello world";
    but I don't know how to get PrintReportOptions from my ReportClientdocument. The only I know it's rdc.PrintOutputController.GetPrintOptions but this retunrn a PrintOptions object that don't have JobTitle property.
    Can someone help me ?
    thanks Filippo

    You will need to create this object and set its properties.
    The majority of properties are not ones that you will read out of the report's printoptions anyways (ie number of copies, Jobtitle, page ranges etc)
    so simply use something like:
    PrintReportOptions prOpts = new PrintReportOptions();
    prOpts.JobTitle = "Hello World";
    prOpts.AddPrinterPageRange(1,1);
    rcd.PrintOutputController.PrintReport(prOpts);

  • Print Job Names

    We run a Fiery RIP, printing from 10.3 job names which have spaces appear in full on the RIP, however printing from 10.4 job names are truncated up to the first occurance of a space in the name.
    Can anyone else confirm this behaviour? Does anyone know if this is a change due to a later CUPS version (1.3 vs. 1.47), or possibly an Apple print system problem not escaping space when interfacing to CUPS?
    This can be incovinient as most of our print job names are prefixed by a job number followed by a space then a human readable job description. When only the job number shows up (when printing from 10.4), it's hard to corrolate it to a particular job on the RIP queues.

    For anyone who's interested. I have tracked the problem down to the cupsd binary.
    Replacing the 10.4.6 supplied binary under /usr/sbin/cupsd with a previous version from a 10.3.9 install fixed the job name problem.
    A suspicious line in the cupsd error log showed this under 10.4.6:
    D [07/Apr/206:11:57:12 +1200] StartJob: option = "com.apple.print.JobInfo.PMJobName=test\file"
    And the job name would appear on the RIP queues as "test"
    where as under 10.3.9 where the Job name works properly the corresponding line is:
    D [07/Apr/2006:11:47:40 +1200] StartJob: option = "com.apple.print.JobInfo.PMJobName='test file'"
    And the job name would appear in full on the RIP queues as "test file"
    So although this is unconfirmed it looks like different methods of escaping spaces are handled differently. The single quotes around the job name ("test file" in this example) work properly, whereas the '/' method appears to result in the truncation of the Job Name to just "test" when it appears in the RIP queues.
    However replacing binaries like this is far from ideal, especially replacing newer cupsd version with an older version, it may (more than likely) break other stuff.
    Layton
      Mac OS X (10.4.6)  
      Mac OS X (10.4.6)  

  • How to set Internet Explorer to return full URL for the Print Job Name

    Hello all,
    On printing a web page from IE 6, 7, and 8 using javascript window.print command, the name of the printjob is truncated only to the first 63 characters. Unlike IE 9, it returns the full URL, or at least longer.
    Does anyone know the way to set those IE versions to return full or wider URL string?

    Sorry for lack of detail in my first post. I don't believe this has anything to do with javascript. The javascript command window.print() simply gives out command to the browser to print the web content.
    The situation is that, I open a webpage, for example,
    http://www.google.com.my/#sclient=psy&hl=en&source=hp&q=some+long+parameter+value+in+the+query+string&pbx=1&oq=some+long+parameter+value+in+the+query+string
    Then I right-click on the page and choose 'Print...' to print the page to a printer. Therefore, Windows spooler system will queue the print job with all the metadata about the doc that is printing. 1 of this metadata is document/printjob name, which are
    set to the name of the doc. In case of a web page from IE, this field will be populated with the URL of the page.
    I notice that, when I do printing from IE 9 of the above URL, the field document/printjob name is the whole URL string. But while in IE 8 and below, only the first 63 characters of the URL are populated into the field. (I.e:
    http://www.google.com.my/#sclient=psy&hl=en&source=hp&q=some+l)
    I believe this field is set by the application that sent out the printing command to the spooler. In this case, it's IE.
    So, my question is, is there any reg settings for IE 8 and below to force them to put in the whole URL in that field instead of truncates them to only 63 characters?

  • Find the network printer print jobs names using  the javax.print

    hi friend ,
    i have a problem to find the network printer printjobs names using javax.prrint pacakge. And give the best sites for example of javax.print.

    Iterate the array from:
    PrintService[] services = PrintServiceLookup.lookupPrintServices( null, null );

  • How to include the URL in the name of the print job when printing from FF

    We log all print activity in our company and it would be helpful to be able to identify print jobs from Firefox, however as only a web page's <TITLE> content is used as the print job name, I was wondering if there was a way to either use the URL as the print job name, or even prefix the print job name as "Mozilla Firefox" to identify jobs from this application?

    Thank you for your reply but that's the print job content, i.e. page header / footer will have the URL typed into it. I'm after the name of the print job, i.e. as it appears in the print queue. For that I cannot find an option.
    I'm wondering whether a plug-in could do this, replace the normal print function with an identical one that uses the URL as the print job name.

  • Printer Job Title

    I am using the Crystal Report version who is integrated with MS Vs2008 Prof.
    Is  there any way to specify print job name when printing report? I'm failing to find it.
    In print spooler all jobs from Crystal are appearing as "document" and people can't recognize different reports.
    My Vb.Net code to print the report (crSupplerList) is, 
    Dim crRpt As CrystalDecisions.CrystalReports.Engine.ReportClass = crSupplerList
    crRpt.SetDataSource(myDataSet)
    crRpt.PrintOptions.PrinterName = "\\My-pc\HP LaserJet 6L"
    crRpt.PrintToPrinter(1, False, 0, 0)
    Please correct my if this isn't the best way.
    Thanks in advance

    I tested this with CR 2008 (did not have Crystal Reports Basic for Visual Studio 2008 image running), but in that version, the job is shown as Crystal Reports - <name of repost as per Summary title info>.
    I'll try this in CR 105 tomorrow, but in the meantime, I'd like to ensure that you have SP 1:
    https://smpdl.sap-ag.de/~sapidp/012002523100009351512008E/crbasic2008sp1.exe
    Let me know if SP 1 helped.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • How to Capture print jobs and Data with WIN32 API?

    My organization has about 5 network printers and copiers to which a computer can print. What I'd like to do is build, if possible, a simple JAVA program to intercept what the users are printing (from any application) and capture certain information about the print jobs before it gets sent off to the specified printer.
    For example, when a user selects print from the menu in MS Word, and after the Ok button is pressed on the printers dialog window, have my program then pop up asking the user to fill in specific information (who they want to charge for the print job...this is typically an internal billing code, etc.).
    The program would have to capture the name/driver of the printer users are printing to, the document they printed, number of pages, number of copies, date/time, etc.
    Is/are there Windows API's to help in my programming of this application? I've been, unsuccessfully, searching MSDN, web sites, etc. on how to intercept/detect a print job. Any help would be greatly appreciated!
    Thanks ahead of time...

    Hi,
    Printing is nothing to do with database transaction. SP will not apply here. You may only try SDK.
    Thanks,
    Gordon

  • HP ePrint Home&Biz app not working. Print job failure:busy message appears on tablet

    I have an HP Laserjet P1102W and am trying to print from a Viewsonic tablet (android OS) using the HP ePrint Home&Biz app.  I can send an email to the printer via the tablet and it prints the document with no problems.
    I apologize in advance for the long message... 
    If I try and hit the PRINT key on the lower bar (which says 'HP Laserjet Professional P1102W (NPI7...host name), all that happens is blue & green LED's come on, green, blue flashes, green, blue flashes, green, blue flashes, then green and blue stay on steady.  Just before the blue and green come on steady at the end, the "print job failure:busy" message flashes on my tablet.
    I assume the sequence of LED flashes is the HP printer receiving a print command 3 times and can not perform the task because the printer thinks it is busy.
    After searching for this problem on the net, it would appear I am not the only person with this issue.  And yes, I have tried powering down my modem, printer, PC, and tablet and restarting all the above.  Not that the PC has anything to do with it, but I am desperate. 
    Does anyone have a viable working solution to this problem???

    Hello,
    Thanks for the post.  With this one, there is a firmware update available for the printer, and I've included a link below that with some excellent steps to check regarding this issue.  Good Luck!
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?os=219&lc=en&cc=us&dlc=en&sw_lang=&product=41103...
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02933944&cc=us&dlc=en&lc=en&product=4110396&tmp...
    I worked for HP but my posts and replies are my own....Thank you!
    *Say thanks by clicking the *Kudos!* which is on the left*
    *Make it easier for other people to find solutions, by marking my answer with (Accept as Solution) if it solves your issue.*

  • CS4 : unable to print / stops printer / halts print job on Fuji Xerox c2255

    Morning,
    This discussion posting may or may not have some relevance to my previous posting, CS4 : memory leak errors (?) in Os X console log
    I am working on a clients workstation and they are having a few problems. Specific hardware and software details are at the bottom of this posting.
    THE PROBLEM
    The problem is that I can not seem to print from CS4. The problem seems to be specifically Adobe CS4 related as I will explain below.
    From the end user perspective, the CS4 suite appears to function normally with one exception - CS4 will not print. In the below example, I am referring to mainly Adobe Acrobat CS4 and InDesign CS4 as these are the programs that they use the most. The artist can still work with all the CS4 applications - opening new or existing indesign/acrobat documents, adding text, import, export, create pdfs, saving to same name or new name, etc... but they can't print out to a printer (Fuji Xerox c2255). For example, using InDesign, the artist can open an existing Indesign document and make changes to the Indesign document. She can save the document using the same name or a new name, but when she attempts to print the Indesign document, the document will not printed. If she saves the file as a pdf and using Acrobat to open the pdf and attempts to print the document, it will not print. BUT, if she uses preview to open the document and attempts to print, then it WILL print.
    When attempting to print, the following happens,
    - in acrobat CS4 or Indesign CS4, choose 'Print'
    - choose A4 or A3 format
    - click print
    The job processes and is set to the printer spool as per normal. About a couple of second later, after the processing is done, the Printer Queue starts jumping up and down in the dock. Open up the printer queue, shows the following message 'Printer has stopped'. The job is present in the printer queue list. Restart the Printer, and restart the job, and then about 5 seconds later, the message appears again, 'Printer has stopped'. This continues ad nauseum until the job is manually deleted from the queue. No print outs.
    PRINTER or PRINTER DRIVER
    I have installed and uninstalled the printer driver half a dozen times. I have source the driver from different locations (US, Asia and Australia). In all three cases,the Fuji Xerox printer drivers look identical (I've opened them up in text edit). Every other application, on the Mac, appears to access the printer without any problems -Office 2008 ( Word, Excel), Preview, Text Edit, Text Wrangler, Mail, etc can all address the printer and print to the printer without any problems. Using any of these programmes, I can access all the functionality of the printer (A4 in Tray 1, A3 in Tray 2, Levels of the inks, etc) via the driver. When I installed the generic printer drive, I have no access to any of the Fuji Xerox Printer functionality. This leads me to think that the Fuji Xerox printer driver is not the problem.
    Interestingly, using Apple's Preview, I can print any existing Acrobat documents without any problems - in either A4 or A3. However, if I attempt to print the SAME Acrobat document from Acrobat CS4, it will not print.
    USE 'PRINTER DRIVER' option rather then choosing paper size.
    I read in another posting, in the Adobe forum, of a similar problem with Duplex printing - if the the paper size is manually set (A3/A4) in the 'print document options', printers do not print duplex. The answer seemed to be instead of manually choosing the paper size (A4/A3), allow CS4 to determine the paper size. So, in the 'print document' dialog option, one should choose 'use printer driver' instead of specifying A3 or A4. An explanation suggested that the print engine refers to the printer driver to find out what options are availible and then CS4 chooses what size it wants to send the print job to. Forcing CS4 seems to stop duplex printing from working.
    I will look at this suggestion next week when I return to the site.
    NETWORK PRINTER
    The fuji Xerox c2255 is a network printer. Both Mac Pro and printer have a fixed IPs. I have eliminated the network as a problem, by running a network cable directly from Mac Pro ethernet port to Fuji Xerox ethernet port. I can ping the printer directly from the Mac Pro; I can see the printer from the Mac. I can print directly to the printer from the Mac, using Text edit or any other application EXCEPT CS4. CS4 will not print.
    CLIENT HAS UPDATED ALL DOCUMENT FILES TO CS4 via INX
    I have since been informed that a staff member had (recently) updated all the documents to CS4 via INX. I wonder if this anything to do with the problems ? Unfortunately, I don't have any 'old' documents to test with. I wonder if the conversion process had 'modified' the pdf wrapper in some way ? I have tested this in the following manner - I opened a 'updated' CS4 document in Indesign CS4. If I try to print straight out of CS4, then the above problem occurs (i.e. the document will not print as descibed above). BUT, if I copy all the contents - from the updated CS4 document - and paste the contents directly into a NEWLY created document, then it WILL print.
    UNINSTALL CS4 AND REINSTALL
    Yes, this has been done three times so far with no further improvement. Each time, the steps that I have taken are as follows,
    - repaired disk permissions.
    - fsck in single user mode to confirm directory structure is fine
    - uninstalled CS4 using the uninstaller.
    - manually searched and remove any file, folder, cache that has the word 'adobe' in it from both User account, System Library and Library.
    - used Onyx manual and automatic functions to clear all logs, font caches, spotlight databases, kernal caches, etc, etc
    - ZapRAM Cmmd-Option-P-R (wait for start up chime 3 times)
    - fsck again
    - start Mac in Safe mode
    - reinstalled CS4 from media (see version above)
    - Following reinstallation, restarted mac as per normal.
    - run Disk Utility to repair permissions
    I have tried printing an existing CS4 document file with a freshly installed CS4 suite - directly from the media file (will not print). And I have attempted to print a CS4 document file after applying all updates (will not print) Neither approach improves the situation.
    USE CS3
    This has been considered but as the client(s) have already done the conversion of all their documents to the CS4 format using INX, then they are really committed to working with CS4. What I am attempting to do at this time is to find out WHY CS4 is doing what it is doing, and if there is a fix to this problem. If there is no fix, then I know I should use a different approach.
    I am posting this message in the hope that someone may have already come across this problem or perhaps may be able to spot something that I have overlooked. This problem has really got me stumped - I have had experience with Adobes products since Photoshop 1.0 (1990s / Pre-CS1) but never had a problem as annoying or time consuming as this one - this is a dousy.  I have lodged a case number with Adobe Technical Support.
    Thank you for taking the time to read this longish posting. I would be most grateful for any feedback solutions, or suggestions.
    Have a wonderful weekend.
    Thank you,
    Fred
    Workstation specs are as follows,
    MACINTOSH MODEL (Intel) 8 core - new model Mac Pro; just 1 month old.
    Model Name: Mac Pro
      Model Identifier: MacPro4,1
      Processor Name: Quad-Core Intel Xeon
      Processor Speed: 2.26 GHz
      Number Of Processors: 2
      Total Number Of Cores: 8
      L2 Cache (per core): 256 KB
      L3 Cache (per processor): 8 MB
      Memory: 6 GB
      SMC Version (system): 1.39f5
      SMC Version (processor tray): 1.39f5
      System Version: Mac OS X 10.5.7 (9J61)
    ADOBE CS4 VERSION - Installed from media.  No updates applied (but have already done with with an earlier installation)
    Adobe Acrobat Pro 9.0 v9.0.0, Adobe Bridge CS4 v3.0.0.464, Dreamweaver CS4 v10.0.0.4117, Adobe Flash CS4 v10.0.0.544, Adobe InDesign 6.0.3.557, Adobe Media Encoder CS4 v4.0, Adobe Media Player v.11, Adobe Photoshop CS4 v11.0 (11.0x20080919 [20080919.r.488 2008/09/19:02:00:00 cutoff; r branch]), Adobe Updater 6.0.1.1464

    Try resetting the printer subsystem.

  • Is there a way to save print job for later?

    Is there a way to have print jobs saved for a later date/time? The only solution I can think of is to save the document/web page/file to a folder (e.g., "print later"). However, I'd rather just be able to hit print and in the print dialogue "send" the job to a print queue that I can open later.
    For the curious, there are two often reoccuring situations where I want to save a print job for later: 1) I work late at night when my family is asleep and my house is not large enough to avoid disturbing their sleep by printing; and 2) I need to print out a 50+ page work document and I don't want to use my home computer to do it.
    I'll appreciate whatever tips, recommendations, thoughts I get.

    the method mentioned by benwiggy will certainly work.  If you want to an option that would give you more options, you could use a PDF Service.  You could then put a specific job on hold while still allowing others to use the printer.
    You can do this by opening AppleScript Editor (/Applications/Utilities).  You can copy and paste the following into an editor window --
    on open printJobs
    tell application "Finder"
    set trapFile to quoted form of POSIX path of (printJobs as string)
    end tell
    set defaultPrinter to do shell script "lpstat -d | awk -F: '{print $2}'"
    do shell script "lpr -P" & defaultPrinter & " -q " & trapFile
    end open
    Save the file as an Application.  You can name it something like Hold Print Job.  Then just put it in the PDF Services directory in the Library directory of your Home folder <yourname>/Library/PDF Services.  You may need to make the PDF Services directory as it may not already be there.
    Once the file is in place, you can use it by using the PDF drop down menu at the bottom left of a print window.  That will send the file to the printer and put it on hold.  Others can still use the printer.  You can then print your file whenever you want.  Just open the print queue as mentioned by benwiggy.  Highlight the job that is Paused.  You will see a little curly icon at the very right (looks like a reload icon in a web browser).  Just click that icon and the job will start printing.

  • Eventing and Print Jobs

    Hey all! I am attempting to write a script that will collect information about print jobs on a print server and write the data to a database. I am trying to get data on print job owner, printer name, whether it was color or grayscale, number of pages and
    number of copies.
     I am running into a problem finding a method to collect events for print jobs. I have attempted to subscribe to creation and modification events of the Win32_PrintJob class, which is ok but doesn't seem very accurate about details like pages printed
    and color/grayscale. I next attempted to respond to these events by using Get-WinEvent each time the event fires and then using the JobId property of the event to scan the PrintService log for matching 307 and 805 events. However, I have found that the Win32_PrintJob
    JobId does not seem to match the document id in the event log entries.
    I scrapped that idea and instead attempted to collect .NET events for the NTEventLog class but this only seems to work with the traditional logs such as system, security and application.
    I suppose I could just scan the event logs on a regular basis and collect print job information that way, but I was really looking to collect and log this info in real time rather than just looping every so often. Has anyone else tried eventing for any of
    these classes? Is it possible there is another .NET class I could subscribe to that would provide me with details of incoming print jobs? Am I going about this entirely the wrong way?
    Thanks!

    Hi Matt,
    Maybe you can try the .NET class for printing:
    Function Get-PrintJobs
    <#
    .SYNOPSIS
    Return the list of jobs on the current printer
    .DESCRIPTION
    This function returns a list of pending jobs on the specified print server for a given queue
    .PARAMETER ComputerName
    Name of the print sever
    .PARAMETER Name
    Name of the print queue
    .EXAMPLE
    Get-PrintJobs -ComputerName ps -Name HPLJ5000
    .LINK
    http://scripts.patton-tech.com/wiki/PowerShell/PrintServerManagement#Get-PrintJobs
    #>
    Param
    $ComputerName,
    $Name
    Begin
    $Host.Runspace.ThreadOptions = "ReuseThread"
    if ((Get-WmiObject -Class Win32_OperatingSystem).OSArchitecture -eq '64-bit')
    $SystemPrinting = Get-ChildItem "$($env:systemroot)\assembly\GAC_64\System.Printing"
    $SystemPrintingFile = Get-ChildItem -Name "*system.printing*" -Recurse -Path $SystemPrinting.FullName
    $SystemPrintingFile = "$($SystemPrinting.FullName)\$($SystemPrintingFile)"
    else
    $SystemPrinting = Get-ChildItem "$($env:systemroot)\assembly\GAC_32\System.Printing"
    $SystemPrintingFile = Get-ChildItem -Name "*system.printing*" -Recurse -Path $SystemPrinting.FullName
    $SystemPrintingFile = "$($SystemPrinting.FullName)\$($SystemPrintingFile)"
    $ErrorActionPreference = "Stop"
    Try
    Add-Type -Path $SystemPrintingFile
    $PrintServer = New-Object System.Printing.PrintServer("\\$($ComputerName)")
    $PrintQueue = $PrintServer.GetPrintQueue($Name)
    $PrintJobs = $PrintQueue.GetPrintJobInfoCollection()
    Catch
    Write-Error $Error[0].Exception
    Break
    Process
    End
    Return $PrintJobs
    Refer to:
    A print management library
    If there is anything else regarding this issue, please feel free to post back.
    If you have any feedback on our support, please click here.
    Best Regards,
    Anna Wang

  • Printer Queue - How can I hide print job title and username?

    Hi,
    Does anyone know if it is possible to hide print job title and username in the printerqueue?
    Because of our privacy agreement we would like to hide this information, 
    Workstation OS: Windows 7 x64 
    Printserver : MS 2008 R2
    Thanks in advance
    Mark

    Not the user name but the job name is changed to Print Document when the print jobs are sent to Server 2012 and 2012R2.
    There is no Windows feature like this in 2008R2.  There are third party products that include job rename features for 2008R2
    Alan Morris formerly with Windows Printing Team

Maybe you are looking for

  • Replicating a bex report in webi

    Hi I am trying to replicate a bex report in WEBI.In the bex report based on a variable value i show either planned values or actual  values for amount field, both of which are coming from 2 different cubes.How do i achieve the same functionality in a

  • ATV Not Syncing Completely

    The issue started last night. My ATV says its syncing in iTunes but none of the updates and recent additions to iTunes are showing up on the ATV. All of my old music, movies, tv shows and photos are available but that's it. It also shows ATV is synci

  • Toolbar icons missing after scrolling document

    Hi There, I have a problem with Adobe Reader X When i open a large PDF file (1000 pages ore more) then after a while scrolling up and down trough the document my icons in the toolbar are lost!!! The toolbar it self and the page number and character s

  • 3D Anaglyphs in elements 6

    Hi all New out here and probably repeating a past thread question. Apologies if so. Can I create an anaglyph within elements 6? If so, how, and how easy is it? I have been trying to find books that will assist with this, to little avail. Thanks for y

  • Catalogue corrompu

    J ai un catalogue corrompu, impossible a reparer !!!!