|
|
|
|
|
Dicas
|
|
Visual Basic (Windows)
|
|
|
Título da Dica: Extensão do Shell do Windows para registrar e desregistrar componentes
|
|
|
|
Postada em 3/6/2003 por cacá
Para facilitar o registro de DLLs copie o conteúdo abaixo no seu editor de texto e salve com a extensão .reg Depois execute o arquivo e clique em 'Sim'. Com isso você poderá registrar e desregistrar suas DLLs sem ter que ir no comando executar do Windows, bastando apenas usar o menu de contexto ao clicar com o botão direito do mouse sobre o arquivo.
Importante!!!
Informe o caminho correto do arquivo Regsvr32.exe no texto abaixo.
Para o Windows 98:
REGEDIT4
[HKEY_CLASSES_ROOT\dllfile\shell]
[HKEY_CLASSES_ROOT\dllfile\shell\Registrar DLL]
[HKEY_CLASSES_ROOT\dllfile\shell\Registrar DLL\command] @="C:\\WINDOWS\\SYSTEM\\REGSVR32.exe \"%1\""
[HKEY_CLASSES_ROOT\dllfile\shell\Desregistrar DLL]
[HKEY_CLASSES_ROOT\dllfile\shell\Desregistrar DLL\command] @="C:\\WINDOWS\\SYSTEM\\REGSVR32.exe -u \"%1\""
Para o Windows 2000:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\dllfile\shell] @="Registrar DLL"
[HKEY_CLASSES_ROOT\dllfile\shell\Desregistrar DLL]
[HKEY_CLASSES_ROOT\dllfile\shell\Desregistrar DLL\command] @="\"D:\\WINNT\\system32\\regsvr32.exe\" -u \"%1\""
[HKEY_CLASSES_ROOT\dllfile\shell\Registrar DLL]
[HKEY_CLASSES_ROOT\dllfile\shell\Registrar DLL\command] @="D:\\WINNT\\system32\\regsvr32.exe \"%1\""
Para o Windows XP:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\dllfile\shell] @="Registrar_DLL"
[HKEY_CLASSES_ROOT\dllfile\shell\Desregistrar_DLL] @="Desregistrar DLL"
[HKEY_CLASSES_ROOT\dllfile\shell\Desregistrar_DLL\command] @="E:\\WINDOWS\\system32\\regsvr32.exe -u \"%1\""
[HKEY_CLASSES_ROOT\dllfile\shell\Desregistrar_DLL\ddeexec]
[HKEY_CLASSES_ROOT\dllfile\shell\Desregistrar_DLL\ddeexec\Application] @="regsvr32 -u"
[HKEY_CLASSES_ROOT\dllfile\shell\Desregistrar_DLL\ddeexec\Topic] @="System"
[HKEY_CLASSES_ROOT\dllfile\shell\Registrar_DLL] @="Registrar DLL"
[HKEY_CLASSES_ROOT\dllfile\shell\Registrar_DLL\command] @="E:\\WINDOWS\\system32\\regsvr32.exe \"%1\""
|
|
|
|
|