通过powershell在xenapp上运行应用程序

时间:2016-09-16 19:29:29

标签: powershell citrix xenapp

我可以通过powershell登录xenapp:

$ie = New-Object -com InternetExplorer.Application
$ie.Navigate("https://citrixurl")     
$ie.visible = $true    
$ie.document.getElementById('user').value = 'username'
$ie.document.getElementById('password').value = 'password'    
$ie.document.getElementById('btnLogin').click()

但我不知道如何在那里运行特定的应用程序。

我是否需要Citrix Powershell SDK?

0 个答案:

没有答案