- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- BackOffice Products
- >
- automatically adding user name to printouts
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-11-2001 11:57 PM
тАО07-11-2001 11:57 PM
automatically adding user name to printouts
Does anybody now about software (Windows, drivers) or hardware solutions?
Thanks, Johan.
- Tags:
- banners
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-12-2001 05:19 AM
тАО07-12-2001 05:19 AM
Re: automatically adding user name to printouts
The Microsoft article that describes the process is:
http://support.microsoft.com/support/kb/articles/Q102/7/12.asp?LN=EN-US&SD=gn&FR=0&qry=separator&rnk=1&src=DHCS_MSPSS_gn_SRCH&SPR=NTS40
Once you have a .sep file in place, just go into the print driver properties on the NT server, and click on the "separator page" button on the general tab, and point it to your file.
On my setup here, the three default .sep files that came with NT didn't work for me, but a custom one did.
Hope this helps,
Ed
Here is the simple file I made which worked for me:
@
Document:
@Fpathname
Printed by:
@N
@E
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-12-2001 10:10 PM
тАО07-12-2001 10:10 PM
Re: automatically adding user name to printouts
thanks for the response. Separator pages do help us, but only as long as they stay attached to the document. Therefor I am still looking for the possibillity to have that footer automatically printed to documents.
But thanks a lot anyway,
Johan Smits.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-14-2001 10:32 PM
тАО07-14-2001 10:32 PM
Re: automatically adding user name to printouts
1."the only thing that i know of is a separator page... if you want to print a header, you might have to look at some third party software or setup a print que log."
2. "Use a seperator page?
Start Button --> Settings --> Printers
Right click printer icon and select Properties. Look for the Seperator Page button."
The 2nd did the job, until...maybe...we find another way.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-14-2001 10:33 PM
тАО07-14-2001 10:33 PM
Re: automatically adding user name to printouts
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-11-2003 04:41 PM
тАО03-11-2003 04:41 PM
Re: automatically adding user name to printouts
I tried "Fpathname" but it didn't work.
Thanks for your time
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-11-2003 09:39 PM
тАО03-11-2003 09:39 PM
Re: automatically adding user name to printouts
@Fpathname_to_the_file_you_want_to_print.
i.e. c:\mydocs\test.doc
@Fc:\mydocs\test.doc
http://support.microsoft.com/default.aspx?scid=kb;en-us;102712
Jon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-12-2003 09:49 AM
тАО03-12-2003 09:49 AM
Re: automatically adding user name to printouts
all the documents printed by the same user (because the jobid does not really tell me anything).
Thanks again for your help!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-03-2008 02:23 AM
тАО10-03-2008 02:23 AM
Re: automatically adding user name to printouts
Please let me know if have any solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-16-2009 03:32 AM
тАО09-16-2009 03:32 AM
Re: automatically adding user name to printouts
Why not just keep the print queue and process that into a log file and then delete the job.
here is a script I wrote to do this.
'For this to work you must set the Keep Printed Documents in the printer advanced settings.
WorkQueue()
Sub WorkQueue()
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colPrintJobs = objWMIService.ExecQuery _
("Select * from Win32_PrintJob")
Const ForReading = 1 'Open a file for reading only. You can├в t write to this file.
Const ForWriting = 2 'Open a file for writing.
Const ForAppending = 8 'Open a file and write to the end of the file.
'create text file
Dim fs
Set fs = CreateObject("Scripting.FileSystemObject")
Set objWriteFile = fs.OpenTextFile("G:\Common_Share\Prtint Queue Log.txt", ForAppending)
'Process Print Queue
For Each objPrintJob in colPrintJobs
strPrinter = Split(objPrintJob.Name,",",-1,1)
'If you want email notification, uncomment the below
'SendEmail objPrintJob.Owner,strPrinter(0), objPrintJob.TotalPages
objWriteFile.Writeline("Time Stamp: " & Now() & ", Job Name: " & objPrintJob.Name & ", Doc Name: " & objPrintJob.Document & ", Job Owner: " & objPrintJob.Owner & ", Total Pages: " & objPrintJob.TotalPages & ", Size: " & objPrintJob.Size & ", Status: " & objPrintJob.Status)
objPrintJob.Delete_
Next
end Sub
Sub SendEmail(owner, printer, pages)
Set objMessage = CreateObject("CDO.Message")
objMessage.Sender = "whatever@domain.com"
objMessage.To = owner & "@tescodiets.com"
objMessage.Subject = "Have you Collected your Print Job Yet?"
objMessage.TextBody = "Has " & owner & " Collected their Print Off from the " & Printer & " Printer?" & vbcrlf & "The job consisted of " & pages & " pages."
VSMTPServer = "192.168.1.66"
objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = VSMTPServer
objMessage.Configuration.Fields.Update
objMessage.Send
end Sub