Get-SPOfficeWebAppsCache

 

Applies to: SharePoint Server 2010

Topic Last Modified: 2010-07-21

Banner stating end of support date for Office 2010 with link to more info

Gets the SPSite object that represents the Microsoft Office Web Apps cache associated with a particular Web application.

Syntax

Get-SPOfficeWebAppsCache [[-WebApplication] <SPWebApplicationPipeBind>] [-AssignmentCollection <SPAssignmentCollection>]

Get-SPOfficeWebAppsCache [-AssignmentCollection <SPAssignmentCollection>] [-Site <SPSitePipeBind>]

Detailed Description

The Get-SPOfficeWebAppsCache cmdlet retrieves the site collection that stores each of the cached renditions for the Word Viewing Service and PowerPoint Service applications. The SPSite object can be used to adjust the expiration of documents cached within that site collection, and to change the maximum size to which the companion cache can grow.

Parameters

Parameter Required Type Description

WebApplication

Optional

Microsoft.SharePoint.PowerShell.SPWebApplicationPipeBind

Specifies the Web application in which the companion cache is located.

AssignmentCollection

Optional

Microsoft.SharePoint.PowerShell.SPAssignmentCollection

Manages objects for the purpose of proper disposal. Use of objects, such as SPWeb or SPSite, can use large amounts of memory and use of these objects in Windows PowerShell scripts requires proper memory management. Using the SPAssignment object, you can assign objects to a variable and dispose of the objects after they are needed to free up memory. When SPWeb, SPSite, or SPSiteAdministration objects are used, the objects are automatically disposed of if an assignment collection or the Global parameter is not used.

Note

When the Global parameter is used, all objects are contained in the global store. If objects are not immediately used, or disposed of by using the Stop-SPAssignment command, an out-of-memory scenario can occur.

Site

Optional

Microsoft.SharePoint.PowerShell.SPSitePipeBind

Specifies the identity of the Office Web Apps cache site collection.

Input Types

Return Types

Example

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

$a = Get-SPOfficeWebAppsCache -WebApplication "SharePoint - 80"

Get-Member -InputObject $a

$a.Quota

$a.Owner

This example returns the current quota and owner for the Office Web Apps cache that is associated with the Web application named SharePoint - 80.

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

$cache = Get-SPOfficeWebAppsCache -WebApplication <WebAppURL>

$cache.Quota.StorageMaximumLevel

$cache.Quota.StorageWarningLevel

This example returns the current values for the MaxSizeInBytes and WarningSizeInBytes properties.

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

$cache = Get-SPOfficeWebAppsCache -WebApplication <WebAppURL>

$web = Get-SPWeb -Site $cache.URL

$web.Properties

This example returns the current values for the ExpirationPeriodInDays property.