0
votes

How to host windows services to windows azure.

I found many solution related to Worker role but Worker role have many setup like

  1. Create Worker Role Solution.
  2. Create Cloud Service to run script.

Is there any simple way to host windows service to windows azure like we are installing services using Installutil.exe and Start and Stop using Service Manager.

Thank you in advance.

1
What you want is install a Windows Service in an existing cloud service (may be a web role) without having to do it in a worker role. Is my understanding correct? Or you don't even want a web role and just want to install and run a Windows Service anywhere in Azure.Gaurav Mantri
Yes I want to run my windows service to windows azure by any simple way.anuj.rohila94
I want to run my windows service to windows azure by any simple way - This is a pretty vague comment IMHO. Give us more details about the application. Do you intend to run it as a cloud service or in a VM? Then it may be possible to give you some suggestions.Gaurav Mantri
I created one Windows Service Solution in my project. That will run in every 5 min.I want to host that windows service to Windows azure.anuj.rohila94

1 Answers

2
votes

For running your Windows Service in Azure, you could simply take a Virtual Machine (not Cloud Service) with either Windows Server 2012 or 2008 OS. Remote desktop into the server and install your service as you would do on your local computer. You don't have to do anything special for this.