Implementing an auto run batch tool on a removable disk
How do I write code to implement an auto run batch tool for my removable disks in order to enable an automatic upload once I load my removable to a machine?
How do I write code to implement an auto run batch tool for my removable disks in order to enable an automatic upload once I load my removable to a machine?
For implementing an auto run batch tool for your removable disks at first you need to create a blank autorun.inf file in the root directory of the removable disk. Then open notepad and paste this code:
Â
[autorun]
OPEN=PDPrvDisk.exe /minimize /path:image.dpd /symbol:Z /RD
ICON=RunMe.exe
ACTION=Mount Private Disk
After pasting this code into your notepad, you need to save it in .exe format. After saving this auto run batch tool will be enabled in your removable disk.
Â
Â
Â