我是脚本新手,我正在尝试将有关VM的信息写入文本文件.我的脚本看起来像这样: Connect-VIServer -Server 192.168.255.255 -Protocol https -User xxxx -Password XXXXXXGet-VM -Name xxxxxx Get-VM xxxxx | Get-HardDisk |
Connect-VIServer -Server 192.168.255.255 -Protocol https -User xxxx -Password XXXXXX Get-VM -Name xxxxxx Get-VM xxxxx | Get-HardDisk | Select Parent, Name, Filename, DiskType, Persistence | FT -AutoSize Out-File -FilePath C:Filepath
我能够连接到VM,检索硬盘信息并在控制台中查看.该文件在我想要的地方创建并正确命名.没有数据被放入文件中.我尝试过相同结果的Tee-Object.我也试过-append开关.我确实看到一篇关于数据作为数组返回的帖子,而Powershell无法将数据从数组移动到字符串.我是否需要创建一个变量来保存返回的数据并从那里写入文件?
谢谢
试试这个:Get-VM xxxxx | Get-HardDisk | Select Parent, Name, Filename, DiskType, Persistence | Out-File -FilePath C:\Filepath