When I open a program the command prompt window opens only

  • Thread starter Thread starter AASaunders
  • Start date Start date
  • Tags Tags
    Program Window
AI Thread Summary
A user encountered an issue after associating all executable files with cmd.exe, causing the command prompt to open for all applications, including Chrome. The problem arose from a misunderstanding of how to keep the command window open after executing a C program, which could have been resolved with the command 'system("pause")'. System restore was not an option for fixing the file association. To resolve the issue, a detailed method was provided involving the Windows Registry Editor (regedit), where the user could export the correct settings for executable files from another computer with the same Windows version. This process includes ensuring the default value for the .exe key is set to "exefile." Additionally, alternative suggestions were made to adjust file associations through Windows Explorer settings.
AASaunders
Messages
4
Reaction score
0
Hi all, I have just started to teach myself C and yesterday I did something awfully stupid.

I wrote a source file, exexuted it and I didn't know why the cmd window only briefly appeared, I now know that the line 'system("pause") would of fixed this. Regardless, I went to my .exe created by my compiler and set it to open with cmd.exe. Of course this associated all programs with cmd, so when I run Chrome for example the command window opens and that's it, I know I could just type in the filepath to open it but I would just like to revert it to how it was.

Also, system restore doesn't work so I can't take that route.

Thanks for any help.
 
Computer science news on Phys.org
AASaunders said:
Hi all, I have just started to teach myself C and yesterday I did something awfully stupid.

Murphy's law rules.

murphys-law.jpg


I wrote a source file, exexuted it and I didn't know why the cmd window only briefly appeared,

The Command Prompt always pops up for non-windows applications, and if your program just execute and end, you will only see a brief appearance.

I now know that the line 'system("pause") would of fixed this. Regardless, I went to my .exe created by my compiler and set it to open with cmd.exe.

Gosh, this shouldn’t be possible... what Windows version do you have?

Of course this associated all programs with cmd, so when I run Chrome for example the command window opens and that's it, I know I could just type in the filepath to open it but I would just like to revert it to how it was.

I can understand this. :smile:

Also, system restore doesn't work so I can't take that route.

Thanks for any help.

1. Make a backup of your entire system + data.

2. Look for a computer that has exactly the same Windows version as yours (maybe your laptop, friend, etc).

3. Make sure this computer has a recent backup for the entire system + data.

4. Go to the Start Menu and click on Run... and type regedit and press [Enter].

5. Press [Crtl+F] and type exefile and select Keys and Match whole string only and press [Enter].

6. Make sure it says Computer\HKEY_CLASSES_ROOT\exefile in the Status Bar.

7. Right-click on exefile in the tree in the right panel and select Export.

8. Save the file as RestoreExeFile.reg (or any suitable name) to the Desktop (or any other place where you can find it easily).

9. Copy the file to your computer and double-click on RestoreExeFile.reg and now your system should be restored.

10. Reboot your computer and remember to be careful out there! :wink:



Edit: I missed one thing.

11. On your computer start regedit as in 4.

12. Go to key HKEY_CLASSES_ROOT\.exe which is fairly easy to find (double-click HKEY_CLASSES_ROOT and scroll down).

13. Click on key .exe and make sure the value of (Default) is exefile.

14. If not, double-click on (Default) to change it.


Done!
 
Last edited:
Explained very well, thanks for the help!
 
No worries. :wink:

P.S: You could try to go directly from paragraph 1 to 11. If you’re lucky this will work.
 
It might be easier just to go into the Windows Explorer settings and dig down and change the default behavior for different file extensions.
 
Well, the date has now passed, and Windows 10 is no longer supported. Hopefully, the readers of this forum have done one of the many ways this issue can be handled. If not, do a YouTube search and a smorgasbord of solutions will be returned. What I want to mention is that I chose to use a debloated Windows from a debloater. There are many available options, e.g., Chris Titus Utilities (I used a product called Velotic, which also features AI to prevent your computer from overheating etc...
I have been idly browsing what Apple have to offer with their new iPhone17. There is mention of 'Vapour cooling' to deal with the heat generated. Would that be the same sort of idea that was used in 'Heat Pipes' where water evaporated at the processor end and liquid water was returned from the cool end and back along a wick. At the extreme high power end, Vapour Phase Cooling has been used in multi-kW RF transmitters where (pure) water was pumped to the Anode / or alternative Collector and...
Back
Top