Subject: Re: setup creation
Date: Thu, 9 Feb 2006 12:00:29 +0530
Lines: 67
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
X-RFC2646: Format=Flowed; Original
Message-ID: <
[email protected]>
Newsgroups: microsoft.public.dotnet.languages.csharp
NNTP-Posting-Host: dsl-har-194.148.246.61.touchtelindia.net
61.246.148.194
Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP12.phx.gbl
Xref: TK2MSFTNGXA01.phx.gbl
microsoft.public.dotnet.languages.csharp:384663
X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
I have been given comdll in release mode and I make
C# windows service which is using that.
As i register that on my system using regsvr32 my service works fine
But now I want to create setup of my service which should automatically
register that dll on system on which service will be installed
Hi Ankit,
Welcome to MSDN Newsgroup!
If you want to register COM DLL with a specified tool, RegSvr32.exe
will
help you.
You could get more information about RegSvr32.exe from the following site:
Title: Regsvr32
URL:
http://technet2.microsoft.com/WindowsServer/en/Library/cbd1c026-0b9d-43c
4-a38c-a03b508204d91033.mspx
If you want to register COM DLL programmatically in your application code,
you could invoke DllRegisterServer from COM DLL directly.
DllRegisterServer
function exposed by COM DLL will help us to register DLL on the
machine.
If
you need sample code about this, please feel free to tell me and I'll send
it to you.
I hope the above information is helpful for you. If you have any questions
or concerns, please let me know. Thanks for your understanding and have
a
nice day!
Best Regards,
Terry Fei [MSFT]
Microsoft Community Support
Get Secure!
www.microsoft.com/security
--------------------
From: "Ankit Aneja" <
[email protected]>
Subject: setup creation
Date: Wed, 8 Feb 2006 17:49:24 +0530
Lines: 10
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
X-RFC2646: Format=Flowed; Original
Message-ID: <
[email protected]>
Newsgroups: microsoft.public.dotnet.languages.csharp
NNTP-Posting-Host: dsl-upwest-117.11.246.61.touchtelindia.net
61.246.11.117
Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP12.phx.gbl
Xref: TK2MSFTNGXA01.phx.gbl
microsoft.public.dotnet.languages.csharp:384396
X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
Hi I have made a windows service in C#.Net
Now I want to create a setup of this service
http://www.codeproject.com/dotnet/simplewindowsservice.asp
I read this article
Now my service is also using com dll
I also want that dll to be registered on server(or computer) on which that
service will be installed
How can i do that.I am using visual studio.net 2003