I have some code where I need the explorer exe application to open within code, which I have working now by using this:
Process explore = Process.Start(@"...explorer");
For some reason this doesn't work when I try to wait for the exe to be closed:
explore.WaitForExit();
Any reason why this doesn't work and how to fix it? a code snippet would be appreciated.