Batch file for writing to a CDROM

  • Thread starter Thread starter Stephen Ford
  • Start date Start date
S

Stephen Ford

XP Pro SP2

I want to write a batch file to write files to a CD-RW drive instead of
using the WinExplorer GUI option "SendTo" + "Write selected files".

Regards
Stephen Ford
 
Stephen Ford said:
XP Pro SP2

I want to write a batch file to write files to a CD-RW drive instead of
using the WinExplorer GUI option "SendTo" + "Write selected files".

Regards
Stephen Ford

Here is an example for a machine with Nero installed:

@echo off
"c:\program files\ahead\nero\nerocmd.exe" @c:\tools\nero.scr

Nero.scr:
--write
--real
--drivename G
--speed 32
--disable_eject
--iso "9 January 2006"
--enable_abort
--underrun_prot
--create_iso_fs
--recursive
--Close_Session
d:\Ledger
d:\Documents
 
Here is an example for a machine with Nero installed:
@echo off
"c:\program files\ahead\nero\nerocmd.exe" @c:\tools\nero.scr

Nero.scr:
--write
--real
--drivename G
--speed 32
--disable_eject
--iso "9 January 2006"
--enable_abort
--underrun_prot
--create_iso_fs
--recursive
--Close_Session
d:\Ledger
d:\Documents

Good example; Helpful. Thanks.

Stephen
 
Back
Top