Jump to content

jamiet147

Members
  • Posts

    28
  • Joined

  • Last visited

Everything posted by jamiet147

  1. Hi All, Sorry for another Safe Mode post but i'm having trouble deleting the following registry entries HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\SafeBoot\Minimal\{4D36E96F-E325-11CE-BFC1-08002BE10318 HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Control\SafeBoot\Minimal\{4D36E96F-E325-11CE-BFC1-08002BE10318 HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\SafeBoot\Network\{4D36E96F-E325-11CE-BFC1-08002BE10318 HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Control\SafeBoot\Network\{4D36E96F-E325-11CE-BFC1-08002BE10318 HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\SafeBoot\Minimal\{4D36E96B-E325-11CE-BFC1-08002BE10318 HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Control\SafeBoot\Minimal\{4D36E96B-E325-11CE-BFC1-08002BE10318 HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\SafeBoot\Network\{4D36E96B-E325-11CE-BFC1-08002BE10318 HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Control\SafeBoot\Network\{4D36E96B-E325-11CE-BFC1-08002BE10318 My bulk method of deleting these was with group policy (Computer Configuration > Preferences > Registry) but after this didn't work I tried to delete these manually on my machine only to find the permissions for the HKEY_LOCAL_MACHINE are set to read only. Can anyone recommend a bulk way to change the permissions for HKEY_LOCAL_MAHINE using group policy or is there a better way to disable safe mode in Windows 7 Thanks Jamie
  2. AD HelpDesk - The best £2.99 i've spent in a long time!
  3. jamiet147

    .pac files

    Hi all! our internet is filtered externally and we are given a list of proxies to use such as... proxy.server.com:6671 - for educational sites (basicaly blocks myspace, youtube) proxy.server.com:6672 - for most web sites (blocks google images and inappropriate content) proxy.server.com:6673 - very strict filtering for images but let you on to google images and yahoo images mainly proxy.server.com:6674 - library filter (lets you on wiki and thats about it) and i've been doing some experimenting with .pac files and trying to get different web sites to use different proxies but so far i've been unsuccessful. Just wondering if anyone has tried something like this before or has any advice? heres the .pac file i've been using function FindProxyForURL(url, host) { if (isPlainHostName(url, host)) return "DIRECT"; else if (shExpMatch(url, "*.facebook.com/*")) return "PROXY proxy.server.com:6672"; else if (shExpMatch(url, "*.myspace.com/*")) return "PROXY proxy.server.com:6672"; else if (shExpMatch(url, "*.google.co.uk/*")) return "PROXY proxy.server.com:6673"; else if (shExpMatch(url, "*.google.com/*")) return "PROXY proxy.server.com:6673"; else return "PROXY proxy.server.com:6671"; } With this pac code whatever the first site/proxy is it will use that one. Thanks in advance! Jamie
×
×
  • Create New...