Jump to content

bslater

Members
  • Posts

    4
  • Joined

  • Last visited

Reputation

5 Neutral

About bslater

  1. I think there's a problem with the firewall!
  2. Looking to replace PSU from our Server. Current model is FSP600-80GLC Current connections are Main Power 20 pin + additional 4 pin +12v CPU power connector 8 pin 1 x Floppy drive (not essential but has one anyway) 4 x 4 pin connectors - DVD, Tape Drive, 2 x HDD other assorted connections not used. Motherboard is Intel Eden Prairie SE7320EP2 Any recommendations please Brian
  3. Hello Andy, We do something similar but utilise screensavers and the login box (CC3). I created a couple of screensavers based on SMART from KidSmart and INSAFE. We swap them with other screensaver (xmas, remembrance day etc) via RMMC. The login box takes BMP's so simple messages can be changed whenever we need. Creating wallpapers based on e-safety sounds like a competition for the children. regards Brian
  4. Hi I use a simple VBScript in the startup folder. Asks the user if they are in school, if so loads proxy settings, otherwise removes proxy settings. Paste into notepad, alter 000.000.000.000:8080 to your Proxy settings and port, save as .vbs It's almost teacher proof. Option Explicit Dim valUserIn Dim objShell, RegLocate, RegLocate1 Set objShell = WScript.CreateObject("WScript.Shell") On Error Resume Next valUserIn = MsgBox("Use the SCHOOL settings?",4,"Cloaked Select") If valUserIn=vbYes Then RegLocate = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyServer" objShell.RegWrite RegLocate,"http://000.000.000.000:8080","REG_SZ" RegLocate = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyEnable" objShell.RegWrite RegLocate,"1","REG_DWORD" MsgBox "SCHOOL setting is Enabled" else RegLocate = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyServer" objShell.RegWrite RegLocate,"0.0.0.0:80","REG_SZ" RegLocate = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyEnable" objShell.RegWrite RegLocate,"0","REG_DWORD" MsgBox "HOME setting is Enabled" End If WScript.Quit
×
×
  • Create New...