如何在 PowerShell 中对 VMware ESX Server 执行 HTTP PUT 上传?
VMware ESX、ESXi 和 VirtualCenter 从 3.5 版开始就应该能够支持 HTTP PUT 上传。 我知道如何下载,这很简单。 我以前从未做过 PUT。
有关该主题的背景信息如下:http://communities.vmware.com/thread/117504
VMware ESX, ESXi, and VirtualCenter are supposed to be able to support HTTP PUT uploads since version 3.5. I know how to do downloads, that's easy. I've never done PUT before.
Background information on the topic is here: http://communities.vmware.com/thread/117504
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该查看 PoshCode cmdlet 脚本模块 中的
Send-PoshCode
函数。 ..它使用 POST,而不是 PUT,但技术实际上是相同的。 我没有可以想到的 PUT 服务器来进行测试,但基本上,设置您的 $url 和 $data,然后执行以下操作:You should have a look at the
Send-PoshCode
function in the PoshCode cmdlets script module ... it uses a POST, not a PUT, but the technique is practically identical. I don't have PUT server I can think of to test against, but basically, set your $url and your $data, and do something like:在VI Toolkit Extensions中使用Copy-TkeDatastoreFile。 它将与二进制文件一起使用。
In the VI Toolkit Extensions use Copy-TkeDatastoreFile. It will work with binaries.