0

我正在尝试使用Get-Acland更改文件夹所有者Set-Acl。问题在于当我尝试Get-Acl通过使用更改对象时.setOwner()这是更改对象所有者属性的正确方法吗?我目前使用的是 PS 2.0。

$DomainNameShort = "domain"
$profileName = "user_name"
$newProfileLocation = "\\server\folder"
$objUser = New-Object System.Security.Principal.NTAccount("$DomainNameShort\$profileName")
$objFile = Get-Acl $newProfileLocation
$objFile.SetOwner($objUser)
Set-Acl -aclobject $objFile -path $newProfileLocation

这是我得到的错误:

Exception calling "SetOwner" with "1" argument(s): "Some or all identity references could not be translated
."
At line:6 char:18
+ $objFile.SetOwner <<<< ($objUser)
    + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : DotNetMethodException

任何指导将不胜感激,谢谢。

4

1 回答 1

0

您的域或用户名不正确。

SetOwner()可以验证提供的身份$objuser

注意请注意,Set-Acl在共享(不是共享下的文件夹,而是根/共享本身)上使用可能会破坏权限继承。

于 2013-05-21T15:36:31.893 回答