-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from muratiakos/master
Release v1.6.1
- Loading branch information
Showing
5 changed files
with
37 additions
and
14 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# IISAdministration and WebAdministration compatible aliases | ||
New-Alias -Name Test-WebConfigFile -Value Test-PSWebConfig -Scope Script | ||
|
||
# Common aliases for application config scenarios | ||
New-Alias -Name Get-PSAppConfig -Value Get-PSWebConfig -Scope Script | ||
New-Alias -Name Test-PSAppConfig -Value Test-PSWebConfig -Scope Script |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ so you can simply install it with the following command: | |
Install-Module PSWebConfig | ||
# Or alternatevely you can install it with PsGet from this repository | ||
Install-Module -ModuleUrl https://github.com/muratiakos/PSWebConfig/archive/master.zip | ||
Install-Module -ModuleUrl https://github.com/murati-hu/PSWebConfig/archive/master.zip | ||
``` | ||
Of course you can download and install the module manually too from | ||
[Downloads][download] | ||
|
@@ -38,10 +38,10 @@ Get-PSWebConfig -Path C:\inetpub\wwwroot\ | |
``` | ||
### Test config files | ||
`Test-PSWebConfig` function allows complete tests on all connectionStrings and | ||
Service addresses from a configuration object both on local or remote computers. | ||
Service addresses from a configuration both on local or remote computers. | ||
```powershell | ||
# Pipe Get-PSWebConfig into Test-PSWebConfig | ||
Get-Website * | Get-PSWebConfig | Test-PSWebConfig | ||
# Pipe a config into Test-PSWebConfig | ||
Get-Website * | Test-PSWebConfig | ||
# Or use -Session to test it via remote PSSession | ||
$server1 = New-PSSession 'server1.local.domain' | ||
|
@@ -116,11 +116,11 @@ Created and maintained by [Akos Murati][muratiakos] (<[email protected]>). | |
## License | ||
Apache License, Version 2.0 (see [LICENSE][LICENSE]) | ||
|
||
[repo]: https://github.com/muratiakos/PSWebConfig | ||
[issues]: https://github.com/muratiakos/PSWebConfig/issues | ||
[repo]: https://github.com/murati-hu/PsWebConfig | ||
[issues]: https://github.com/murati-hu/PsWebConfig/issues | ||
[muratiakos]: http://murati.hu | ||
[license]: LICENSE | ||
[semver]: http://semver.org/ | ||
[psget]: http://psget.net/ | ||
[PowerShellGallery]: https://www.powershellgallery.com/packages/PSWebConfig | ||
[download]: https://github.com/muratiakos/PSWebConfig/archive/master.zip | ||
[download]: https://github.com/murati-hu/PSWebConfig/archive/master.zip |
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