Skip to content

Commit a8dfe07

Browse files
authored
Removed description on example header
1 parent b0f3450 commit a8dfe07

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docset/winserver2012-ps/webadminstration/Set-WebConfigurationProperty.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,22 +37,22 @@ Globbing, the use of wildcards, is supported.
3737

3838
## EXAMPLES
3939

40-
### -------------- EXAMPLE 1: Change the extension of all handlers mapped to .aspx --------------
40+
### -------------------------- EXAMPLE 1 --------------------------
4141
```
4242
IIS:\>Set-WebConfigurationProperty "//handlers/add[@path='*.aspx']" -PSPath IIS:\ -Name path -Value "*.mspx"
4343
```
4444

4545
The cmdlet changes all handler paths to *.mspx that were mapped to *.aspx.
4646

47-
### -------------- EXAMPLE 2: Setting new Bindings on an existing Web site --------------
47+
### -------------------------- EXAMPLE 2 --------------------------
4848
```
4949
IIS:\>set-webconfigurationproperty '/system.applicationHost/sites/site[@name="DemoSite"]' -PSPath IIS:\ -Name Bindings -Value (@{protocol="http";bindingInformation="*:80:DemoSite1"},@{protocol="http";bindingInformation="*:80:DemoSite2"})
5050
```
5151

5252
The cmdlet sets new bindings on an existing Web site.
5353
The original bindings are replaced.
5454

55-
### -------------- EXAMPLE 3: Setting authentication parameters on an existing Web site --------------
55+
### -------------------------- EXAMPLE 3 --------------------------
5656
```
5757
IIS:\>set-webconfigurationproperty 'system.webserver/security/authentication/basicauthentication' -PSPath 'IIS:\sites\default web site\' -Name defaultlogondomain -Value 'contoso.com'
5858
```

0 commit comments

Comments
 (0)