gpt4 book ai didi

powershell - 获取文件所有者/作者

转载 作者:行者123 更新时间:2023-12-02 22:11:23 27 4
gpt4 key购买 nike

我有以下脚本从C:驱动器中检索特定文件类型,并将特定文件属性输出到定界的CSV文件。我还希望能够检索文件所有者和作者。很感谢任何形式的帮助。

# PowerShell script to list the .xlsx  files under the C Drive
$Dir = get-childitem "C:" -recurse -force
$List = $Dir | where {$_.extension -eq ".xlsx"}
$List |Select-Object fullname, LastAccessTime, LastWriteTime, CreationTime |Export-Csv -path C:\Scripts\xlsx.csv -NoTypeInformation

最佳答案

我发布此消息后,便能够找到解决方案。我在选择对象字符串中添加了@{N='Owner';E={$_.GetAccessControl().Owner}}。现在看起来像这样:

$List | Select-Object fullname, LastAccessTime, LastWriteTime, CreationTime, @{N='Owner';E={$_.GetAccessControl().Owner}} | Export-Csv -path C:\Scripts\xlsx.csv -NoTypeInformation

关于powershell - 获取文件所有者/作者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42193597/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com