Get-IISSite
Get-IISSite
Gets configuration information for an IIS Web site.
Sintaxis
Parameter Set: Default
Get-IISSite [[-Name] <String[]> ] [-InformationAction <ActionPreference> {SilentlyContinue | Stop | Continue | Inquire | Ignore | Suspend} ] [-InformationVariable <String> ] [ <CommonParameters>]
Descripción detallada
The Get-IISSite cmdlet gets information about Internet Information Services (IIS) web sites and their current status and other key information. If you a request a specific site or a comma delimited list of sites, only those whose names are passed as an argument are returned. Otherwise all the websites are returned.
Parámetros
-InformationAction<ActionPreference>
Specifies how this cmdlet responds to an information event. The acceptable values for this parameter are:
-- SilentlyContinue
-- Stop
-- Continue
-- Inquire
-- Ignore
-- Suspend
Alias |
infa |
¿Necesario? |
false |
¿Posición? |
named |
Valor predeterminado |
none |
¿Aceptar la entrada de la canalización? |
false |
¿Aceptar caracteres comodín? |
false |
-InformationVariable<String>
Specifies a variable in which to store an information event message.
Alias |
iv |
¿Necesario? |
false |
¿Posición? |
named |
Valor predeterminado |
none |
¿Aceptar la entrada de la canalización? |
false |
¿Aceptar caracteres comodín? |
false |
-Name<String[]>
Specifies the name of the IIS website to get configuration information. If this parameter is not used, all sites are returned.
Alias |
none |
¿Necesario? |
false |
¿Posición? |
1 |
Valor predeterminado |
none |
¿Aceptar la entrada de la canalización? |
true(ByValue,ByPropertyName) |
¿Aceptar caracteres comodín? |
false |
<CommonParameters>
Este cmdlet admite los parámetros comunes: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer y -OutVariable. Para obtener más información, vea about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).
Entradas
El tipo de entrada es el tipo de objetos que se pueden canalizar al cmdlet.
- String, array of string
Salidas
El tipo de resultado es el tipo de los objetos que el cmdlet emite.
- Microsoft.Web.Administration.Site
Ejemplos
Example 1: Get information about an IIS website
This command gets the configuration information for the Default Web Site.
PS C:\> Get-IISSite "Default Web Site"
Example 2: Get information about all IIS websites
This command gets all configuration information about all IIS websites
PS C:\> Get-IISSite
Example 3: Get an attribute for an IIS website
This command gets the ServerAutoStart attribute for the IIS Default Web Site.
PS C:\> $Site = Get-IISSite "Default Web Site"
PS C:\> $Site.Attributes["ServerAutoStart"]