how to use a stored session with powershell
Is there a way to reference a stored session when using powershell?
$session.Open($sessionOptions)
requires having the plain text password to use when building $sessionOptions, something I saved as a stored session so I wouldn't need it.
Is there a form something like
$session.OpenSession($sessionName)
to use all the settings available for the GUI session?
Or a callable method that will return the decrypted password given a session name, which could be used in building $sessionOptions?
Thanx,
Bill
$session.Open($sessionOptions)
requires having the plain text password to use when building $sessionOptions, something I saved as a stored session so I wouldn't need it.
Is there a form something like
$session.OpenSession($sessionName)
to use all the settings available for the GUI session?
Or a callable method that will return the decrypted password given a session name, which could be used in building $sessionOptions?
Thanx,
Bill