Networking Forums

Networking Forums > Network Hardware > Home Networking > Scripts

Reply
 
 
Carl
Guest
Posts: n/a

 
      10-23-2004, 05:35 PM
Is there anyway i can create the following script bat files?

A script to change the location of the My Documents to one central place.

A script to enable/disable certain users internet access, if they have
accessed inappropriate site and i want to stop access to the internet?

TIA

Carl


 
Reply With Quote
 
 
 
 
Justin Thompson
Guest
Posts: n/a

 
      10-23-2004, 06:53 PM
On Sat, 23 Oct 2004 17:35:03 GMT, "Carl"
<(E-Mail Removed)> wrote:

>Is there anyway i can create the following script bat files?
>
>A script to change the location of the My Documents to one central place.
>
>A script to enable/disable certain users internet access, if they have
>accessed inappropriate site and i want to stop access to the internet?
>
>TIA
>
>Carl
>


Think you can do the first bit in windows (Looks like I can in XP at
least)

If you open "my computer", in left hand pane you will see "other
places" option of "my documents", right click on it, select properties
and you will see an option to move it.

Cant hep with second bit

HTH
Cheers


 
Reply With Quote
 
NoSpam
Guest
Posts: n/a

 
      10-24-2004, 11:11 AM
Carl wrote:
> Is there anyway i can create the following script bat files?


Does it have to be a .bat file? The following


>
> A script to change the location of the My Documents to one central place.


Does it have to be a .bat file? The following .reg file would do it,
setting the my documents folder for the current user to U:\.. (Beware
word wrap in the following two examples)

====================
REGEDIT4

[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Explorer\Shell
Folders]
"Personal"="U:\\"
====================

or you could put it into a batch file I guess by doing this..

====================
@echo off
echo REGEDIT4 > temp.reg
echo. >>temp.reg
echo
[HKEY_CURRENT_USER\Software\Microsoft\Windows\Curre ntVersion\Explorer\Shell
Folders] >>temp.reg
echo "Personal"="U:\\" >>temp.reg
start /w regedit /s temp.reg
del temp.reg
====================

There's probably a tidier way, I'm sure someone else will suggest something!

> A script to enable/disable certain users internet access, if they have
> accessed inappropriate site and i want to stop access to the internet?


Can't suggest anything for this I'm afraid, never had to do it. I use a
hardware router to block Internet access to all machines but my proxy,
then that accesses the Internet.
 
Reply With Quote
 
David Wade
Guest
Posts: n/a

 
      10-24-2004, 01:39 PM
"Carl" <(E-Mail Removed)> wrote in message
news:bDwed.1033$(E-Mail Removed)...
> Is there anyway i can create the following script bat files?
>
> A script to change the location of the My Documents to one central place.
>


This can be set via a logon profile, but you need a W2K server or SAMBA.

> A script to enable/disable certain users internet access, if they have
> accessed inappropriate site and i want to stop access to the internet?
>


Usual way to do this is with a proxy server..

> TIA
>
> Carl
>
>



 
Reply With Quote
 
ian
Guest
Posts: n/a

 
      10-24-2004, 09:30 PM

"Carl" <(E-Mail Removed)> wrote in message
news:bDwed.1033$(E-Mail Removed)...
> Is there anyway i can create the following script bat files?
>
> A script to change the location of the My Documents to one central place.
>
> A script to enable/disable certain users internet access, if they have
> accessed inappropriate site and i want to stop access to the internet?
>
> TIA
>
> Carl
>
>


How are you set up? Lots of users sharing one XP box? Or one machine
acting as a server and a domain running? (unlikely in home networking
admittedly...)

If you have several users using one XP box, you could try amending
permissions eg. on iexplore.exe, to deny them access. Could get messy tho,
you;d have to write down everything you changed to be able to back it out
again, and it's not a script...

Does something like 'net nanny' (or similar) have options to block certain
users?

If you use ICS (or similar) are there any security options on ICS (eg. don't
let x y or z connect...) to be set on the gateway machine?

Ian E


 
Reply With Quote
 
Domminic Hyde
Guest
Posts: n/a

 
      11-06-2004, 08:16 AM
Carl wrote:
> Is there anyway i can create the following script bat files?
>
> A script to change the location of the My Documents to one central place.
>
> A script to enable/disable certain users internet access, if they have
> accessed inappropriate site and i want to stop access to the internet?
>
> TIA
>
> Carl
>
>

From your post I gather you use Windows but you don't say how you
connect to the net but --
The best way of controling web access is to put everthing through a
proxy server and block direct access to the internet fom the desktop pcs.

For Windows PCs Proxomitron (now called Naoko)--- see
http://www.proxomitron.info/ should do the job,
http://www.computercops.biz as help forums for Proxo but it is real
easy to setup.

This only one of any number of free filtering proxies but it is th most
suitable for DIY home use on a Windows Pc .

Another method is to change to a firewall such as Kerio which allows
remote administrator access.
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
logon scripts? Linn Kubler Windows Networking 4 08-22-2005 09:19 PM
Logon Scripts over VPN Charlie Saliba Windows Networking 5 07-25-2005 09:28 PM
Login Scripts =?Utf-8?B?Um9zZQ==?= Windows Networking 1 03-17-2005 09:08 PM
Scripts Carl04 Home Networking 2 09-28-2004 05:35 PM
login scripts andy Windows Networking 0 08-12-2004 12:39 PM



1 2 3 4 5 6 7 8 9 10 11