i am trying to launch narrator.exe from my c# code in visual studio but it continuously throws an exception . the code which i am using is :: " Process NarratorProcess = process.Start(@"C:\Windows\System32\narrator.exe");" but it continuously throws an exception saying ::
threw exception: System.ComponentModel.Win32Exception: The system cannot find the file specified
however the file is present in the specified location . I googled and found it may be due to windows file system redirection as in this article System.ComponentModel.Win32Exception when starting process - file not found, but file exists and also followed the steps mentioned there but still it doesnot work. Can someone help me out .