Find-SCLibraryShare

Finds all of the shares on the specified computer or library server that can be added as library shares.

Description

The Find-SCLibraryShare cmdlet finds all of the shares on the specified computer or library server that can be added as library shares. For library servers, this command also returns shares that are already System Center Virtual Machine Manager (VMM) library shares.

For more information about Find-SCLibraryShare, type: "Get-Help Find-SCLibraryShare -online".

Parameters

LibraryServer

Required? true
Accept Pipeline Input? false
Position? named
Specifies a VMM library server object.

VMMServer

Required? false
Accept Pipeline Input? false
Position? named
Specifies a VMM server object.

ComputerName

Required? true
Accept Pipeline Input? false
Position? 0
Specifies the name of a computer that VMM can uniquely identify on your network. Valid formats are: FQDN, IPv4 or IPv6 address, or NetBIOS name.

NOTE: See the examples for a specific cmdlet to determine how that cmdlet specifies the computer name.

Credential

Required? true
Accept Pipeline Input? false
Position? named
Specifies a credential object or, for some cmdlets, a Run As account object that contains the user name and password of an account that has permission to perform this action. Or, in the case of Restart-SCJob, has permission to complete a restarted task. 

For more information about the PSCredential object, type: "Get-Help Get-Credential". 
For more information about Run As accounts, type: "Get-Help New-SCRunAsAccount".

VMMServer

Required? false
Accept Pipeline Input? false
Position? named
Specifies a VMM server object.

Examples

1: Find Windows shares on a computer that is not yet a VMM library server.
PS C:\> $Credential = Get-Credential
PS C:\> Find-SCLibraryShare -Credential $Credential -ComputerName "Server01.Contoso.com"
The first command uses Get-Credential to prompt you to supply a user name and password with permissions to access Windows shares on Server01 and stores your credentials in the $Credential variable.

The second command confirms that you have valid credentials for this operation and then displays all existing Windows shares capable of becoming VMM library shares.
2: Find shares on a VMM library server.
PS C:\> Find-SCLibraryShare -LibraryServer "LibraryServer01.Contoso.com"
This command displays all Windows shares capable of becoming library shares that exist on LibraryServer01 as well as all shares that are already VMM library shares.

See Also