I am a business user of an application that has two separate environments: test and production. It is important that I know which environment I'm using at all times, but the application gives no indication. Window title, layout, and all features are identical, and there is no function in the program to identify the environment, so it's my responsibility to remember which .exe I'm currently using.
I had the thought that I could modify the shortcut or use a command prompt to open the window such that the title clearly says "TEST" or "PRODUCTION".
I attempted the below, but, while it launches the application as expected, there is no change to the window title. (I suspect this only works when launching command prompts)
start "different title" fake.exe
Is there a way to accomplish this? Any ideas would be very much appreciated.
fake.exe
represents explicitly sets the console window title itself. Absent that, the title passed tocmd.exe
's internalstart
command as the first, of necessity double-quoted argument, does take effect. – Amplitude