I work for an IT shop that sees some computers come in with rather nasty viruses. We are working an autorun script that will run a malware killing tool (RKill) when we insert a USB or CD (preferably USB.) We want to run the tool as soon as the USB or CD is inserted without having UAC popup, ideally anyway. Our second choice is to have it open the Autorun options, even on PCs that have been locked down a la FBI virus. We have autorun.inf, a .bat that calls a .exe, and the .exe for the tool we want to run in the root of the USB or CD. We have tried the solution found here, but that didn't work.
The code for autorun.inf and rkill.bat are below.
autorun.inf:
[autorun]
open=rkill.bat
Where the autorun.bat file reads:
start rkill.exe
rkill.bat:
start rkill.exe
I understand that there may not be a reliable way to do this, but any help would be greatly appreciated.