Open system32 programs by C # [closed]

-2

I am trying to run Active Directory from my machine via C #. I can open all other common programs with no problem. The program is installed in C:\Windows\system32\dsa.msc , however Visual Studio shows an error and informs that did not find this file , even if it exists.

I'm running as follows:

System.Diagnostics.Process.Start(@"C:\Windows\system32\dsa.msc");

Path in Windows:

VisualBasicError:

    
asked by anonymous 28.09.2017 / 22:15

1 answer

2

I was able to resolve this by removing the "make 32 bit" options in the Properties Build.

The issue was that for some reason it was not finding due to the version of S.O. defined in Visual Studio Properties.

    
28.09.2017 / 22:52