installing windows service

  • Thread starter Thread starter powerranger
  • Start date Start date
P

powerranger

I want to install my application on a server which already .Net
Framework but does not have Visual Studio .Net. How can I install my
application without using the installutill? Thanks.
 
powerranger said:
I want to install my application on a server which already .Net
Framework but does not have Visual Studio .Net. How can I install my
application without using the installutill? Thanks.

InstallUtil is in the framework. Perhaps not in the path.

Eg.

c:\winnt\Microsoft.NET\Framework\v1.1.4322\InstallUtil.exe

David
 
If you want to do this programmatically you can use the InstallHelper found
in:
System.Configuration.Install.ManagedInstallerClass.InstallHelper



/ricky
 
Back
Top