문제

I just started writing powershell scripts for Citrix XenServer. However, I can only find code snippets and this cmdlet poster on the internet.

Where can I find a full documentation with explanations and possible parameters directly from Citrix? All APIs and references available are only valid for the command line.

Thank you!

도움이 되었습니까?

해결책

The best I could find was a reference for the underlying SDK. The cmdlets are apparently implemented using the original XenServer management API, and that API is documented. You can find a reference for it here:

http://support.citrix.com/article/CTX130426

I couldn't find anything more than that reference poster for the cmdlets however.

It's not ideal, but you can use .NET Reflector to look at the underlying code of the cmdlets to see how they are using the XenServer management API and then cross reference the docs for that API.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top