Created
September 14, 2012 17:59
-
-
Save erichexter/3723562 to your computer and use it in GitHub Desktop.
web pi commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
view sourceprint? | |
1 | |
@rem installer.cmd | |
2 | |
SET WebPiCmd=.\webpicmd\WebPiCmd.exe | |
3 | |
%WebPiCmd% /Install /Products:NETFramework4 /AcceptEula | |
4 | |
%WebPiCmd% /Install /Products:SQLExpress /SQLPassword:P@ssw0rd /AcceptEula | |
5 | |
%WebPiCmd% /Install /Products:SQLManagementStudio /AcceptEula | |
6 | |
%WebPiCmd% /Install /Products:VWD /AcceptEula | |
7 | |
%WebPiCmd% /Install /Products:MVC3 /AcceptEula | |
8 | |
%WebPiCmd% /Install /Products:MVC4VS2010 /AcceptEula | |
Example 2 – Web Server for ASP.NET MVC Applications | |
The setup would be the same as above but in this scenario we are installing on top a Windows Server 2008 R2 fresh install. This would be our web server to showcase a basic ASP.NET MVC application. | |
1 | |
@rem installer.cmd | |
2 | |
SET WebPiCmd=.\webpicmd\WebPiCmd.exe | |
3 | |
%WebPiCmd% /Install /Products:NETFramework4 /AcceptEula | |
4 | |
%WebPiCmd% /Install /Products:IIS7 /AcceptEula | |
5 | |
%WebPiCmd% /Install /Products:MVC3 /AcceptEula | |
6 | |
%WebPiCmd% /Install /Products:MVC4VS2010 /AcceptEula | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment