; by Rarst ; http://www.rarst.net/script/dumping-multiply-discs-to-hard-drive-with-autoit/ $disc = "h:\" $dir = "k:\" $mask = "*.*" While 1 If DriveStatus($disc)="READY" Then $search = FileFindFirstFile($disc & $mask) $file = FileFindNextFile($search) If Not @error And Not FileExists($dir & $file) Then FileCopy($disc & $mask, $dir) Beep() EndIf FileClose($search) EndIf Sleep(1000) WEnd Exit