Question:
Sometimes cd autorun are very annoying. How to disable?

Answer:
Sure you can do this in many way, the easy way is dont leave cd inside. :D
Using delphi, here the way:

procedure TForm1.SetCDAutoRun(AAutoRun: Boolean);
const
DoAutoRun: array[Boolean] of Integer = (0, 1);
var
Reg: TRegistry;
begin
try
Reg := TRegistry.Create;
Reg.RootKey := HKEY_LOCAL_MACHINE;
if Reg.KeyExists('System\CurrentControlSet\Services\Class\CDROM') then
begin
if Reg.OpenKey('System\CurrentControlSet\Services\Class\CDROM', False) then
Reg.WriteBinaryData('AutoRun', DoAutoRun[AAutoRun], 1);
end
finally
Reg.Free;
end;
ShowMessage('Your settings will take effect on the next reboot of Windows.');
end;


1 Response so far.

  1. tikitodo says:

    I prefer the combination of backups and recovery services, when dealing with sql database repair software

Post a Comment

Thank you for your comment.

Any request and idea are welcome.

CLICK TO REGISTER