I work in an IT store that sees pretty unpleasant viruses appearing on some computers. We are working with an autorun script that will run the malware removal tool (RKill) when we insert a USB or CD (preferably USB). We want to run the tool as soon as a USB or CD is inserted without a UAC popup, anyway. Our second choice is to open Autorun options, even on PCs that have been blocked by a FBI virus. We have autorun.inf, a byte that calls .exe and .exe for the tool that we want to run in the root of the USB or CD. We tried to find the solution found here , but it did not work.
Below is the code for autorun.inf and rkill.bat. autorun.inf:
[autorun] open=rkill.bat Where the autorun.bat file reads: start rkill.exe
rkill.bat:
start rkill.exe
I understand that there can be no reliable way to do this, but any help would be greatly appreciated.
source share