My Code:
private void btnMicTrain_Click(object sender, RoutedEventArgs e)
{
ProcessStartInfo info = new ProcessStartInfo();
info.FileName = Environment.SystemDirectory+@"\Speech\SpeechUX\SpeechUXWiz.exe";
info.Arguments = "MicTraining";
info.LoadUserProfile=true;
info.UseShellExecute=true;
info.WindowStyle=ProcessWindowStyle.Hidden;
Process.Start(info);
}
but I faild.
And I try it by create a .dat file and open it in my application,and faild too.
thank you.