Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 2.07 KB

azure-stack-find-cloud-id.md

File metadata and controls

54 lines (36 loc) · 2.07 KB
title description author ms.topic ms.date ms.author ms.reviewer ms.lastreviewed
Find your cloud ID
How to find your Cloud ID in Azure Stack Hub Help + Support.
sethmanheim
article
10/08/2019
sethm
shisab
10/08/2019

Find your Cloud ID

This topic covers how to get your Cloud ID by using the Administrator portal or the privileged endpoint (PEP). The Cloud ID is the unique ID for tracking support data uploaded from a specific scale unit. When diagnostic logs are uploaded for support analysis, the Cloud ID is how the logs are associated with that scale unit.

Use the administrator portal

  1. Open the Administrator portal.

  2. Select Region management.

    Screenshot of the Dashboard

  3. Select Properties and copy the Stamp Cloud ID.

    Screenshot of Region properties with Stamp Cloud ID

Use the privileged endpoint

  1. Open an elevated PowerShell session and run the following script. Replace the IP address of the PEP VM and Cloud Admin credentials as needed for your environment.

    $ipAddress = "<IP ADDRESS OF THE PEP VM>" # You can also use the machine name instead of IP here.
    
    $password = ConvertTo-SecureString "<CLOUD ADMIN PASSWORD>" -AsPlainText -Force
    $cred = New-Object -TypeName System.Management.Automation.PSCredential ("<DOMAIN NAME>\CloudAdmin", $password)
    $session = New-PSSession -ComputerName $ipAddress -ConfigurationName PrivilegedEndpoint -Credential $cred -SessionOption (New-PSSessionOption -Culture en-US -UICulture en-US)
    
    $stampInfo = Invoke-Command -Session $session { Get-AzureStackStampInformation }
    if ($session) {
        Remove-PSSession -Session $session
    }
    
    $stampInfo.CloudID

Next steps