PC Review


Reply
Thread Tools Rate Thread

Disable all communications...

 
 
Jake
Guest
Posts: n/a
 
      8th May 2009
Hi,

I need to temporarily disable all possibilities to communicate
externally to/from a computer.

That is, no cable based and wireless network, bluetooth and IRDA, all
kinds of dialup / GSM 3G cards etc. However USB must work (memory stick
needed).

Does it exist a centralized point in windows (all XP and vista editions)
to disable these modes of communications?

Preferably just in memory and if possible not by modifying registry...

Thanks a lot for hints on this issue....

regards

Jake
 
Reply With Quote
 
 
 
 
Tim Meddick
Guest
Posts: n/a
 
      8th May 2009
Jake,
Just make sure the network connection[s] (in Control Panel > Network
Connections) you use to connect to the outside world is: status =
'disconnected' That is ALL you need to do if you have no other forms of
connection (as you say you have not), like Bluetooth or infrared adaptors
attached.


==


Cheers, Tim Meddick, Peckham, London.


"Jake" <(E-Mail Removed)> wrote in message
news:%23%(E-Mail Removed)...
> Hi,
>
> I need to temporarily disable all possibilities to communicate externally
> to/from a computer.
>
> That is, no cable based and wireless network, bluetooth and IRDA, all
> kinds of dialup / GSM 3G cards etc. However USB must work (memory stick
> needed).
>
> Does it exist a centralized point in windows (all XP and vista editions)
> to disable these modes of communications?
>
> Preferably just in memory and if possible not by modifying registry...
>
> Thanks a lot for hints on this issue....
>
> regards
>
> Jake



 
Reply With Quote
 
Tim Meddick
Guest
Posts: n/a
 
      8th May 2009
Jake,
P.S. If you have only one or two connections listed in 'Network
Connections' then you can right-click and choose 'disable' which will
prevent that connection from becoming active. Sometimes, connections are
set to connect automatically when needed and disabling temporarily will
prevent this. However, if there are a lot of connections listed, remember,
you will have to right-click > 'enable' on them ALL before you can connect
to the outside world again.


==


Cheers, Tim Meddick, Peckham, London.


"Tim Meddick" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Jake,
> Just make sure the network connection[s] (in Control Panel >
> Network Connections) you use to connect to the outside world is: status =
> 'disconnected' That is ALL you need to do if you have no other forms of
> connection (as you say you have not), like Bluetooth or infrared adaptors
> attached.
>
>
> ==
>
>
> Cheers, Tim Meddick, Peckham, London.
>
>
> "Jake" <(E-Mail Removed)> wrote in message
> news:%23%(E-Mail Removed)...
>> Hi,
>>
>> I need to temporarily disable all possibilities to communicate externally
>> to/from a computer.
>>
>> That is, no cable based and wireless network, bluetooth and IRDA, all
>> kinds of dialup / GSM 3G cards etc. However USB must work (memory stick
>> needed).
>>
>> Does it exist a centralized point in windows (all XP and vista editions)
>> to disable these modes of communications?
>>
>> Preferably just in memory and if possible not by modifying registry...
>>
>> Thanks a lot for hints on this issue....
>>
>> regards
>>
>> Jake

>
>



 
Reply With Quote
 
Jake
Guest
Posts: n/a
 
      8th May 2009
Tim Meddick skrev:
> Jake,
> Just make sure the network connection[s] (in Control Panel > Network
> Connections) you use to connect to the outside world is: status =
> 'disconnected' That is ALL you need to do if you have no other forms of
> connection (as you say you have not), like Bluetooth or infrared adaptors
> attached.


Hi Tim,

Sorry for not expressing myself good enough. I need to
*programmatically* disable any connected devices and prevent
(re)connection(s) of any such device as long as my script / service is
runing.

jake
 
Reply With Quote
 
Tim Meddick
Guest
Posts: n/a
 
      8th May 2009
Jake, you could try this; make a batchfile of the following and this should
then toggle disabling of your connection.


------------- copy between lines -------------

@echo off

if EXIST "C:\Documents and Settings\All Users\Application
Data\Microsoft\Network\Connections\Pbk\disabled.bak" goto ENABLE

if NOT EXIST "C:\Documents and Settings\All Users\Application
Data\Microsoft\Network\Connections\Pbk\rasphone.pbk" goto ERROR

ren "C:\Documents and Settings\All Users\Application
Data\Microsoft\Network\Connections\Pbk\rasphone.pbk" disabled.bak

echo.

echo Connection Disabled.

goto :EOF

:ENABLE

ren "C:\Documents and Settings\All Users\Application
Data\Microsoft\Network\Connections\Pbk\disabled.bak" rasphone.pbk

echo.

