Hello,
i want know ,how can i create a batch file which edit autorun file in every drive.thanks to all..Configuration: Windows XP
Firefox 3.0
var str drivelist ; set $drivelist = "X:/\tY:/\tZ:/"
while ($drivelist <> "")
do
# Get the next drive and create the file name by appending A.bat .
var str file, drive ; wex "1" $drivelist > $drive ; set $file = $drive+"A.bat"
# Insert the first line into this bat file.
var str content ; cat $file > $content
lin "1" "THIS IS A COMMENT\n" $content > $content
echo $content > { echo $file }
done