I made a wrapper to work with NullDC, which work fine on 5 tested computers. OBS works only with nullDC_1.0.3_nommu.exe. If you are using some other version, amend according to that one. First have a look on gameex emulator config file. Enabled=True STARTPAGENAME=[Console] Sega Dreamcast (nullDC) TITLETEXT=Sega Dreamcast StartPageLogo=[Console] Sega Dreamcast {NTSC} ROMFilter=*.cdi;*.gdi;*.nrg;*.mds RomPath=J:\emulator\sega\dreamcast\roms RomsInFolders= SnapPath= TitlePath= BoxPath= CartPath= ManualPath= ControlPanelPath= InstructionsPath= WorkingPath=j:\emulator\sega\dreamcast\ MapKeys=True WaitBeforeKeys= SendKeys= ReplaceDash=False ReplaceUnder=True Capitals=False RemoveBrackets=True ShowDesktop=True Debug=False MAPFile= AlsoLaunch= Command=start.ahk "[ROMPath]\[RomFile]" LaunchBefore= LaunchAfter= configFile= ExcludedFiles= CustomBackground= PlayMusic=False DontShowInfo= PlaySelectionMusic=False SelectionMusicFolder= PCGame=False DATABASE= UseDbName= GamesIn7Zips=False MergeSets= PlayInScreenSaver=False ShowMostPlayed=True RandomMostPlayed=True CDCheck=False CDCheckFile= CustomArtName1= CustomArtPath1= CustomArtName2= CustomArtPath2= CustomArtName3= CustomArtPath3= [GENERAL] DumbyValue= Here are the start.ahk file (autoscriptwriter file, you need this software to run this) NumParams = %0% Param1 = %1% Param2 = %2% Param3 = %3% Run, nullDC_1.0.3_nommu.exe, j:\emulator\sega\dreamcast\chankastAlpha025\chankastAlpha025\ WinWait, nullDC v1.0.3 (built Aug 20 2008@10:00:16), IfWinNotActive, nullDC v1.0.3 (built Aug 20 2008@10:00:16), , WinActivate, nullDC v1.0.3 (built Aug 20 2008@10:00:16), WinWaitActive, nullDC v1.0.3 (built Aug 20 2008@10:00:16), Sleep, 100 Send, {ALTDOWN}fn{ALTUP} Sleep, 100 WinWait, Select Image File, IfWinNotActive, Select Image File, , WinActivate, Select Image File, WinWaitActive, Select Image File, send {TAB 2} send {DEL} Send %1%{ENTER} WinWaitClose, J:\emulator\sega\dreamcast\ChankastAlpha025\ChankastAlpha025\nullDC_1.0.3_nommu.exe, ExitApp Here are some explanation for the start.ahk file The param1 is for recieving the parameter "[ROMPath]\[RomFile]" wich is sent from gameex. Just to show, I included 2 more paramters which not are used in this wrapper, but if someone would like to use this for some own wrapper utility, you know how to implement it. Send, {ALTDOWN}fn{ALTUP} opens select boot image file send {TAB 2} activate input and selects all text allready input send {DEL} deletes the text Send %1%{ENTER} inserts "[ROMPath]\[RomFile]" end presses ENTER and off you go