Guest User

Untitled

a guest
Aug 15th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. Open Windows 7 help (helpPane.exe) from .Net application
  2. ProcessStartInfo startInfo = new ProcessStartInfo(@"c:windowssystem32control.exe", "/name Microsoft.BackupAndRestore");
  3.  
  4. startInfo.UseShellExecute = true;
  5.  
  6. Process.Start(startInfo);
  7.  
  8. HxHelpPane pHelpPane = new HxHelpPane();
  9. pHelpPane.DisplayTask("mshelp://windows/?id=e725b43f-94e4-4410-98e7-cc87ab2739aa");
Add Comment
Please, Sign In to add comment