Hi,
I'm searching how to install my enterprise license with powershell.
Thanks you !
Hi,
There are 2 ways depending on your use case.
If you use RDM and want to use PowerShell in conjuction, using the same data sources, you can reuse your config file this way
$ov = Get-RDMPowerShellOverride $ov.OptionFilePath = 'path/to/rdm/RemoteDesktopManager.cfg" Set-RDMPowerShellOverride
PowerShell should pick up the license RDM is registered with.
If you don't have RDM installed or configured, you can register PowerShell this way
$reg = Get-RDMRegistrationInfo $reg.Name = 'your name' $reg.Email = 'your email' $reg.Serial = 'your serial' Set-RDMRegistrationInfo
Let me know if this helps
Regards
Jonathan Lafontaine
That what I want !
Thanks you !