New-DPMSearchOption
创建一个对象,该对象指定可恢复对象的搜索选项。
语法
New-DPMSearchOption
[-FromRecoveryPoint] <DateTime>
[-ToRecoveryPoint] <DateTime>
[-SearchDetail] <SearchForDetail>
[-SearchType] <SearchFilterType>
[-SearchString] <String>
[-Location <String>]
[-Recursive]
[<CommonParameters>]
说明
New-DPMSearchOption cmdlet 创建一个对象,该对象指定 System Center - Data Protection Manager (DPM) 管理的可恢复对象的搜索选项。 可以指定要搜索的搜索字符串、要搜索的恢复点范围、要搜索的对象的类型,以及是否以递归方式搜索的位置。
使用 Get-DPMRecoverableItem cmdlet 执行搜索。
示例
示例 1:创建搜索选项
PS C:\>New-DPMSearchOption -FromRecoveryPoint "15 September 2009" -ToRecoveryPoint "28 September 2009" -SearchDetail FileFolders -SearchType contains -Recursive -SearchString "tobe" -Location "D:\"
此命令为 2009 年 9 月 15 日至 2009 年 9 月 28 日之间的恢复点创建搜索选项对象。 该对象指定搜索包含要位于位置 D: 中的字符串的文件和文件夹。 该命令将搜索指定为递归搜索。 因此,搜索还会检查 D:\ 驱动器中文件夹中的文件和文件夹。
参数
-FromRecoveryPoint
指定日期时间对象。 这是搜索范围的第一个日期。
类型: | DateTime |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-Location
指定恢复点的位置。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Recursive
指示搜索是递归的。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-SearchDetail
指定要搜索的对象的类型。
此参数的可接受值为:
- FileFolders
- MailboxByAlias
- MailboxByDisplayName
- WssSite
- WssDocuments
类型: | SearchForDetail |
接受的值: | FilesFolders, MailboxByAlias, MailboxByDisplayName, WssSite, WssDocuments, ClientVolumes |
Position: | 3 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-SearchString
指定要在目标恢复点中搜索的字符串。
类型: | String |
Position: | 5 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-SearchType
指定搜索的比较类型。
此参数的可接受值为:
- startsWith
- 包含
- endsWith
- exactMatch
类型: | SearchFilterType |
接受的值: | startsWith, contains, endsWith, exactMatch |
Position: | 4 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-ToRecoveryPoint
指定日期时间对象。 这是搜索范围的最后一个日期。
类型: | DateTime |
Position: | 2 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
输出
SearchOption