web-platform-installer

Installer for Java Web Application

半城伤御伤魂 提交于 2020-07-09 13:28:06
问题 I have developed Web Application in C#, ASP.NET and SQL Server Express Edition. I have created installer (setup.exe) for the application using Visual Studio 2010. This installer checks for prerequisites software like IIS, .NET Framework and SQL Server. I have bundle all require software in installer and they get install on user machine if not installed. I will be developing Web application using Structs2, Oracle, and Tomcat etc. I want to create same installer like above for Structs2

Does Web Platform Installer support automation?

拥有回忆 提交于 2019-12-30 01:33:31
问题 I wonder if I can automate WPI actions to setup a dev box in unattended mode, either with command line options or a configuration file. It looks like WPI takes a "URL" as a command line parameter but I have no idea what format the response should be in, and what it allows in general. EDIT: Thanks folks for the huge effort to come up with ways to automate setups. As @fra mentioned now there is a command line tool for WPI. 回答1: WebPi Command Line was just released: http://blogs.iis.net/satishl

What is “IIS 7 Recommended Configuration” in Web Platform Installer 3.0?

不打扰是莪最后的温柔 提交于 2019-12-21 03:56:27
问题 Just installed the new IIS Express today and saw that the Web Platform Installer also has the option to install "IIS 7 Recommended Configuration". But I couldn't actually figure out anywhere what it does? Anyone using it? 回答1: quote site The IIS 7 Recommended Configuration in WebPI v3 is the equivilent of the IIS 7 components that were installed automatically in WebPI v2 when you installed an application. For example, in WebPI v2 and on a clean Win7 machine, if you selected to install

The specified password for user account 'root' is not valid, or failed to connect to database server

早过忘川 提交于 2019-12-20 02:08:40
问题 I am getting this error while installing WordPress using Windows platform installer 5.0 on a Windows Server 2012R2. Currently I have a php site with mySQL on that server which is running fine, PHP, MYSQL was already installed as part of setting up that site couple of months ago. MySQL .NET Connector was already installed, I have repair it(http://dancerscode.com/blog/the-annoying-mysql-web-platform-installer-bug/) using latest installer as well. Installed WebMatrix3 which was mentioned in same

How best to install MVC 3 on a server?

夙愿已清 提交于 2019-12-18 11:44:12
问题 Now that MVC 3 Tools Update has been released, that's all I see on the Web Platform Installer -- I no longer see MVC 3? Is this because the Tools Update is essentially MVC 3 PLUS enhancements to the development environment? Presumably, none of these additions are needed on a server so I thought that MVC 3 would still be offered for server installs. So can/should I install the MVC 3 "Tools Update" from the Web Platform installer on a server? 回答1: You can use the installer from WebPI on the

WPI 4.5 Error after upgrading

好久不见. 提交于 2019-12-10 14:55:16
问题 I just upgraded Web Platform Installer to version 4.5 on two separate Windows 8 machines. (One is a physical machine and the other is a VM). I am unable to run WPI 4.5, both are showing the following same error: An error occurred while parsing EntityName. Line 42134, position 81. Update: Confirmed it was an error with the product list from Microsoft. Found this log file entry: DownloadManager Information: 0 : Loading product xml from: https://go.microsoft.com/?linkid=9817844 DownloadManager

PDOException: SQLSTATE[42S02]

烈酒焚心 提交于 2019-12-10 11:36:26
问题 I have just install Drupal 7 through microsoft web platform installer after successful installation when i run web matrix and run it. It show me this error I am new to drupal so have no clue what is this error and how to solve it 回答1: It's a simple problem to solve, just visit install.php on your website and you should be able to install as normal. Sometimes the installer doesn't automatically redirect to install.php and instead visits the root of the site. The exception happens because

How to uninstall a Web Platform Installer (WPI) application?

纵然是瞬间 提交于 2019-12-09 14:17:00
问题 I have looked all around the internet, and can't seem to figure out how to uninstall a WPI application. I accidentally installed something thinking it was something else, and now I can't uninstall it. 回答1: You could remove them via control panel. Depending on what you want to remove, you either need to: Go into windows programs and features and turn windows features on/off, locate the feature you wish to remove and untick it. Else Go to uninstall a program section and locate it that way and

Web Platform and IIS CAN'T FIND MANAGEMENT SERVER

天涯浪子 提交于 2019-12-08 06:15:00
问题 I'm trying to have the management service in the IIS Manager. I know that to do that I need to add and install it in the web platform installer. I'm having a difficulty finding it. I've even installed IIS: Management Scripts and Tools and IIS: Management Tools hoping that Management service will show up but it won't. I've also installed Web Deploy 3.5. Question is, where can I find the management service? I'm using web platform 5.0. 回答1: That management service icon only appears if you are

How do I create a MSI for my web application?

孤街浪徒 提交于 2019-12-07 19:08:55
问题 I have a web application, where the UI is in seperate folder and solution, the middle tier as well as the data layer in different folders and solutions. Now I need to create a MSI for my web application. Until now we have been using deployment engine, but now we have been asked to do a MSI as the new server does not support deployment engine. Usually we create MSI for a windows application, where we take the EXE as the primary output. Now how do I create the MSI in this situation. Any