How to add snap-in to MMC

I am developing a simple C # application under Windows 7 as a span-in to mmc like in this link

http://msdn.microsoft.com/en-us/library/ms692759(VS.85).aspx

After adding the dll to the GAC, I used installutil.exe to install the snap-in but I couldn't find it in add / remove snap-in

please, help

+2


a source to share


2 answers


Make sure you have a [RunInstallerAttribute (true)] declaration at the top of the installer class and make sure the installer class is public



+2


a source


IF your application is 32 bit then use

mmc /32

      

yet



mmc

      

if your application is 64 bit

-1


a source







All Articles