views:

2732

answers:

4

Is there a way to change name of company to which the Visual Studio 2008 is registered without reinstalling it?

A: 

A quick suggestion, bring up RegEdit and search for the existing company name string. Then attempt to change it.

Jim Blackler
+9  A: 

This should have the answer you are looking for : http://bytes.com/forum/thread635503.html

For the CompanyName in AssemblyInfo, it's $registeredorganization$ which uses value from registry key value from HKLM\Software\Microsoft\Windows NT\CurrentVersion\RegisteredOrganization.

Giovanni Galbo
Thanks and just to add that Visual Studio on 64-bit versions of Windows use different registry key (HKLM\Software\Wow6432Node\Microsoft\Windows NT\CurrentVersion\RegisteredOrganization).
Mladen Jankovic
Mladen Jankovic
A: 

This baffled me as well, several times. I'd installed VS2005 before and just had to go through this headache again as I'm rebuilding my notebook. The installer for VS2005Pro never asks me my organization, just a user name. Then it defaults to the notebook manufacturer. Since I do not work for the manufacturer of my notebook, I think it might be trouble for me later if I shipped stuff out with that manufacturer's name embedded on it.

AND I'd already intuited that it ought to be tweakable from the registry, AND even gone so far as to export the whole registry and done a global search-and-replace from notepad, AND cleaned up those straggling keys that were locked when I reloaded my edited registry.

No effect.

Giovanni Galbo in his answer wrote to reference the article: http://bytes.com/forum/thread635503.html and also mentioned the key it borrows from if there isn't already a Registered Organization.

But what if "RegisteredOrganization" isn't present? It still defaults to "".

ADD the key. Set the value yourself. Fixed.

I assume this works just as well with most other versions of VS, including VS2008.

+6  A: 

For what it's worth I wrote up a set of instructions to do this here: http://devblog.stuartthompson.net/2010/03/changing-visual-studio-registration-information/

I didn't find a full solution until I learned about the devenv /setup step and SplashInfo key.

Stuart Thompson
It should be noted that this also works for VS2010.
Steven Raybell