+ Post New Thread
Results 1 to 10 of 10
Windows Server 2000/2003 Thread, Printer Deployment- whats the best practice? in Technical; Hello, We've had endless problems here with printing due to having a mix of XP and Windows 7 machines, plus ...
  1. #1
    marsdenprimary's Avatar
    Join Date
    Sep 2009
    Location
    Nelson
    Posts
    417
    Thank Post
    211
    Thanked 5 Times in 5 Posts
    Rep Power
    8

    Question Printer Deployment- whats the best practice?

    Hello,

    We've had endless problems here with printing due to having a mix of XP and Windows 7 machines, plus a curriculum network and an admin network. We have a RISOgraph and the IP is on the admin range, gateway is on the curriculum range. This is so all computers can print to it.

    My question is this:

    What's the best practice for deploying printers? Is it per user or per machine?

    We have server 2003 so i'm running RSAT on my admin Windows 7 machine and i've been trying to deploy the printers via this. It's working a little but i'm struggling to work out whether to use printer PREFERENCES or printer DEPLOYMENT... and also- whether to make it per machine or per user.

    Hope you can help!

  2. IDG Tech News
  3. #2

    Join Date
    May 2009
    Location
    New Jersey
    Posts
    7
    Thank Post
    0
    Thanked 1 Time in 1 Post
    Rep Power
    0
    We use group policy and place Machines in OU's and use the VBS mapping scripts listed here.







    Quote Originally Posted by marsdenprimary View Post
    Hello,

    We've had endless problems here with printing due to having a mix of XP and Windows 7 machines, plus a curriculum network and an admin network. We have a RISOgraph and the IP is on the admin range, gateway is on the curriculum range. This is so all computers can print to it.

    My question is this:

    What's the best practice for deploying printers? Is it per user or per machine?

    We have server 2003 so i'm running RSAT on my admin Windows 7 machine and i've been trying to deploy the printers via this. It's working a little but i'm struggling to work out whether to use printer PREFERENCES or printer DEPLOYMENT... and also- whether to make it per machine or per user.

    Hope you can help!

  4. Thanks to digitaldomain12 from:

    marsdenprimary (1st May 2012)

  5. #3
    reggiep's Avatar
    Join Date
    Apr 2008
    Location
    In the vast area of space and time
    Posts
    1,409
    Thank Post
    445
    Thanked 53 Times in 47 Posts
    Rep Power
    25
    We use a kixtart script to allocate on a room by room basis, with occasional one off computers.

    Dead simple to set up and loads of examples on the kixtart forums.

  6. Thanks to reggiep from:

    marsdenprimary (1st May 2012)

  7. #4
    marsdenprimary's Avatar
    Join Date
    Sep 2009
    Location
    Nelson
    Posts
    417
    Thank Post
    211
    Thanked 5 Times in 5 Posts
    Rep Power
    8
    Quote Originally Posted by reggiep View Post
    We use a kixtart script to allocate on a room by room basis, with occasional one off computers.

    Dead simple to set up and loads of examples on the kixtart forums.
    Ok thanks I'll have a look. I've managed to get the printers working again just using the printer deployment using RSAT- the preferences were making printers appear twice in the printers and devices...which was confusing...

  8. #5

    Michael's Avatar
    Join Date
    Dec 2005
    Location
    Birmingham
    Posts
    7,933
    Thank Post
    216
    Thanked 1,292 Times in 1,024 Posts
    Rep Power
    282
    The best way is either 2003 R2 Print Management, or even better 2008/2008 R2 Print Management.

    You can easily deploy per user, per computer or a combination. It's also just as easy to remove the printer as it is to deploy it and to update drivers accordingly.

    In the past with scripts I've found updating drivers, removing printers (if it gets replaced for example) or renaming printers to be far more problematic.

    Personally I use 2008 R2's Print Management via GPO, although some people here do use GPP as an alternative. A Group Policy deployment method is recommended these days.

  9. Thanks to Michael from:

    marsdenprimary (1st May 2012)

  10. #6
    Duke5A's Avatar
    Join Date
    Jul 2010
    Posts
    503
    Blog Entries
    7
    Thank Post
    51
    Thanked 75 Times in 65 Posts
    Rep Power
    19
    I still prefer to use scripts myself. I've got a sub rolled into our VB logon script that deals with printers. Thus far it handles W2k/XP/7 without issues using a 2k8 32bit print server that has both x32 and x64 drivers loaded for every printer it hands out.

    Anything you can query through a VB script like computer/user LDAP path, group membership, machine name, AD site, everything in WMI, etc, can be used to set conditions for who gets what printer, and which is eventually set as default. For instance, we have our machine names and printer names done by building and room. So a printer in Neverland Elementary room 5 would be named NLE-RM05, while the machines would get named NLE-RM05-TW01/NLE-RM05-SW01. A couple lines of code in the script will hand out classroom printers for every building in the district to where they need to go by parsing the machine name and lining it up against the expected printer name. An added bonus is it'll even set the default printer.

    There are multiple ways to go about printer deployment. If all you're doing is pushing out a couple of copiers to every machine in a building, the Print Management would be the way to go, but if you get to the point where printer deployment starts to dictate how you setup your AD structure you might want to give scripting a look at.
    Last edited by Duke5A; 2nd May 2012 at 02:52 PM.

  11. #7

    localzuk's Avatar
    Join Date
    Dec 2006
    Location
    Minehead
    Posts
    15,272
    Blog Entries
    24
    Thank Post
    489
    Thanked 1,940 Times in 1,520 Posts
    Rep Power
    659
    We use this script I wrote - Simple drive mapping and printer deployment - Script Center - Spiceworks

    It basically assigns drives and printers according to group membership. So, if someone needs access to a printer or drive, just add them to the group and you're done.

  12. #8
    gshaw's Avatar
    Join Date
    Sep 2007
    Location
    Essex
    Posts
    2,445
    Thank Post
    142
    Thanked 196 Times in 181 Posts
    Rep Power
    59
    We use Group Policy Preferences, which replaced our previous VBScript mapping method.

    Apply the GPP as a User Logon Script but use the targeting options to map printers by the Computer's OU so users get the correct printer as they roam around the building

  13. #9
    browolf's Avatar
    Join Date
    Jun 2005
    Location
    Mars
    Posts
    1,425
    Blog Entries
    43
    Thank Post
    80
    Thanked 78 Times in 65 Posts
    Rep Power
    35
    Even though we have 2008 servers we're sticking to our trusty login script batch file.

    if %computername:~0,3% == B1- (
    rundll32 printui.dll,PrintUIEntry /in /n \\server\B1Mono
    rundll32 printui.dll,PrintUIEntry /in /n \\server\B1colour
    rundll32 printui.dll,PrintUIEntry /y /n \\server\B1Mono /q
    echo B1 Printers connected, Default set to Mono.
    goto END
    )
    If it's not broken it don't need 'fixing'
    Last edited by browolf; 3rd May 2012 at 10:39 AM.

  14. #10
    brownbread's Avatar
    Join Date
    Jun 2012
    Location
    Birmingham, Uk
    Posts
    26
    Thank Post
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0
    Group policys or some management software.

SHARE:
+ Post New Thread

Similar Threads

  1. Replies: 13
    Last Post: 11th March 2013, 07:45 PM
  2. Replies: 10
    Last Post: 26th September 2010, 10:40 AM
  3. Replies: 9
    Last Post: 30th August 2010, 07:59 AM
  4. Whats the best Search Engine for primary schools?
    By CommodoreS in forum Internet Related/Filtering/Firewall
    Replies: 15
    Last Post: 19th May 2010, 10:39 AM
  5. PCMCIA Network cards - whats the best?
    By sharkster in forum Hardware
    Replies: 5
    Last Post: 6th October 2008, 03:07 PM

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Posting Permissions

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