Ransomware attackers specifically target and attempt to destroy backup systems to increase the probability of payment. Hardening your system is critical. Please ensure you have reviewed your platform security using the Security Hardening Checklist
Cohesity

COHESITY Documentation

Explore our documentation to get started, discover products & new features, access troubleshooting guides, register sources, platforms support.

Products
Data Security Alliance
Visit Cohesity.com
Demos
Support
Blogs
Developers
Partner Portals
Cohesity Community
© 2026 Cohesity, Inc. All Rights Reserved.
Terms of Use|
Privacy Policy|
Legal|
  1. Home
  2. IT Analytics Help
  3. Section XII. Cloud
  4. Configuration for Microsoft Azure
  5. Register a new application for the Data Collector

Register a new application for the Data Collector

Azure requires a new Application be registered before you can interact with it.

To register a new Application for the Data Collector

You must be logged into your account within Azure Windows PowerShell. The following steps are performed at the Microsoft Azure PowerShell prompt.

  1. Set the context using your Tenant ID and Subscription ID by entering:
    Set-AzureRMContext -SubscriptionId <SUBSCRIPTIONID> -TenantId <TENANTID>
  2. Set the Password in a SecureString:
    $securePwd = ConvertTo-SecureString "<PASSWORD>" -AsPlainText -Force
  3. Revise the DisplayName, Hostname, and Azure Default Directory. Copy/paste the following at the prompt:

    Note:

    Azure Default Directory can be found in your Azure account under Subscription>Overview.

    $azureAdApplication = New-AzureRmADApplication -DisplayName "<DISPLAYNAME>" -HomePage "https://<HOSTNAME>.<AZURE-DEFAULT-DIRECTORY>" -IdentifierUris "https://<HOSTNAME>.<AZURE-DEFAULT-DIRECTORY>" -Password $securePwd -AvailableToOtherTenants $true
  4. Enter the following to display your application parameters:
    $azureAdApplication
  5. Write down the Subscription ID, Tenant ID, Application ID, and the Password you chose. The Application ID is displayed in the output. The Data Collector requires those four parameters.

Feedback

Was this page helpful?
Previous

Find your tenant and subscription ID

Next

Create a principal and assign role to the application

Feedback

Was this page helpful?