You can find the simulator executable ...
C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Simulator\11.0
However, looking at Windows.Simulator.exe using ILSpy, it seems that the only start command he is looking for is / Minimized. If you select OnStartup, it contains the code ...
if (App.ParseStartAsMinimized(e.Args))
{
window.WindowState = WindowState.Minimized;
}
This is the only thing I could find. I also did not find the place where he was trying to access his configuration file. However, it refers to System.Configuration, so additional detective work may be required.
source
share