Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1010 Bytes

how-to-use.md

File metadata and controls

39 lines (26 loc) · 1010 Bytes

How to use

  • After installation, you can import Cohesity PowerShell Module in your scripts as below

    Get-Module -ListAvailable -Name Cohesity* | Import-Module
  • To get a list of available Cohesity Cmdlets

    Get-Command *Cohesity*
  • To get brief help for available Cohesity Cmdlets

    Get-Help *Cohesity* | ft -Property Name, Synopsis
  • To get detailed help for a specific Cohesity Cmdlet

    Get-Help <cmdlet-name> -Full
  • Run Connect-CohesityCluster cmdlet before using any other Cmdlets

    Connect-CohesityCluster -Server cohesity-cluster.example.com -Credential (Get-Credential)

    You can also export and persist the credential securely using PSCredentialTools and then import it in your scripts.

  • You are all set! Now explore other Cohesity Cmdlets such as

    Get-CohesityProtectionJob