When I click on "help and support" in the windows 7 start menu, the helpPane.exe program runs. But when I run helpPane.exe, nothing happens. Any ideas?
Asked
Active
Viewed 134 times
0
-
[IShellDispatch.Help](http://msdn.microsoft.com/en-us/library/windows/desktop/gg537718(v=vs.85).aspx). – Raymond Chen Apr 14 '13 at 02:22
-
It is a one-liner: CreateObject("Shell.Application").Help() – Hans Passant Apr 15 '13 at 01:41
1 Answers
0
You could try this, It probably will work!
Dim appData As String = GetFolderPath(SpecialFolder.ApplicationData)
Dim helpSupportPath As String = appData & "\Microsoft\Windows\Start Menu\Programs\Maintenance\Help.lnk"
Process.Start(helpSupportPath)

STiTCHiCKED
- 506
- 1
- 5
- 18