Skip to content

Files

Latest commit

 

History

History

Dual Accounts

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Dual Accounts

General

  • Uses REST API and can support v10.6 of PVWA and up.
  • Allow easy management for Dual Account.

Convert Platform DualAccount

Convert an existing Platform to support Dual Account use cases. This will add all the needed properties to the relevant Platform and allow account creation for Dual Account use cases.

This script can be supported from PVWA version 10.4 and above

Usage

Convert-Platform-DualAccount.ps1 -PVWAURL <string> -PlatformID <string> [-AuthType <string>] [-DisableSSLVerify] [<CommonParameters>]

Create Dual Account

Create accounts for Dual Account and adds them to a Rotational Group. This allows an application to work with two user accounts while one is active and the other passive. More information here

Note: Before running this script, make sure you have a Rotational Group Platform imported to your PVWA. You can download a Rotational Group sample platform from the CyberArk Marketplace

This script can be supported from PVWA version 10.6 and above

This script supports two modes: Interactive and NonInteractive.

Usage

Create-DualAccount.ps1 -PVWAURL <string> -Interactive [-AuthType <string>] [-DisableSSLVerify] [<CommonParameters>]
Create-DualAccount.ps1 -PVWAURL <string> -NonInteractive -CSVPath <string> -AccountPlatformID <string> -GroupPlatformID <string> -AccountSafeName <string> [-AuthType <string>] [-DisableSSLVerify] [<CommonParameters>]

Interactive

Create-DualAccount.ps1 -PVWAURL <PVWA URL> -PlatformID <Platform ID>

NonInteractive

Create-DualAccount.ps1 -NonInteractive -PVWAURL <PVWA URL> -CSVPath <CSV containing account details> -AccountPlatformID <Dual Account Platform ID> -GroupPlatformID <Rotational Group Platform ID> -AccountSafeName <Safe Name>

Known issues

Creation of Account Groups with a Rotational Group Platform Type is not yet supported. Change the Rotational Group Platform type to Group (instead of RotationalGroup) before running this script. After execution, change the platform type back to RotationGroup so Dual Account use case will work as expected.