Could anyone please advise? I want my winforms app to open a network location. The network location is password protected etc, but that should be left for the user to enter as normal.
I tried this but explorer just opens at the default page (my computer).
Process.Start("Explorer.exe", @"/select,""" + "\\\\SomeLocation\\c$\\SomeDir\\"
+ "\"");
I also tried this but it raises an exception:
Process.Start("\\\\SomeLocation\\c$\\SomeDir\\");
I got this error
'The specified network password is not correct'
I don't want network credentials to be a part of the application.