You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
627 B
17 lines
627 B
@echo off
|
|
rem ************************************************************************
|
|
rem NOTE: This file must be executed whenever TraceEvent.dll is changed.!!!
|
|
rem ************************************************************************
|
|
|
|
rem To be able to use this utility, .NET Framework and VS .NEt must both be installed.
|
|
|
|
rem modify the value of these two variables appropriately
|
|
set REGASM=RegAsm.exe
|
|
set GACUTIL=gacutil.exe
|
|
|
|
|
|
rem register TraceEvent.dll assembly with the Windows Registry
|
|
%REGASM% i386\TraceEvent.dll
|
|
|
|
rem register TraceEvent.dll with the Global Cache
|
|
%GACUTIL% /i i386\TraceEvent.dll
|