-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to use PS profile functions when running setup
- Loading branch information
1 parent
2fef56e
commit 6234f8f
Showing
7 changed files
with
31 additions
and
57 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,12 @@ | ||
Import-Module .\Functions | ||
$ScriptPath = Split-Path -Parent $MyInvocation.MyCommand.Definition | ||
|
||
## Development Tools - .NET | ||
& "$ScriptPath\PowerShellProfile\Microsoft.PowerShell_profile.ps1" | ||
|
||
cinst DotNet4.0 | ||
cinst DotNet4.5 | ||
chocolatey install VisualStudio2013Professional -InstallArguments "/Features:'WebTools'" | ||
|
||
## Should figure out if I want the "whole" VS or just the express edition | ||
## cinst VisualStudio2013ExpressWeb | ||
cinst VisualStudio2013Professional -InstallArguments "WebTools" | ||
chocolatey install SQLManagementStudio -source webpi | ||
|
||
## WebPI is clutch for installing other tooling | ||
cinst webpi | ||
cinst webpicommandline | ||
chocolatey install IIS-WebServerRole -source windowsfeatures | ||
chocolatey install IIS-ASPNET45 -source windowsfeatures | ||
|
||
## Install SQL Server tooling | ||
cinst SQLManagementStudio -source webpi | ||
cinst SQLExpressTools -source webpi | ||
|
||
## IIS Configuration | ||
|
||
cinst IIS-WebServerRole -source windowsfeatures | ||
|
||
cinst ASPNET -source webpi | ||
cinst ASPNET_REGIIS -source webpi | ||
cinst DefaultDocument -source webpi | ||
cinst DynamicContentCompression -source webpi | ||
cinst HTTPRedirection -source webpi | ||
cinst IIS7_ExtensionLessURLs -source webpi | ||
cinst IISExpress -source webpi | ||
cinst IISExpress_7_5 -source webpi | ||
cinst IISManagementConsole -source webpi | ||
cinst ISAPIExtensions -source webpi | ||
cinst ISAPIFilters -source webpi | ||
cinst NETExtensibility -source webpi | ||
cinst RequestFiltering -source webpi | ||
cinst StaticContent -source webpi | ||
cinst StaticContentCompression -source webpi | ||
cinst UrlRewrite2 -source webpi | ||
cinst WindowsAuthentication -source webpi | ||
chocolatey install webpi |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
Import-Module .\Functions | ||
$url = "http://ninite.com/plex/ninite.exe" | ||
$file = "plex.exe" | ||
|
||
DownloadAndRun "http://ninite.com/plex/ninite.exe" "plex.exe" | ||
(New-Object net.webclient).DownloadFile($url, $file) | ||
|
||
(New-Object -com shell.application).shellExecute($file) |
This file contains 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
This file contains 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
This file contains 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