wmi - access remote program files folder using C# -


I am trying to get the version information of software installed on a remote PC It is simple on local machines, but WMI does not seem to allow for this. Ideally I want to do something like this from a remote PC:

  scope = new management clear (string.format ("\\\\ {0} \\ root \\ cimv2", Name), option); Scope.Connect (); // Set the environment for some way remote PC path. System.Environment.GetFolderPath (System.Environment.SpecialFolder.ProgramFiles) + @ "\ Internet Explorer \ iexplore.exe";  


Comments