Get-SPOfficeWebAppsCache
适用于: SharePoint Server 2010
上一次修改主题: 2015-03-09
获取代表与特定 Web 应用程序相关联的 Microsoft Office Web Apps 缓存的 SPSite 对象。
Syntax
Get-SPOfficeWebAppsCache [[-WebApplication] <SPWebApplicationPipeBind>] [-AssignmentCollection <SPAssignmentCollection>]
Get-SPOfficeWebAppsCache [-AssignmentCollection <SPAssignmentCollection>] [-Site <SPSitePipeBind>]
详细说明
Get-SPOfficeWebAppsCache cmdlet 将检索存储有 Word Viewing Service 和 PowerPoint Service 应用程序的所有缓存的再现项的网站集。SPSite 对象可用于调整缓存在该网站集中的文档的到期日期,并可用于更改伴随缓存可增大到的最大大小。
Parameters
参数 | 是否必需 | 类型 | 说明 |
---|---|---|---|
WebApplication |
可选 |
Microsoft.SharePoint.PowerShell.SPWebApplicationPipeBind |
指定伴随缓存所在的 Web 应用程序。 |
AssignmentCollection |
可选 |
Microsoft.SharePoint.PowerShell.SPAssignmentCollection |
管理对象以便正确进行处理。使用 SPWeb 或 SPSite 等对象可能会耗用大量内存,而且在 Windows PowerShell 脚本中使用这些对象需要正确管理内存。通过使用 SPAssignment 对象,可以将对象分配给变量,然后在不需要这些对象时对它们进行处理,以释放内存。在使用 SPWeb、SPSite 或 SPSiteAdministration 对象时,如果不使用分配集合或 Global 参数,则会自动处理这些对象。 备注 在使用 Global 参数时,所有对象均包含在全局存储中。如果未立即使用对象,或未通过使用 Stop-SPAssignment 命令来处理对象,则可能会发生内存不足的情况。 |
Site |
可选 |
Microsoft.SharePoint.PowerShell.SPSitePipeBind |
指定 Office Web Apps 缓存网站集的标识。 |
输入类型
返回类型
Example
---------------示例 1-----------
$a = Get-SPOfficeWebAppsCache -WebApplication "SharePoint - 80"
Get-Member -InputObject $a
$a.Quota
$a.Owner
此示例返回与名为 SharePoint - 80
的 Web 应用程序相关联的 Office Web Apps 缓存的当前配额和所有者。
---------------示例 2-----------
$cache = Get-SPOfficeWebAppsCache -WebApplication <WebAppURL>
$cache.Quota.StorageMaximumLevel
$cache.Quota.StorageWarningLevel
此示例返回 MaxSizeInBytes 和 WarningSizeInBytes 属性的当前值。
---------------示例 3-----------
$cache = Get-SPOfficeWebAppsCache -WebApplication <WebAppURL>
$web = Get-SPWeb -Site $cache.URL
$web.Properties
此示例返回 ExpirationPeriodInDays 属性的当前值。