Celeb Glow
updates | March 15, 2026

How to create a quick windows .exe file which does nothing and doesn't close by itself? [closed]

For example, I want to create a Potatoes.exe file. I don't need it to do anything else, just to be there opened. I don't want it to close by itself.

3

1 Answer

I'd suggest creating a batch file (by opening Notepad and saving as the file with .bat extension)

@echo off
pause > nul

and converting it to executable file (.exe) with one of the thrid-party batch to executable file type convertors [1] [2] [3].