Instructional exercises on making Autorun.inf documents
Hello everyone ! Here is the most smoking thing for everybody. You more likely than not seen a few applications changing the symbols for your drive or you have recently seen that at whatever point you embed any compact disc/dvd into the drive, without doing anything, an application begins executing that can be any blaze record or can be any html document. DO you know how it happens? It's only a straightforward little data document, which does the enchantment. It is named as "autorun.inf". This is the document which attempts to make any drive autorun. Yes , even you can make your pen drive auto run or can make autorun compact discs effortlessly.
Presently lets begin with the document substance of the autorun.inf
Open a scratch pad and begin composing the accompanying code in the notebook:
Code:
[autorun]
open=any_exe_or_batch_file
icon=any_icon_file_for_your_drive
Label=name_of_the_drive
I have said the fundamentals of the autorun.inf and there are some best in class things you can do with the autorun.inf. Like you can make your own orders for the right tap on your drive.
Code:
shell/custom_option/command="any_exe_or_batch_file_to_run"
for instance, you can reset the work of "investigate" capacity of the right snap menu on the drive.
Assume you need to execute a document at whatever point you right tap the drive and select the alternative "explore",then the summon would be as per the following:
Code:
shell/investigate/command="desired_exe_file"
In the event that you need to make any custom occasion then the code would be as per the following:
Code:
shell/my_event/command="any_exe_or_batch_file"
One alternative thing more can be done.Instead of utilizing "open" code, we can utilize another catchphrase "shellexecute". all things considered the code will be:
Code:
shellexecute="any_exe_or_batch_file"
Note : File must be spared as "autorun.inf" and ought to be put away at the foundation of the drive.Second thing Open occasion will work, at whatever point you double tap the drive to open for settled drives though on account of removable drives, when you embed the drive,Open occasion will work.
Hello everyone ! Here is the most smoking thing for everybody. You more likely than not seen a few applications changing the symbols for your drive or you have recently seen that at whatever point you embed any compact disc/dvd into the drive, without doing anything, an application begins executing that can be any blaze record or can be any html document. DO you know how it happens? It's only a straightforward little data document, which does the enchantment. It is named as "autorun.inf". This is the document which attempts to make any drive autorun. Yes , even you can make your pen drive auto run or can make autorun compact discs effortlessly.
Presently lets begin with the document substance of the autorun.inf
Open a scratch pad and begin composing the accompanying code in the notebook:
Code:
[autorun]
open=any_exe_or_batch_file
icon=any_icon_file_for_your_drive
Label=name_of_the_drive
I have said the fundamentals of the autorun.inf and there are some best in class things you can do with the autorun.inf. Like you can make your own orders for the right tap on your drive.
Code:
shell/custom_option/command="any_exe_or_batch_file_to_run"
for instance, you can reset the work of "investigate" capacity of the right snap menu on the drive.
Assume you need to execute a document at whatever point you right tap the drive and select the alternative "explore",then the summon would be as per the following:
Code:
shell/investigate/command="desired_exe_file"
In the event that you need to make any custom occasion then the code would be as per the following:
Code:
shell/my_event/command="any_exe_or_batch_file"
One alternative thing more can be done.Instead of utilizing "open" code, we can utilize another catchphrase "shellexecute". all things considered the code will be:
Code:
shellexecute="any_exe_or_batch_file"
Note : File must be spared as "autorun.inf" and ought to be put away at the foundation of the drive.Second thing Open occasion will work, at whatever point you double tap the drive to open for settled drives though on account of removable drives, when you embed the drive,Open occasion will work.
No comments:
Post a Comment