|
\\ Home Page : Articolo : Stampa
DLL GacUtil and Reflector Shortcuts
from http://www.sharepointblogs.com/erickraus/archive/2007/10/04/dll-gacutil-and-reflector-shortcuts.aspx
It adds the gacutil.exe -i and Reflector.exe command to the right-click context menu.
Get Reflector.exe at: http://www.aisto.com/roeder/dotnet/
DLLShortcuts.reg (create in notepad and double click)
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\dllfile\Shell]
@="c:\\reflector\\reflector.exe "%1""
[HKEY_CLASSES_ROOT\dllfile\Shell\InstallGAC]
[HKEY_CLASSES_ROOT\dllfile\Shell\InstallGAC\command]
@="\"c:\\Program Files\\Microsoft Visual Studio 8\\SDK\\v2.0\\Bin\\gacutil.exe\" /i "%1""
[HKEY_CLASSES_ROOT\dllfile\Shell\Reflector]
[HKEY_CLASSES_ROOT\dllfile\Shell\Reflector\command]
@="c:\\reflector\\reflector.exe "%1""
But small addition: if you change @="c:\\reflector\\reflector.exe %1" to the @="c:\\reflector\\reflector.exe \"%1\"" it works for any paths because initial version doesn't work with path which contains spaces in the names
|