Como posso alterar o “licenciado para” no visual studio?

15

Não sei como isso aconteceu, mas na inicialização minha cópia do VS 2012 lê

Licensed To: "----------------Hewlet-Packard (blah)..."

Eu não tenho ideia de como isso aconteceu. Nós instalamos através de nossa assinatura MSDN. Alguém sabe de uma maneira simples de substituir isso com meu nome ou com a minha empresa?

Isso me deixa triste por dentro.

    
por TimDog 01.11.2012 / 22:37

2 respostas

21

Para o Windows 7, encontrei as seguintes instruções em este site :

  1. Open Registry Editor (Start->Run->type “regedit”->press enter)

  2. Find the following key: HKCU\Software\Microsoft\VisualStudio.0_Config\Registration\UserName

  3. Change it’s value to the desired name

  4. Navigate to the following folder: C:\Users\{YOUR_USER}\AppData\Roaming\Microsoft\VisualStudio.0 (replace the placeholder with your own username)

  5. Delete the file vs000223.dat – this is actually a JPG file containing the splash screen, you can change it’s name to see it for yourself

  6. Start Visual Studio, and it magically recreates the file with the modified name in it!

    
por 01.11.2012 / 22:49
7

Na verdade, você precisa excluir o vs000223.dat de ProgramData e AppData. Aquele em AppData atua como a principal tela inicial, enquanto o em ProgramData atua como um backup. Se aquele em AppData não existir, o Visual Studio 'copia' aquele de ProgramData. Se os dois não existirem, o Visual Studio gravará um novo vs000223.dat no AppData, mas não no ProgramData.

    
por 17.02.2013 / 19:52