In this walkthrough you will learn how to accomplish some advanced configuration tasks using XPath queries and wildcards.
Introduction
The previous walkthrough introduced you to the *-WebConfiguration and *-WebConfigurationProperty cmdlets. There is more to these cmdlets than meets the eye. The -filter parameter is not just a way to specify a configuration section. It is an XPath query and in this walkthrough we'll explore how to take advantage of it. There are also some nice ways you can use wilcards with the *-WebConfiguration* commands.
This walkthrough uses the sites, applications and virtual directories created in previous examples.
Using XPath Queries
Here is a simple example that shows you how to use wilcards with the Get-WebConfigurationProperty cmdlet:
PS IIS:\Sites\DemoSite\DemoApp> Get-WebConfigurationProperty -filter //defaultDocument/files -name Collection[value="index*"] | select value
And another one. Here all the handler mappings that will get executed by ASPNET_ISAPI.DLL:
Let's suppose you don't like the .aspx extension for your ASP.Net files too much and you want to change all IIS handler mappings from *.aspx to *.mspx. Can it be shorter than this?
We will probably pack these commands into some functions at a later Tech Preview but this is what you get for now :).
Summary
In this walkthrough you learned how to accomplish complex IIS configuration tasks by using wildcards and XPath queries. The next walkthrough will discuss how to discover state and run-time data.
This learning path covers Windows Management Instrumentation (WMI) and Common Information Model (CIM). These technologies help to access information about a computer. Additionally, both technologies provide local and remote access to management information from the operating system, computer hardware, and installed software.