「的文件和subfoldes所有者信息列表」我可以看到一些在這個環節「https://community.spiceworks.com/scripts/show/1722-get-fileowner」與powershelll腳本
我試過,但例子,但他們都不是在爲me.Thanku!
「的文件和subfoldes所有者信息列表」我可以看到一些在這個環節「https://community.spiceworks.com/scripts/show/1722-get-fileowner」與powershelll腳本
我試過,但例子,但他們都不是在爲me.Thanku!
這將做到這一點
get-childitem c:\users\usera\documents -Recurse | foreach{
$f = $_.FullName
$o = Get-Acl $f | Select -ExpandProperty Owner
Write-Output "$f is owned by $o"
}
,問題是......?請概述您已經嘗試過的方法以及您卡住的位置,最好使用代碼示例。 – jlapoutre
這可能嗎?是的,是的。 – TheMadTechnician