You require the following program: http://www.kaitaia.com/dow
Check it out, it suits your needs.
Thanks
Main Topics
Browse All TopicsHi there!
I am running a small network with one main server acting as the internet gateway (It has a broadband internet connection) and several client PC's.
I need a way to disconnect the server from the internet (or the rest of the network it is providing internet access to) to avoid downloading over a certain amount.
I have a small program running which will run any other program or batch script after the amount is reached, but I can't think of a way to do it!
(Keeping my eye on the amount downloaded and connecting via remote desktop to disconnect the modem is not acceptable!)
I need either a program or a DOS batch command that will disconnect a network connection, any suggestions?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
You require the following program: http://www.kaitaia.com/dow
Check it out, it suits your needs.
Thanks
If you are using win2k or XP, you can create a batch file using netsh to change the ip address of your server. As long as the other computers on your net are set static ip, not dhcp. This will make the other computers on the net unable to get internet access due to improper gateway IP.
Make a batch file from this, and program your other program to run this batch file. Should work....
**************************
netsh interface ip set address name = "Local Area Connection" source = static addr = xxx.xxx.xxx.xxx mask = xxx.xxx.xxx.xxx
netsh interface ip set address name = "Local Area Connection" gateway = xxx.xxx.xxx.xxx gwmetric = 1
netsh interface ip set dns name = "Local Area Connection" source = static addr = xxx.xxx.xxx.xxx
netsh interface ip add dns name = "Local Area Connection" addr = xxx.xxx.xxx.xxx
netsh interface ip show config
pause
**************************
Business Accounts
Answer for Membership
by: NilknarfPosted on 2003-08-15 at 11:04:01ID: 9161519
A way to disable/enable the network card might be a way to do it, but as I said it needs to be a program or a batch file really.