Jump to content

martyn

Members
  • Posts

    10
  • Joined

  • Last visited

Reputation

0 Neutral

About martyn

Personal Information

  • Location
    Swansea
  1. Yes I was told about the web version yesterday when I phoned their support dept. It's a shame that the CD version was only sold to our SENCO last month I'm trying making the teacher who will run it a local admin on her PC and see if that allows her to run it. Martyn.
  2. Argh, We too have this software and the same problem of non-admin accounts running it. Does anyone have the list of folders that need write permissions? Cheers Martyn.
  3. Hi all, We have recently purchased 60 Opti 760s SFF and they came with dell 6 button mice. We have a strange problem with them. Every so often and randomly they lose connectivity with the mouse. Unplugging the mouse and plugging it back into the same or different USB port fixes the problem. Anyone else had a similar problem and can offer some suggestions/advice ? Thanks Martyn.
  4. Ok, there is an error on that one, WSHprinter variable not defined. Martyn.
  5. Cheers for that ! Will Try That One Now. Martyn
  6. Thanks again for all the replies, ok now trying a slightly altered script, See below, If i comment out (on error resume next) I get a overlapping IO script host error on line 18: "" objNetwork.AddWindowsPrinterConnection strUNCPrinter "" Then it only maps 'laser nul' not the other two, but if the 'on error resume next' is there it maps all three but sets the wrong default. Eek !!! Cant kids use a pen and paper ! Thanks again. ' SetDefaultPrinter.vbs - Windows logon script example ' PrintersDefault.vbs - Set the default printer ' VBScript - to map a network printer ' Author Guy Thomas http://computerperformance.co.uk/ ' Version 1.4 - April 24th 2005 ' -----------------------------------------------------------------' Option Explicit Dim objNetwork, strUNCPrinter, strUNCPrinter1, strUNCPrinter2 strUNCPrinter = "\\pc-bashful\LASER-NUL" strUNCPrinter1 = "\\pc-bashful\PC-ICT1-COLOUR" strUNCPrinter2 = "\\pc-bashful\PC-ICT1-MONO" Set objNetwork = CreateObject("WScript.Network") objNetwork.AddWindowsPrinterConnection strUNCPrinter objNetwork.AddWindowsPrinterConnection strUNCPrinter1 objNetwork.AddWindowsPrinterConnection strUNCPrinter2 ' Here is where we set the default printer to strUNCPrinter objNetwork.SetDefaultPrinter strUNCPrinter2 WScript.Quit ' End of Guy's Windows logon example VBScript.
  7. Thanks for the reply, I will try that at lunch time, what is the force command in vbs? Thanks Martyn.
  8. Thanks for the reply: Yes the printer is alive and kicking and will print, permissions are set so that everyone can print, The printer is shared from a server (pc-bashful) and the script is applied when a user logs into a machine in that particular room. Thanks Martyn
  9. Hello all, I have an annoying printer script error, Here's the script applying to all authenticated users which correctly maps the three printers when the user logs in but always sets the default to Laser-Nul instead of the ICT1 Mono which it should be: 'Name : addprinter.vbs 'Author : Matt Davies 'Date : 22/03/2006 'Description : - Used to add printers for a user ' - Used inconjunction with group policy at Workstation level so it runs per room ' - Needs to be ran under "USER" Logon scripts Option Explicit On Error Resume Next Dim objNetwork 'declare the printer names - add as necessary Dim strUNCPrinter1 Dim strUNCPrinter2 Dim strUNCPrinter3 'set the UNC path to the printers you want mapped - add as necessary strUNCPrinter1 = "\\pc-bashful\PC-ICT1-MONO" strUNCPrinter2 = "\\pc-bashful\PC-ICT1-COLOUR" strUNCPrinter3 = "\\pc-bashful\LASER-NUL" Set objNetwork = CreateObject("WScript.Network") 'Add the printer to the computer - add as necessary objNetwork.AddWindowsPrinterConnection strUNCPrinter1 objNetwork.AddWindowsPrinterConnection strUNCPrinter2 objNetwork.AddWindowsPrinterConnection strUNCPrinter3 ' Here is where we set the default printer - change if necessary objNetwork.SetDefaultPrinter strUNCPrinter1 'End the script Wscript.Quit It is very frustrating, anyone got any ideas or know if there is a way to force the correct default through vbs. Many thanks in advance Martyn.
×
×
  • Create New...