Description
This cmdlet is used to include an ezeep Hub into the cloud management of ezeep Blue using its MAC address (= Claim Hub); see section Managing Hubs in the cloud.
Syntax
Add-TPHubClaimEzpHub -Serial <string> Add-TPHubClaimEzpHub -SerialPiped <string>
Parameter | Description |
-Serial | Passing MAC address of the relevant Hub as a string or by a variable |
-SerialPiped | Passing MAC address of the relevant Hub by a variable |
Example 1
$macaddress2="b8:27:eb:2f:7a:a1" Add-TPHubClaimEzpHub -Serial $macaddress2 Get-TPHubAuthentication -PlainPassword print4life -ConnectorSerial $macaddress2
Example 2
Add-TPHubClaimEzpHub -Serial "b8:27:eb:2f:7a:a1"
Example 3
$macaddress="b8:27:eb:2f:7a:a1" Add-TPHubClaimEzpHub -SerialPiped $macaddress
or:
$macaddress = "b8:27:eb:2f:7a:a1" $macaddress | Add-TPHubClaimEzpHub