List physical drive space

后端 未结 3 1054

I have around 200 servers and I need to get the disk space & logical drive space details (free space, used space & total space).

Here is my PowerShell query.

3条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-24 14:01

    I Have below script:
    And I am looking for help to convert the output to Excel format

    $Pather = Get-Content C:\Servers.txt
    foreach($Path in $Pather)
    {
      (Get-Acl $Path).access | ft $path,IdentityReference,FileSystemRights,AccessControlType,IsInherited -auto
    }
    

提交回复
热议问题