+ Post New Thread
Results 1 to 6 of 6
Networks Thread, Network Policy - printers in Technical; I recently added a new HP Officejet pro K550 networked printer to our system. Set up went well. I now ...
  1. #1
    speckytecky's Avatar
    Join Date
    May 2006
    Location
    UK
    Posts
    1,460
    Blog Entries
    1
    Thank Post
    1,934
    Thanked 106 Times in 90 Posts
    Rep Power
    46

    Network Policy - printers

    I recently added a new HP Officejet pro K550 networked printer to our system. Set up went well. I now want to define it as a choice for all users. However, initially until I work out how to do this, I'm trying to add printer when individuals are logged on relevant workstations. I see the printer and it allows initial selection but then a message pops up telling me:

    A policy is in effect on your computer which prevents you from connecting to this print queue. Please contact your system administrator.

    Suggestions welcome.

  2. #2

    Ric_'s Avatar
    Join Date
    Jun 2005
    Location
    London
    Posts
    7,603
    Thank Post
    96
    Thanked 678 Times in 523 Posts
    Rep Power
    156

    Re: Network Policy - printers

    You need to make sure that the PCs have the driver installed because regular users cannot install printer drivers.

    This can be done very easily in a startup script like the following:
    Code:
    ' Startup script to add network printer drivers at startup
    ' Author: Ric Charlton, 11/04/07
    
    ' Declare variables and enumerate existing printer connections
    On Error Resume Next
    Set WshShell = WScript.CreateObject("WScript.Shell")
    Set WshNetwork = WScript.CreateObject("WScript.Network")
    Set oPrinters = WshNetwork.EnumPrinterConnections
    
    ' Delete existing connections to network printers
    For i = 0 to oPrinters.Count - 1 Step 2
                On Error Resume Next
    	    if Left(oPrinters.Item(i), 3) <> "lpt" And Left(oPrinters.Item(i), 3) <> "usb" then
                 	WshNetwork.RemovePrinterConnection oPrinters.Item(i+1), true, true
                else WScript.Echo "No network printers found"
                end if
    Next
    
    ' Add printer connections
    ' Variable to select print server
    Dim printServer
    printServer = "MyBigPrintServer"
    
    
    WshNetwork.AddWindowsPrinterConnection "\\" & printServer & "\MyFirstPrintQueue"
    ' Copy the above line for each print queue
    
    ' Delete connections to network printers
    oPrinters = WshNetwork.EnumPrinterConnections
    For i = 0 to oPrinters.Count - 1 Step 2
                On Error Resume Next
    	    if Left(oPrinters.Item(i), 3) <> "lpt" And Left(oPrinters.Item(i), 3) <> "usb" then
                 	WshNetwork.RemovePrinterConnection oPrinters.Item(i+1), true, true
                else WScript.Echo "No network printers found"
                end if
    Next

  3. #3

    plexer's Avatar
    Join Date
    Dec 2005
    Location
    Norfolk
    Posts
    8,924
    Thank Post
    276
    Thanked 795 Times in 715 Posts
    Rep Power
    188

    Re: Network Policy - printers

    Also make sure with these that the paper type is setup correctly to A4 in the printer properties on the server.

    Also make sure that students set their paper size to A4 when trying to print to them.

    I have issues with these and the 850's that they just baulk at some print jobs because of this and hangs the queue.

    Ben

  4. #4

    Join Date
    Dec 2005
    Posts
    174
    Thank Post
    10
    Thanked 10 Times in 5 Posts
    Rep Power
    21

    Re: Network Policy - printers

    our students just hit print button repeatedly then go WAAAAAAAAAAHHH!!

    PRIN'ER WONT PRIN' !!!!!

    WAAAAAAAAAAAAHHHHHHH!

  5. #5
    Geoff's Avatar
    Join Date
    Jun 2005
    Location
    Fylde, Lancs, UK.
    Posts
    10,963
    Blog Entries
    1
    Thank Post
    104
    Thanked 422 Times in 365 Posts
    Rep Power
    109

    Re: Network Policy - printers

    Does the printer not have an 'ignore wrong paper size' option? They usually do..

  6. #6

    Ric_'s Avatar
    Join Date
    Jun 2005
    Location
    London
    Posts
    7,603
    Thank Post
    96
    Thanked 678 Times in 523 Posts
    Rep Power
    156

    Re: Network Policy - printers

    @Geoff & others: IIRC you set this using the web interface on them.

SHARE:
+ Post New Thread

Similar Threads

  1. Network Printers going offline since 2003sp2
    By edie209 in forum Windows
    Replies: 9
    Last Post: 27th July 2011, 09:57 AM
  2. Deploying printers via group policy
    By Southwell in forum Windows
    Replies: 16
    Last Post: 7th December 2007, 01:28 PM
  3. Unessasary network traffic from printers.
    By tosca925 in forum Networks
    Replies: 6
    Last Post: 14th August 2007, 10:10 PM
  4. Replies: 12
    Last Post: 22nd June 2007, 01:49 PM
  5. I'm having a really bad day with network printers!
    By pmassingham in forum Windows
    Replies: 2
    Last Post: 19th January 2007, 10:57 AM

Thread Information

Users Browsing this Thread

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

Posting Permissions

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