citrix

安装citrix xenserver 7.1.0系统

混江龙づ霸主 提交于 2019-12-16 08:36:22
1、进入安装界面,如下图所示: 2、选择-键盘模式选择默认-美式,ok,如下图所示: 3、提醒你安装系统时将清除磁盘信息,做好备份,点击ok,如下图所示: 4、这里选择Accept EULA,如下图所示: 5、选择安装在本地硬盘上,选择第一项,点击ok,如下图所示: 6、安装介质选择本地光盘local media,第一项,点击ok,如下图所示: 7、这里选择 Skip verification , 跳过安装介质的检测,点击OK,如下图所示: 8、设置密码,输入XenServer的登陆密码,就是root密码,如下图所示: 9、选择网卡(因为我的网卡有4个,我选择eth0),点击OK,如下图所示: 10、定义管理网络IP地址,我这里选择手动配置IP地址,输入IP、 掩码、 网关,点击ok,如下图所示: 11、输入自定义的Hostname(计算机名),填入DNS Server1地址,如下图所示: 12、地区选择 Asia(亚洲),如下图所示: 13、时区选择 Shanghai,如下图所示: 14、设置时间方式,选择Manual timeenty(手动输入时间),点击OK,如下图所示: 15、全部设置完成后,开始安装,选择Install XenServer,敲回车,如下图所示: 16、开始安装XenServer的界面,如下图所示: 17、选择 NO ,不安装帮助文档,如下图所示: 18

VBS: ActiveX component can't create object: 'Citrix.ICAClient' errror on 64-bit

丶灬走出姿态 提交于 2019-12-13 19:57:01
问题 I have a script that looks for all open Citrix connections and disconnects any of them that aren't associated with the user logged in to Windows (Citrix Web Interface connections). It works perfectly fine on 32-bit machines (XP or 7) but not on 64-bit. I know it does rely on two Citrix reg keys ( AllowLiveMonitoring & AllowSimulationAPI ) and the WfIcaLib.dll , which will be in different locations on different architecture. I thought it was something with my script and 64-bit, but when I

Invoke-Command script block not generating output

十年热恋 提交于 2019-12-13 19:03:15
问题 I am trying to use a script block in a remote powershell session. This command is working and I get an output about the machine state: $SecurePassword = $ParamPassword | ConvertTo-SecureString -AsPlainText -Force $cred = New-Object System.Management.Automation.PSCredential ` -ArgumentList $UserName, $SecurePassword $ParamDomain = 'mydomain' $ParamHostname = "myhostname" $fullhost = "$ParamDomain"+"\"+"$ParamHostname" #Get-BrokerMachine No1 if ($ParamCommand -eq 'Get-BrokerMachine'){ $s = New

Why does first call to java.io.File.createTempFile(String,String,File) take 5 seconds on Citrix?

℡╲_俬逩灬. 提交于 2019-12-13 15:41:32
问题 While debugging slow startup of an Eclipse RCP app on a Citrix server, I came to find out that java.io.createTempFile(String,String,File) is taking 5 seconds. It does this only on the first execution and only for certain user accounts. Specifically, I am noticing it Citrix anonymous user accounts. I have not tried many other types of accounts, but this behavior is not exhibited with an administrator account. Also, it does not matter if the user has access to write to the given directory or

How to get unique ID of a Citrix XenServer VM from the guest OS?

二次信任 提交于 2019-12-12 19:16:20
问题 Let's say I have multiple Citrix XenServer VMs with the same name. Or, the names are garbage, doesn't matter. From the guest OS on one of those VMs, how can I programatically determine the ID of the VM? I was hoping the UUID of the VM would should as the guest OS's BIOS serial number, but it doesn't. Have looked everywhere, registry, WMI, you name it. Now, the reason I won't just use the hostname, is that I might have multiple machines with same hostname (e.g. a full lab with copies of VMs).

Should I call Application.EnableVisualStyles() on terminal services?

ⅰ亾dé卋堺 提交于 2019-12-12 17:21:37
问题 In a terminal services/citrix environment, should I call Application.EnableVisualStyles() in my .NET 3.5 WinForms app when my program starts? Or, is it better to refrain from doing that? I am looking for the option that gives the best performance, and do not need any controls drawn with themes. 回答1: Visual styles are the colors, fonts, and other visual elements that form an operating system theme. Controls will draw with visual styles if the control and the operating system support it. To

How do I call CITRIX (LogMeIn) API via PHP to register new GotoWebinar attendee?

最后都变了- 提交于 2019-12-12 07:23:42
问题 I am using the below code to register user to the webinar: $headers = array( 'HTTP/1.1', 'Accept: application/json', 'Accept: application/vnd.citrix.g2wapi-v1.1+json', 'Content-Type: application/json', 'Authorization: OAuth oauth_token='.$access_token, 'Name_First:test', 'Name_Last:ank', 'Email:ankinfo@yahoo.com', ); $gtw_url = "https://api.citrixonline.com/G2W/rest/organizers/{organizerkey}/webinars/{webinarkey}/registrants"; $curl = @curl_init(); @curl_setopt($curl, CURLOPT_HTTPHEADER,

Live migrate local XenServer VM's not working - XenAPI

五迷三道 提交于 2019-12-11 19:55:49
问题 I want to use python and the xenserver API to live migrate locally stored VM's, within a pool. I am using the xenapi.VM.Pool_Migrate($vm, $host, $options) call and when I run it, the icon for the VM in XenCenter turns yellow for a moment, and the script exits cleanly, but the VM does not move. I think this is because the VM is locally stored on the host. But I can manually migrate it to another host within XenCenter, so how do I do this in the API? 回答1: This works for me. Get the vm_ref and

Deploy Access 2007 Database with SQL back end to Citrix for multiple users

佐手、 提交于 2019-12-11 12:52:17
问题 Situation : I recently took IT Support ownership of our Time Tracking database at my company (the old owner left). This was written in Access 2007 and uses SQL Server 2008 R2 Tables and views in the back end. We publish a locked (db.accde) version to our Citrix farm and users access it by logging into a citrix web portal and clicking on the icon for the Access Database. I have a need to move this from once server to a different server so the old one can be sunset. I tried simply copying the

How to open a .ica downloaded file from selenium c# [duplicate]

时间秒杀一切 提交于 2019-12-11 08:05:53
问题 This question already has answers here : How to download any file and save it to the desired location using Selenium Webdriver (7 answers) Closed 2 years ago . I have a below code. after ds.Click(); one file will be downloaded to downloads folder, the file will be as a .ica extension . IWebDriver cobj = new ChromeDriver(); cobj.Navigate().GoToUrl("https://XX.xxx.xx"); IWebElement u = cobj.FindElement(By.Name("login")); IWebElement p = cobj.FindElement(By.Name("passwd")); IWebElement b = cobj