bobble said:
whenever i start a .exe in opens a window in DOS, and
says 'this program is too big for memory' or something
like that even if its a pretty small program. why does it
open in DOS and how can i make the program run?!?!
It sounds as if someone has tried to set up a file association for .exe
and told the system that cmd.exe is the program to use. This is wrong -
each .exe should 'run itself'. To restore to standard, Make the
following, after - - start and before - - end into a file by cut/paste
to NotePad. Make sure there is a blank line at the end. Save as
"Patch.reg" then right-click on this file and take Merge to enter it
into the registry.
- - start
REGEDIT4
[HKEY_CLASSES_ROOT\.exe]
@="exefile"
[HKEY_CLASSES_ROOT\exefile]
@="Application"
"EditFlags"=hex:d8,07,00,00
[HKEY_CLASSES_ROOT\exefile\shell]
@=""
[HKEY_CLASSES_ROOT\exefile\shell\open]
@=""
"EditFlags"=hex:00,00,00,00
[HKEY_CLASSES_ROOT\exefile\shell\open\command]
@="\"%1\" %*"
[HKEY_CLASSES_ROOT\exefile\DefaultIcon]
@="%1"
- - end