Customize web deployment setup
-
My requirement is to create a msi package for a web application and deploy it to the target machine which already has the virtual directory and app pool configured. Now evertime when i try to install the web application thru the msi package, the setup should not ask for any inputs from the user(meaning no UI interface should be involved) and the msi should be successfully installed. Can anyone please help me out?? I have googled a lot. Not finding a proper solution
-
My requirement is to create a msi package for a web application and deploy it to the target machine which already has the virtual directory and app pool configured. Now evertime when i try to install the web application thru the msi package, the setup should not ask for any inputs from the user(meaning no UI interface should be involved) and the msi should be successfully installed. Can anyone please help me out?? I have googled a lot. Not finding a proper solution
You can developed one custom installer for that. Few years back I developed one quite similar tool. you can have a look into this Custom Control using C# For Virtual Directory in IIS[^] You can use this as a reference to create a custom tool.
Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
-
You can developed one custom installer for that. Few years back I developed one quite similar tool. you can have a look into this Custom Control using C# For Virtual Directory in IIS[^] You can use this as a reference to create a custom tool.
Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
Thanks Abhijit. But then, in my target machine the Virtual directory and Application pool are already configured and i just have to create the msi package and install it in the target machine without any wizard for getting the inputs from the user during the installation process.