Created
February 18, 2015 23:28
-
-
Save Depicus/ca52e144f0f0693ffc46 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Dim Args, TheUser, TheNewValue | |
Set Args = Wscript.Arguments | |
Set TheUser = GetObject(Args(0)) | |
TheNewValue = InputBox("Old Default Printer: " & TheUser.defaultPrinter & vbCRLF & vbCRLF& vbCRLF& vbCRLF & "New Default Printer","Domain Default Printer",TheUser.defaultPrinter) | |
if TheNewValue <> "" then TheUser.Put "defaultPrinter",TheNewValue | |
TheUser.SetInfo | |
Set TheUser = Nothing | |
WScript.Quit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment