shellpower.iisconfig
1.0.10
dotnet add package shellpower.iisconfig --version 1.0.10
NuGet\Install-Package shellpower.iisconfig -Version 1.0.10
<PackageReference Include="shellpower.iisconfig" Version="1.0.10" />
paket add shellpower.iisconfig --version 1.0.10
#r "nuget: shellpower.iisconfig, 1.0.10"
// Install shellpower.iisconfig as a Cake Addin #addin nuget:?package=shellpower.iisconfig&version=1.0.10 // Install shellpower.iisconfig as a Cake Tool #tool nuget:?package=shellpower.iisconfig&version=1.0.10
shellpower.iisconfig
Provides powershell cmdlets for setting up and configuring web applications in IIS. This package includes the powershell cmdlets, which can be referenced by your powershell scripts for performing common iis configuration operations in a repeatable manner, ideal for continuous integration/deployment scenarios.
Usage
Install nuget package
nuget install shellpower.iisconfig -outputdirectory packages
Create new file
getting-started.ps1
with the following content# dot source the script . packages\bin\iisconfig.ps1 # add a web application to an existing website Add-WebApplicationToWebSite -siteName "Default Web Site" ` -webappName "api" ` -webappPath "C:\inetpub\api"
Run
.\getting-started.ps1
Refer to the tests in the source code for more examples.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.10 | 1,630 | 12/3/2019 |
1.0.9 | 1,621 | 8/9/2019 |
1.0.8 | 514 | 8/9/2019 |
1.0.7 | 598 | 8/2/2019 |
1.0.6-rc1 | 491 | 7/3/2019 |
1.0.5-rc3 | 415 | 7/3/2019 |
1.0.5-rc2 | 854 | 5/1/2019 |
1.0.5-rc1 | 1,703 | 1/21/2019 |
1.0.4-alpha | 527 | 1/21/2019 |
1.0.3-alpha | 573 | 11/19/2018 |
1.0.2-alpha | 585 | 11/19/2018 |
1.0.1-alpha | 548 | 11/18/2018 |
1.0.0-alpha | 549 | 11/16/2018 |
This package includes the powershell cmdlets, which can be referenced by your powershell scripts for performing common iis configuration operations in a repeatable manner, ideal for continuous integration/deployment scenarios.