Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何知道我从哪里访问我的应用程序的 citrix 元框架演示服务器的版本和版本。
我只想知道版本和版本。请帮我。
如果以编程方式 ( Python) 您想这样做,那么
Python
首先获取主机记录
record = xenapi.host.get_record(this)
然后从记录中检索版本
version = '.'.join(record['software_version']['product_version'].split('.')[0:3])
只需打印record,我相信您也会在那里获得版本。只需执行字符串操作即可检索它。
record