Well I'm not feeling all that excited about tackling a quicker way...shouldn't be much code but I'm still waking up. You can use the following autoit code to grab the label and serial for a given disc. $var1 = DriveGetSerial( "j:\" ) MsgBox(4096, "Serial Number: ", $var1) $var2 = DriveGetLabel( "j:\" ) MsgBox(4096,"Volume Label: ",$var2) Of course editing it to match your actual drive. Really should only need the serial...ideally you could write a simple program that would check what the current serial of the disc in the drive then prompt you for a name...this could then write a simple ini file per disc that could be used by a loader to prompt you if serials don't match...and then when they do...fire up the Emu. My thoughts tho *Update* Okay I've attached an executable and source code that will create your ini files as I suggested.