Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2008 Product Key in Registry? [closed]

I have a friend who needs to reinstall windows, but he can't find his VS2008 activation code/product key. Is there a way to look up which product key he entered when he last installed VS2008 in the registry? Any other method of finding the key is also welcome.

like image 724
viggity Avatar asked Feb 09 '09 17:02

viggity


People also ask

How do I activate my Visual Studio license key?

Enter your password, or complete your organization's sign-in requirements. Upon successful sign-in, an "Activate Your Visual Studio Subscription" window will appear. Enter the product key information available from the payment "Confirmation Page" or "Confirmation Email" and select Activate.

Is Visual Studio 2008 still available?

Visit visualstudio.com to get the most up-to-date version of Visual Studio. Microsoft will no longer provide security updates, technical support, or hotfixes when support ends on April 10, 2018, for the following products: Microsoft Visual Studio 2008 (All editions)

How do I open Visual Studio 2008?

Select the . sln file in file explorer, right click, select "Open With", select "Visual Studio 2008" or "Visual Studio version Selector".


1 Answers

For 32 bit Windows:


Visual Studio 2003:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\7.0\Registration\PIDKEY

Visual Studio 2005:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\8.0\Registration\PIDKEY

Visual Studio 2008:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\9.0\Registration\PIDKEY


For 64 bit Windows:


Visual Studio 2003:

HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\7.0\Registration\PIDKEY

Visual Studio 2005:

HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\8.0\Registration\PIDKEY

Visual Studio 2008:

HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\9.0\Registration\PIDKEY


Notes:

  • Data is a GUID without dashes. Put a dash ( – ) after every 5 characters to convert to product key.
  • If PIDKEY value is empty try to look at the subfolders e.g.

    ...\Registration\1000.0x0000\PIDKEY

    or

    ...\Registration\2000.0x0000\PIDKEY

like image 151
4 revs, 2 users 92% Avatar answered Nov 13 '22 06:11

4 revs, 2 users 92%