Installer for Windows Service in .NET

  • Thread starter Thread starter Vishal
  • Start date Start date
V

Vishal

Hello,

I have successfully created my first windows service
in vb.net and I also installed it on the same system.
However I would like to install the service on another
system. Can somebody tell me please how I can do that or
is that the same procedure as installing on the
developement system?

Thanks
 
Hello Vishal,

Make sure you have the .NET framework installed on the other machine...

Then

installutil.exe /i MyService.exe (this should be the same procedure that
you did on your dev machine)
 
Back
Top