• Home
  • Cisco
  • Exchange
  • Linux
  • Navision
  • Network
  • Virtualization
  • Windows
  • About
  •  

    Links in Outlook – Restricted

    July 17th, 2012

    http://go.microsoft.com/?linkid=9726441

    http://support.microsoft.com/kb/310049/en


    Set standard printer with a VB script

    July 12th, 2012

    dim objNetwork
    set objNetwork = createobject(“Wscript.Network”)

    WScript.Sleep 1000 * 60 * 1
    objNetwork.SetDefaultPrinter “PrinterName”

    Just make a .vbs file. You can use it in a startup script (GPO)
    The line: WScript.Sleep 1000 * 60 * 1
    makes an delay of one minute.