HP StorageWorks Storage Mirroring Recover Scripting Guide (T5437-96022, November 2010)

Using variables to pause a target
The following script uses variables to identify the target and credentials to login to that
target. These variables are then used in the scripting commands to pause the target.
$TheTarget = "beta";
$TheUser = "admin";
$ThePassword = "password";
$TheDomain = "domain.com";
login $TheTarget $TheUser $ThePassword $TheDomain;
target $TheTarget;
pausetarget $TheTarget;