echo Connection Enabled.

goto :EOF

:ERROR

echo.

echo Failure to locate file: rasphone.pbk - exiting


------------- copy between lines -------------

Please note that some lines may be subject to line-wrap by the newsreader
you are using. I have kept lines apart by inserting a blank line between
each so any that appear together are really part of a single line. Please
ensure these lines are kept as single lines.


==


Cheers, Tim Meddick, Peckham, London. :-)


"Jake" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Tim Meddick skrev:
>> Jake,
>> Just make sure the network connection[s] (in Control Panel >
>> Network Connections) you use to connect to the outside world is: status =
>> 'disconnected' That is ALL you need to do if you have no other forms of
>> connection (as you say you have not), like Bluetooth or infrared adaptors
>> attached.

>
> Hi Tim,
>
> Sorry for not expressing myself good enough. I need to *programmatically*
> disable any connected devices and prevent (re)connection(s) of any such
> device as long as my script / service is runing.
>
> jake



 
Reply With Quote
 
Jake
Guest
Posts: n/a
 
      8th May 2009
BeeCeeBee wrote:

> What are you trying to accomplish?
>
>


Run a small script / application on the students' computers during tests
(with a visual indication onscreen) to ensure that *all* communication
is disabled.

Clever ideas welcome :-)

Jake
 
Reply With Quote
 
Jake
Guest
Posts: n/a
 
      9th May 2009
Tim Meddick skreiv:
> Jake, you could try this; make a batchfile of the following and this should
> then toggle disabling of your connection.
>


Wouldn't this only disable dialup connections...?

jake
 
Reply With Quote
 
Jake
Guest
Posts: n/a
 
      9th May 2009
BeeCeeBee skreiv:
> If these are individually owned machines such as laptops, good luck and
> be careful.
>
> The best thing to do in that case is to disable the source such as any
> wifi connection that may exist. Obviously if they are wired, just detach
> them physically. There are just to many ways to cheat if there is
> access to the internet physically available.
>
>

Hi,

Actually I only meant those communication modes used to share
information *between* computers, and it can be shortened to non-wired
ones, such as wireless networking, bluetooth, 3G (mobile) cards and
maybe IRDA.

The needed situation is for pupils using *their own* notebook computers
during tests and exams. I hoped there was a 'soft spot' in windows
common for these communication types which could be easily switched on /
off. If so, I could have a small applet running at each computer
displaying a small unique visible 'always-stay-on-top' stamp-size window
confirming that this 'communication bottleneck' was actually switched off.

regards jake
 
Reply With Quote
 
HeyBub
Guest
Posts: n/a
 
      9th May 2009
Jake wrote:
> BeeCeeBee skreiv:
>> If these are individually owned machines such as laptops, good luck
>> and be careful.
>>
>> The best thing to do in that case is to disable the source such as
>> any wifi connection that may exist. Obviously if they are wired,
>> just detach them physically. There are just to many ways to cheat
>> if there is access to the internet physically available.
>>
>>

> Hi,
>
> Actually I only meant those communication modes used to share
> information *between* computers, and it can be shortened to non-wired
> ones, such as wireless networking, bluetooth, 3G (mobile) cards and
> maybe IRDA.
>
> The needed situation is for pupils using *their own* notebook
> computers during tests and exams. I hoped there was a 'soft spot' in
> windows common for these communication types which could be easily
> switched
> on / off. If so, I could have a small applet running at each computer
> displaying a small unique visible 'always-stay-on-top' stamp-size
> window confirming that this 'communication bottleneck' was actually
> switched off.
> regards jake


Pencil and paper tests?


 
Reply With Quote
 
Tim Meddick
Guest
Posts: n/a
 
      9th May 2009
I got the idea you were just using a USB modem. What connection do you want
to disable in particular?


==


Cheers, Tim Meddick, Peckham, London.


"Jake" <(E-Mail Removed)> wrote in message
news:OROXW%(E-Mail Removed)...
> Tim Meddick skreiv:
>> Jake, you could try this; make a batchfile of the following and this
>> should then toggle disabling of your connection.
>>

>
> Wouldn't this only disable dialup connections...?
>
> jake



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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
Disable digitally sign communications on Windows 2003 DC Domain po Emeric Thibaud Microsoft Dot NET 1 10th Nov 2008 01:38 PM
WAN communications Andy Baker Microsoft Dot NET Compact Framework 7 16th Feb 2007 04:07 PM
USB Communications John Wright Microsoft VB .NET 0 21st Jul 2006 06:43 PM
UDP Communications Dan Microsoft C# .NET 3 17th Sep 2004 01:38 AM
no communications Reggie Windows XP Internet Explorer 1 11th May 2004 04:21 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:57 PM.