Add a network printer to user automaticly

Ask a Question related to Windows Server, Design and Development.

  1. #1

    Default Add a network printer to user automaticly

    Hi

    How can I automaticly connect a user or a gruop of user to a network printer
    without any configuration on every computer/user profile.
    I want to do it centraly in some way
    How?

    Regards

    Mikael


    Mikael Oskarsson Guest

  2. Similar Questions and Discussions

    1. network printer problems
      Hi I'm having problems with the network printer here and whenever I try to print a PDF out, nothing happens - it doesn't go to the printer, yet...
    2. windows network printer
      Hi everybody I'm sorry if this is a FAQ, but I kinda have a problem. at home I have set up a little network, and there is only one printer....
    3. Adding a network printer
      Hi, everybody. This is a first time post for me. I'm an experienced user but a novice at system administration. I'm trying to set up a printer on a...
    4. sharing printer on wireless network
      try using the Ip address of the system with the share instead of the name.... this worked for me.. "Leslie" <noon@nowhere.com> wrote in message...
    5. Printer sharing on network
      I upgraded my desktop to XP and I am having problems connecting to printer connected to computer (that is on Windows 98 SE)on my home network. The...
  3. #2

    Default Re: Add a network printer to user automaticly

    Hi,

    you can do it with start up script. The script would look something like
    this:

    *****
    Set WshNetwork = CreateObject("WScript.Network")
    WshNetwork.AddWindowsPrinterConnection \\Primus\HP4500
    WshNetwork.SetDefaultPrinter "\\Primus\HP4500
    *****

    Replace \\Primus\ with the name of your printer server
    Replace HP4500 with name of your printer (share)
    If you don't want to have this printer as default printer skip the last
    line...

    Mike

    "Mikael Oskarsson" <nospam@tietoenator.com> wrote in message
    news:eYPvu2AYEHA.2940@TK2MSFTNGP09.phx.gbl...
    > Hi
    >
    > How can I automaticly connect a user or a gruop of user to a network
    > printer
    > without any configuration on every computer/user profile.
    > I want to do it centraly in some way
    > How?
    >
    > Regards
    >
    > Mikael
    >
    >

    Miha Pihler Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139