diff options
author | Tim Potter <tpot@samba.org> | 2002-05-02 05:23:38 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-05-02 05:23:38 +0000 |
commit | aa69c1ee80fbf7f45d61861089daeb5828e91229 (patch) | |
tree | db681d1494af3ff0d1a7ec48ffa86cd5150428c5 /source3/python/examples/spoolss/changeid.py | |
parent | 9d4f9bda320be9c17f2cf95ecd4d230f6a5283e5 (diff) | |
download | samba-aa69c1ee80fbf7f45d61861089daeb5828e91229.tar.gz samba-aa69c1ee80fbf7f45d61861089daeb5828e91229.tar.bz2 samba-aa69c1ee80fbf7f45d61861089daeb5828e91229.zip |
Some examples using the spoolss python module.
(This used to be commit 68b952561429e1d08a974e633bb9c2870c819c69)
Diffstat (limited to 'source3/python/examples/spoolss/changeid.py')
-rwxr-xr-x | source3/python/examples/spoolss/changeid.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/source3/python/examples/spoolss/changeid.py b/source3/python/examples/spoolss/changeid.py new file mode 100755 index 0000000000..b2345094ed --- /dev/null +++ b/source3/python/examples/spoolss/changeid.py @@ -0,0 +1,29 @@ +#!/usr/bin/python +# +# Display the changeid for a list of printers given on the command line +# + +import sys, spoolss + +if len(sys.argv) == 1: + print "Usage: changeid.py <printername>" + sys.exit(1) + +for printer in sys.argv[1:]: + + # Open printer handle + + try: + hnd = spoolss.openprinter(printer) + except: + print "error opening printer %s" % printer + sys.exit(1) + + # Fetch and display changeid + + info = hnd.getprinter(level = 0) + print info["change_id"] + + # Clean up + + spoolss.closeprinter(hnd) |