@echo off GOTO START =========================================================================== Script: readISO.bat Author: original script by SamuriHL http://forum.slysoft.com/showpost.php?p=126873&postcount=185 Version: 0.1 (August 2008) Script: MakeISO.bat Modified by Scat at http://forums.sagetv.com/forums/showthread.php?t=40592 Version: 0.2 (April 2009) Purpose: Automated Make a DVD ISO and save to hard drive, convert a DVD to a ISO and copy to hard drve for use in SageTV. =========================================================================== Caveats to the user: Use at your own risk. While this script has been tested on my PC it is recommended you test in your environment before using. ImgBurn is not included with this script. You'll need to search for ImgBurn and find a free download. This script is not intended to be used for anything unlawful and is to be used & distributed for educational purposes If you use or modify this script, give proper credit to the original authors noted above. =========================================================================== :START rem Enter your DVD drive letter below set SRC=q: rem Enter your target folder to store the ISO image in below set DEST=H:\ISO_Rips rem If your target folder doesn't exist it will be created IF NOT EXIST %DEST% MD %DEST% rem Set the path to ImgBurn below set PathToImgBurn=C:\Program Files (x86)\ImgBurn start /d"%PathToImgBurn%\" ImgBurn.exe /MODE READ /SRC %SRC% /DEST %DEST%\[DISC_LABEL].iso /CLOSESUCCESS /START