Backup Exec Management Command Line Interface Help
New-BESharePointSharedServiceApplicationProxySelection Cmdlet
Synopsis

Creates a backup selection object for Microsoft SharePoint 2007 and 2010 shared service application proxies.

Syntax
New-BESharePointSharedServiceApplicationProxySelection [[-ProxyName] [<String>]] [-Exclude [<SwitchParameter>]] [<CommonParameters>]
Description

Creates a backup selection object for Microsoft SharePoint 2007 and 2010 shared service application proxies.

Parameters

-ProxyName <String>

Specifies the name of a shared service application proxy. Specify '*' to indicate all available shared service application proxies.


Required false
Position 0
Accepts pipeline input true (ByValue ByPropertyName)
Accepts wildcard characters false


-Exclude <SwitchParameter>

Excludes the shared service application proxies specified with -ProxyName parameter.


Required false
Position Named
Accepts pipeline input false
Accepts wildcard characters false


<CommonParameters>

For more information about common parameters, type "Get-Help about_commonparameters".

Input Type
System.String

You can pipe a string object to New-BESharePointSharedServiceApplicationProxySelection.

Return Value
BackupExec.Management.CLI.BESharePointSharedServiceApplicationProxySelection

New-BESharePointSharedServiceApplicationProxySelection returns an BESharePointSharedServiceApplicationProxySelection object.

Examples

Example 1

C:\PS> $x = New-BESharePointSharedServiceApplicationProxySelection -ProxyName "ServiceProxy"
C:\PS> Get-BEAgentServer -Local | New-BEBackupDefinition -BackupJobDefault BackupToDisk -SharePointSharedServiceApplicationProxySelection $x | Save-BEBackupDefinition

These commands create a backup definition that backs up the shared service application proxy named "ServiceProxy" for the local computer using the "BackupToDisk" job defaults.


Example 2
C:\PS> $x = "ServiceProxy" | New-BESharePointSharedServiceApplicationProxySelection
C:\PS> Get-BEAgentServer -Local | Submit-BEOnetimeBackupJob -SharePointSharedServiceApplicationProxySelection $x

These commands submit a one-time backup job that backs up the shared service application proxy named "Database1" on the local computer.

Related Links

Get-BEAgentServer
New-BEBackupDefinition
Save-BEBackupDefinition
Submit-BEOnetimeBackupJob