Re: How to program Enable, Disable drivers?




"Yajiv" <yajiv.vijay@xxxxxxxxx> wrote in message
news:e3c3dfaf-56e8-4ac2-81db-a5cdda4dc27e@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
On Oct 21, 7:39 pm, "Pegasus \(MVP\)" <I....@xxxxxxxxxx> wrote:
"Yajiv" <yajiv.vi...@xxxxxxxxx> wrote in message

news:57070505-fd34-4b5d-916e-a4e3184a560b@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
On Oct 21, 2:27 pm, "Pegasus \(MVP\)" <I....@xxxxxxxxxx> wrote:



"Yajiv" <yajiv.vi...@xxxxxxxxx> wrote in message

news:ecc7d34a-4bf5-4ab1-9f3a-e3b0dbce7d50@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

I am able to enable or disable usb controller through device
manager... Can I do it through program(vb) or registry?

Here is a batch file that will let you do it:
@echo off
goto Start
-------------------------------------------------
Use this batch file to enable or disable a device
from the Command Prompt.

Prerequisite: c:\Windows\devcon.exe

16.4.2006 FNL
-------------------------------------------------
:Start
setlocal enabledelayedexpansion
set Device=ALi PCI to USB Open Host Controller

if /i "%1"=="enable" goto go
if /i "%1"=="disable" goto go
echo Syntax: Device enable / disable
goto :eof

:go
set HWID=x
set count=0
set found=no

devcon hwids "PCI\*" > device.txt
for /F "tokens=*" %%* in (device.txt) do (
set /a count=!count! + 1
if /i "%%*"=="Name: %Device%" set found=yes& set count=1
if !found!==yes if !count!==3 set HWID=%%*
)
if %found%==yes (
echo HWID=!HWID!
devcon.exe %1 "!HWID!"
) else (
echo Device "%Device%" not found.
)
endlocal
del device.txt

Instructions:
- Copy & paste these lines into c:\Windows\Device.bat
- Adjust Line 13 to reflect the name of your USB controller.
- Download devcon.exe and store it in c:\Windows
(http://download.microsoft.com/download/1/1/f/11f7dd10-272d-4cd2-896f-...)
- Invoke the batch file in either of these modes:
Device enable
Device disable

Exactly what i wanted. But i have some issues.
The downloaded exe was a self extracting file.
Where should i put the extracted files?
=============
It does not matter in the least, as long as you follow my previous
instruction:
- Download devcon.exe and store it in c:\Windows.

I am getting an error "no device is disabled" at the end and the
device is not disabled.

but the line echo HWID=!HWID! is listing the right driver "pci\****"
=====================

Maybe the device you're trying to disable can't be disabled. You need to
explore this issue by using manual means, e.g. like so:
1. Open a Command Prompt.
2. Type these commands:
devcon hwids "PCI\*" > device.txt
notepad device.txt
3. Locate your device name.
4. Type this command:
devcon.exe disable xxx
where "xxx" is one of the several identifiers you find below the device name
in Step 3.


.



Relevant Pages

  • Re: How to program Enable, Disable drivers?
    ... goto Start ... Use this batch file to enable or disable a device ... setlocal enabledelayedexpansion ... echo Syntax: Device enable / disable ...
    (microsoft.public.windowsxp.general)
  • Re: Files deleted but free space doesnt increase
    ... The strange thing is that when I give you a self-logging batch file to ... echo %date% %time%> c:\test.txt ... command prompt to do that, ... deleting the files? ...
    (microsoft.public.windows.file_system)
  • Re: The simple way to disable/enable LAN from command prompt, with a batch file, using devcon.exe
    ... The problem can be overcome by giving the command ... Use this batch file to enable or disable a device ... setlocal enabledelayedexpansion ... echo Syntax: Device enable / disable ...
    (microsoft.public.win2000.networking)
  • Re: Script to MOVE file and leave a Shortcut to new location
    ... It also avoids re-creating any already existing shortcuts, so you could run it after your subsequent robocopy cleanup runs. ... @echo off ... Since your description about the source and target folders is rather vague, you may have to tweak the above batch file a little in order to suit your environment. ... You must test the batch file from the Command Prompt. ...
    (microsoft.public.windows.server.scripting)
  • Re: Change time by one hour
    ... current time from the command prompt, but I think this is beyond my ... You can get them to run this batch file: ... echo Setting the time to %NewTime% ...
    (microsoft.public.windowsxp.general)

Loading