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

link|improve this question

40% accept rate
I think this should not be closed as "not programming related". Having some configuration problem with a popular IDE (with D meaning development :P) seems to be programming related for me. – OregonGhost Oct 14 '08 at 10:30
Beat me to it. So this is not OK but 'What's your favourite colour of programming chair?' type questions are?! This is the start of the downward curve towards uselessness here. – Fake Jim Oct 14 '08 at 10:32
Reopened. It is border line, but the people have spoken. – GEOCHET Oct 14 '08 at 11:00
I don't think this question is borderline at all. Its a non subjective question to a programming IDE. – Giovanni Galbo Oct 14 '08 at 11:33
1  
For the record, I am a software developer and I think this is a VERY important question for software developers, because it's something that we as software programmers (and ONLY software programmers) need if we start new software projects for others to consume. Thank you guys for reopening this and getting this answered, and the rest of you are losers. :) – stimpy77 Mar 13 '10 at 22:03
feedback

4 Answers

up vote 15 down vote accepted

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.

link|improve this answer
8  
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 Janković Oct 14 '08 at 11:58
And here's the link: translate.google.com/… – Mladen Janković Oct 14 '08 at 11:59
feedback

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.

link|improve this answer
2  
It should be noted that this also works for VS2010. – Steven Raybell Apr 13 '10 at 11:15
Better than accepted answer. Thanks. – SSS Sep 20 '11 at 1:26
The instructions worked for me with VS2008 on Win 7. – James Sun Nov 14 '11 at 13:22
feedback

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

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.