Find-SCLibraryShare
Finds all of the shares on the specified computer or library server that can be added as library shares.
Syntax
Find-SCLibraryShare
[-VMMServer <ServerConnection>]
-Credential <VMMCredential>
[-ComputerName] <String>
[<CommonParameters>]
Find-SCLibraryShare
[-VMMServer <ServerConnection>]
-LibraryServer <LibraryServer>
[<CommonParameters>]
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 Virtual Machine Manager (VMM) library shares.
Examples
Example 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.
Example 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.
Parameters
-ComputerName
Specifies the name of a computer that VMM can uniquely identify on your network. The acceptable values for this parameter are:
- FQDN
- IPv4 or IPv6 address
- NetBIOS name
Type: | String |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Credential
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
.
Type: | VMMCredential |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-LibraryServer
Specifies a VMM library server object.
Type: | LibraryServer |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-VMMServer
Specifies a VMM server object.
Type: | ServerConnection |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Outputs
DiscoveredShare[]
This cmdlet returns an array of DiscoveredShare objects.