Reputation: 16029
How can I change the title of the command prompt window every time I execute a dos-based program by double clicking it, in c language. Should I use the Windows API?
Upvotes: 1
Views: 2079
Reputation: 319
you can do
%comspec% /c start "testtest" %comspec%
at application launcher of Windows+R
Upvotes: 0