summaryrefslogtreecommitdiff
path: root/source3/python/examples/spoolss/changeid.py
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-05-02 05:23:38 +0000
committerTim Potter <tpot@samba.org>2002-05-02 05:23:38 +0000
commitaa69c1ee80fbf7f45d61861089daeb5828e91229 (patch)
treedb681d1494af3ff0d1a7ec48ffa86cd5150428c5 /source3/python/examples/spoolss/changeid.py
parent9d4f9bda320be9c17f2cf95ecd4d230f6a5283e5 (diff)
downloadsamba-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-xsource3/python/examples/spoolss/changeid.py29
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)