suppress autoplay

2020-04-08 12:04发布

I need to suppress autoplay for the mass storage devices. This needs to be achieved programatically through a service/deamon running in the background.

I know it can be done by an application which opens a window and handles the "queryCancelAutoPlay" message sent by windows.

Can this be done without GUI.I have the guid/pid/vid for the device whose autoplay needs to be disabled.

2条回答
beautiful°
2楼-- · 2020-04-08 12:32

There is a registry entry that controls AutoRun:

HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer 

This can be set to disable AutoRun on specific device types, from technet:

NoDriveTypeAutoRun

Value   Meaning
0x1     Disables Autoplay on drives of unknown type.
0x4     Disables Autoplay on removable drives.
0x8     Disables Autoplay on fixed drives.
0x10    Disables Autoplay on network drives.
0x20    Disables Autoplay on CD-ROM drives.
0x40    Disables Autoplay on RAM drives.
0x80    Disables Autoplay on drives of unknown type.
0xFF    Disables Autoplay on all types of drives.
查看更多
神经病院院长
3楼-- · 2020-04-08 12:51

Sure. You can create a message-only window. That gives you a HWND without those annoying WM_PAINT messages etc. The other way is to use COM, IQueryCancelAutoplay

查看更多
登录 后发表回答