Reputation: 33
I'm dveloping simple C# application under Windows 7 as an span-in to mmc as in this link
http://msdn.microsoft.com/en-us/library/ms692759(VS.85).aspx
After adding the dll to GAC I used installutil.exe to install the snap-in but I couldn't find it in add/remove snap-ins
please help
Upvotes: 2
Views: 1467
Reputation: 1
IF your App is 32bit then use
mmc /32
else
mmc
if your app is 64bit
Upvotes: -1
Reputation: 461
Make sure you have the [RunInstallerAttribute(true)] declaration at the top of the installer class, and make sure that the installer class is public
Upvotes: 2