November 24, 200916 yr Hello thanks for looking. I'm having problems with an AutoIt script and was hoping someone could degub the script. I tried reading the manual on the website but it appears to be down.I know this is the unnattended section, but it seems like there are alot of people here with knowledge on how to get AutoIt working.Here is the script.;Define the DVD drive letterGLOBAL $DVDDRIVE = IniRead("configure.ini", "section1", "key", "NotFound");Define the path to store the DVD filesGLOBAL $RIPFOLDER = IniRead("configure.ini", "section2", "key", "NotFound");Wait until drive is readyWhile DriveStatus( $DVDDRIVE ) = "NOTREADY"WEndWhile DriveStatus( $DVDDRIVE ) = "UNKNOWN"WEnd;Once drive is readyIf DriveStatus( $DVDDRIVE ) = "READY" Then RunWait("AnyTool2.exe ripraw " $DVDDRIVE " " $RIPFOLDER);When doneCDTray("G:", "open")and here is the code for configure.ini[section1]Key=G:[section2]Key=E:\DVDRip
November 26, 200916 yr If DriveStatus( $DVDDRIVE ) = "READY" Then RunWait("AnyTool2.exe ripraw " & $DVDDRIVE & " " & $RIPFOLDER)
Create an account or sign in to comment