That batch can be easily converted to pure AHK code.
Approach is to burn all files from one folder without using Nero's Frontend.
You've to change ...
a) the drivename
b) the drivespeed
c) the destination folder
Code has been taken from PC-Magazin 08/04 p. 141
Quote: | cls
@echo off
C:\Programme\Ahead\Nero\nerocmd.exe --write --drivename d --speed 16 --real --tao --disable_eject --underrun_prot --iso backup --create_iso_fs "F:\downloads\*.*" --recursive --close_session --verify --nero_log_timestamp --no_user_interaction
pause
exit |
That batch can be easily converted to pure AHK code.
Approach is to burn all files from one folder without using Nero's Frontend.
You've to change ...
a) the drivename
b) the drivespeed
c) the destination folder
Code has been taken from PC-Magazin 08/04 p. 141 |
|