On my home system I have the Windows Help and Support service disabled and I've recently started working on an old .Net program lately.
I've noticed that when I run this sub:
I get a Help and Support messagebox telling me that Help and Support service is not running. So my question is:
Why does the above code need the Help and Support service in the first place?
I've noticed that when I run this sub:
VB.NET:
Friend Sub ShowSystemInfo()
Dim ConfigKey, SubKey As RegistryKey
Dim msInfoPath As String
Dim msInfoProcess As New Process
ConfigKey = Registry.LocalMachine
SubKey = ConfigKey.OpenSubKey("Software\Microsoft\Shared Tools\MSInfo", False)
msInfoPath = CStr(SubKey.GetValue("Path"))
msInfoProcess.Start(msInfoPath)
msInfoProcess.Dispose()
End Sub
I get a Help and Support messagebox telling me that Help and Support service is not running. So my question is:
Why does the above code need the Help and Support service in the first place?