Get-SiteStatus

NAME

Get-SiteStatus

SYNOPSIS

Retrieves the site summary and state information.

SYNTAX

Get-SiteStatus [[-Server] <string>] [<CommonParameters>]

Get-SiteStatus [[-Id] <uint>] [<CommonParameters>]

Get-SiteStatus [[-InputObject] <Site>] [<CommonParameters>]

DESCRIPTION

Retrieves the site summary and state information.

To obtain the information for all sites, execute the cmdlet with no parameters.

PARAMETERS


-Server <string>
The name of the server where the master Publishing Agent is running.

This must be the actual server name used in the RAS farm.

        Required?                    false
        Position?                    0
        Default value                
        Accept pipeline input?       false
        Accept wildcard characters?  false

-Id <uint>
The site ID. To obtain the ID, use the Get-Site cmdlet.

        Required?                    false
        Position?                    0
        Default value                0
        Accept pipeline input?       false
        Accept wildcard characters?  false

-InputObject <Site>
An object of type Site representing the site.

To obtain the object, use the Get-Site cmdlet.

        Required?                    false
        Position?                    0
        Default value                
        Accept pipeline input?       true (ByValue)
        Accept wildcard characters?  false

<CommonParameters>
        This cmdlet supports the common parameters: Verbose, Debug,
        ErrorAction, ErrorVariable, WarningAction, WarningVariable,
        OutBuffer, PipelineVariable, and OutVariable. For more information, see 
        about_CommonParameters documentation. 

INPUTS

PSAdmin.Site

OUTPUTS

PSAdmin.SiteSysInfo

EXAMPLES


---------- EXAMPLE 1 ----------

Get-SiteStatus -Id 15

Retrieves the information for the site with ID 15.

---------- EXAMPLE 2 ----------

Get-SiteStatus -Server MySiteServer

Retrieves the information for the site where master Publishing Agent server name is "MySiteServer".

---------- EXAMPLE 3 ----------

Get-SiteStatus -InputObject $Site

Retrieves the information for the site represented by the $Site object.

---------- EXAMPLE 4 ----------

Get-Site -Id 15 | Get-SiteStatus

Retrieves the information for the site represented by the object obtained from the pipeline output.

RELATED LINKS