Amitava Shee's Technical Diary

Sunday, September 03, 2006

How to run .NET 2.0 SDK help outside visual studio 2005

Visual Studio 2005 does not distribute help in chm format. It took some spelunking to find out how to run MSDN help outside Visual Studio.

From Start->Run, invoke the following

dexplore /helpcol ms-help://MS.NETFramework.v20.en

However, if you try to create a shortcut, you have to specify the full path as
"C:\Program Files\Common Files\Microsoft Shared\Help\dexplore.exe" /helpcol ms-help://MS.NETFramework.v20.en

Please note that you can create an alias to an executable by creating a .reg file as below

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\Your Alias]
"Path"="path containing exe with a trailing backslash"
@="full path exe"

0 Comments:

Post a Comment

<< Home