+ Post New Thread
Results 1 to 11 of 11
Windows Thread, Help Disabling Integrated webcam in Technical; Hey All, We have some of the lovely new RM 1 v3 machines in and they come with an integrated ...
  1. #1
    Luke_T's Avatar
    Join Date
    Mar 2008
    Location
    St Albans, Herts
    Posts
    330
    Thank Post
    53
    Thanked 17 Times in 16 Posts
    Rep Power
    14

    Help Disabling Integrated webcam

    Hey All,

    We have some of the lovely new RM 1 v3 machines in and they come with an integrated webcam which the kids and staff have been making remarkably good use of. However some of them do abuse it ... so we're looking for a way of managing it remotely, ie: disable / enable as required.

    At the moment we can enable and disable the students access to the webcam software, but when we do this Windows XP brings up it's own utility in: My Computer - Scanners & Cameras - USB Video Device. This still llows them access to the webcam and taking photos.

    Hoping someone can help me with:

    (a) a program that will enable / disable them remotely on a whim, either a management suite or just general remote hardware disabling.
    (b) directions to where in the windows shell this functionality lies so that we can create a reg frag we can apply on restarts.

    This may all be pipe dream until we Vista and GPO control of USB devices.

    Thanks for any help!

    Luke

  2. IDG Tech News
  3. #2
    HullFC's Avatar
    Join Date
    Sep 2009
    Posts
    23
    Thank Post
    3
    Thanked 8 Times in 7 Posts
    Rep Power
    9
    Quote Originally Posted by Luke_T View Post
    Hey All,

    We have some of the lovely new RM 1 v3 machines in and they come with an integrated webcam which the kids and staff have been making remarkably good use of. However some of them do abuse it ... so we're looking for a way of managing it remotely, ie: disable / enable as required.

    At the moment we can enable and disable the students access to the webcam software, but when we do this Windows XP brings up it's own utility in: My Computer - Scanners & Cameras - USB Video Device. This still llows them access to the webcam and taking photos.

    Hoping someone can help me with:

    (a) a program that will enable / disable them remotely on a whim, either a management suite or just general remote hardware disabling.
    (b) directions to where in the windows shell this functionality lies so that we can create a reg frag we can apply on restarts.

    This may all be pipe dream until we Vista and GPO control of USB devices.

    Thanks for any help!

    Luke
    I don't have any of these to try this in but I run something like regmon (microsoft/sysinternals) or regshot (sourceforge) then check the advanced tab on the web-cams property pages in device manager for an off switch. If that exists then switch it off and run regmon/regshot again to find out what has altered.

    My only thought is that it may need a reboot to detect this change (unless anyone has an easy way of running a hardware detect?)

    Shaun

  4. #3

    Join Date
    Feb 2006
    Location
    Derbyshire
    Posts
    1,381
    Thank Post
    181
    Thanked 211 Times in 171 Posts
    Rep Power
    62
    A little bit of reading up on the DevCon command might sort this - you could actually disable the webcam rather than the software. IIRC it works over the network too

    http://support.microsoft.com/kb/311272

  5. Thanks to OutToLunch from:

    HullFC (30th September 2009)

  6. #4


    Join Date
    Mar 2009
    Location
    Leeds
    Posts
    4,741
    Thank Post
    169
    Thanked 641 Times in 554 Posts
    Rep Power
    204
    dont suppose the camera has a service you could just stop via ad?

  7. #5

    Join Date
    Jul 2009
    Posts
    383
    Thank Post
    36
    Thanked 70 Times in 59 Posts
    Rep Power
    45
    Quote Originally Posted by OutToLunch View Post
    A little bit of reading up on the DevCon command might sort this - you could actually disable the webcam rather than the software. IIRC it works over the network too

    The DevCon command-line utility functions as an alternative to Device Manager
    this was how one of my mates disabled the webcam in a laptop.

    it also worked for disabling a soundcard in a desktop machine.

    and yes, it was deployed over an AD network

  8. #6
    Luke_T's Avatar
    Join Date
    Mar 2008
    Location
    St Albans, Herts
    Posts
    330
    Thank Post
    53
    Thanked 17 Times in 16 Posts
    Rep Power
    14
    Thanks for the replies ... I'll look into it soon as and post with feedback on what worked & how.

  9. #7

    ZeroHour's Avatar
    Join Date
    Dec 2005
    Location
    Scotland
    Posts
    5,826
    Blog Entries
    1
    Thank Post
    785
    Thanked 1,137 Times in 682 Posts
    Rep Power
    320
    Also you could look at group policy preferences as they can enable/disable devices using GP for free.
    Not sure how flexible it is but it may be able to help and its MS ware for free.

  10. #8

    Join Date
    Nov 2007
    Location
    Staffordshire
    Posts
    23
    Thank Post
    1
    Thanked 0 Times in 0 Posts
    Rep Power
    0
    Seen: RM Communities

    I recently made a package to do the exact same thing (Disable RM V3 webcams so have the correct PID for the device)

    Instructions to create the package:

    1) Download DevCon from The DevCon command-line utility functions as an alternative to Device Manager and extract to a dedicated folder

    2) Create a file called "Driver_Disable.cmd" with the following contents:
    COPY devcon.exe C:\WINDOWS\system32
    devcon disable *PID_5606

    3) Create a file called "Driver_Enable.cmd" with the following contents:
    devcon enable *PID_5606
    DEL C:\WINDOWS\system32\devcon.exe

    4) Create a file called "Disable RM One v3 Webcam.ini" with the follwing contents:
    [Package]
    Description=Disables the Webcam device using MS DevCon.exe
    Version=1.0.0.0
    OS=5.1WS
    ExeFile=Driver_Disable.cmd
    UninstallExeFile=Driver_Enable.cmd
    Addcommand= /passive /quiet /norestart
    UninstallCommand= /passive /quiet /norestart

    5) Import into the RMMC as a CC3 package

    This package copies over the file devcon.exe to the local %systemroot%\system32 folder and runs a command from this
    which disables the device driver. On un-assignment this re-enables the device and deletes the devcon.exe file.

    Works a treat and you can simply change the PID to reflect whatever device you want to disable so is a nice template package also.

    If you're assigning this on CC4 then you need to make sure you have made a small registry change to all computers before this will work. See here for further details

    All files created and downloaded above just sit in the root folder so you should have devcon.exe, Driver_Disable.cmd & Driver_Enable.cmd together.

    Also check on the station your testing on whether the reg fragment has actually been applied before assigning out the package.

    The tell tail sign for the cmd/bat issue is the error:
    After Package Failue Reason : EXE error, check Event Viewer on machine for more detail: Executable package operation failed to complete : 1
    in the latest log file in C:\Program Files\Research Machines\Network Management\LogFiles\Service Host (RM Installation Agent) TOC.html so have a quick look there too.

    Oh and check the PID is the same on your computers under device manager....Should be the same but worth a check

  11. #9

    Join Date
    Feb 2011
    Posts
    68
    Thank Post
    6
    Thanked 17 Times in 12 Posts
    Rep Power
    7
    Hi,

    i know this thread is a little old, i stumbled up on it while trying to do the same thing. I found a way of disabling the integrated webcam on windows 7 without using devcon and thought it might be of some use. It certainly works with RM integrated camera and is done by tweaking the registry. Here is a link to disable the integrated webcam. Includes an adm template.

    hope it helps others.

  12. Thanks to Chunks_ from:

    d-taylor (20th May 2013)

  13. #10

    Join Date
    Mar 2009
    Location
    Norton, N. Yorks
    Posts
    83
    Thank Post
    33
    Thanked 8 Times in 8 Posts
    Rep Power
    10
    Just implemented this ADM template, nice quick fix! Thanks!

  14. #11

    Join Date
    Feb 2011
    Posts
    68
    Thank Post
    6
    Thanked 17 Times in 12 Posts
    Rep Power
    7
    Glad i could be of help !

SHARE:
+ Post New Thread

Similar Threads

  1. IP Address change in AD Integrated domain
    By albertwt in forum Windows Server 2000/2003
    Replies: 5
    Last Post: 18th June 2009, 12:18 AM
  2. Rebuild AD integrated DNS - Has anyone done it
    By SYNACK in forum Windows Server 2000/2003
    Replies: 6
    Last Post: 3rd June 2009, 11:53 PM
  3. Kaliedos - Windows Integrated Authentication
    By steele_uk in forum Virtual Learning Platforms
    Replies: 3
    Last Post: 25th July 2008, 11:49 AM
  4. Exchange Integrated Windows Authentication
    By adamf in forum Windows
    Replies: 7
    Last Post: 17th April 2008, 11:06 AM
  5. Replies: 19
    Last Post: 6th April 2007, 12:22 PM

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •