我正在构建一个脚本,用于检查用户的homedirectory是否正确以及是否设置了正确的路径。 OU-1具有比OU-2更多的路径,并且一些用户是例外。但剧本不起作用。
这是我到目前为止所得到的:
$folderpath = "\\172.16.32.27\gebruikers\homedir\", "\\172.16.32.27\share\homedirectories\"
$homedrive = "H"
$SearchBase = "OU=test,DC=Test,DC=org", "OU=users,DC=Test,DC=org"
$domain = "test.org"
$excludes = @("test", "user22")
$i = 0
$filter3 = "homedirectory -notlike '$("$homepath[$i]")' -and samaccountname -ne '$($excludes -join "' -and samaccountname -ne '")'"
$SearchBase | foreach {
Get-ADUser -SearchBase $_ -Filter $filter3 -Properties HomeDirectory, UserPrincipalName, Homedrive, samaccountname | % {
$homedirectory = "$($folderpath[$i])$($_.SamAccountName)"
if (!(Test-Path -Path $homedirectory)) {
New-Item -Type Directory -Path $homedirectory
$acl = Get-Acl -Path $homedirectory
$permission = $_.UserPrincipalname, 'FullControl', 'ContainerInherit, ObjectInherit', 'None', 'Allow'
$rule = New-Object -TypeName System.Security.AccessControl.FileSystemAccessRule -ArgumentList $permission
$acl.SetAccessRule($rule)
$permission = "$domain\Domain Admins", 'FullControl', 'ContainerInherit, ObjectInherit', 'None', 'Allow'
$rule = New-Object -TypeName System.Security.AccessControl.FileSystemAccessRule -ArgumentList $permission
$acl.SetAccessRule($rule)
Set-Acl -Path $homedirectory -AclObject $acl
Set-ADUser $_ -HomeDirectory "$homedirectory" -HomeDrive $homedrive
} elseif ($_.HomeDirectory -ne "$homedirectory*" -or $_.Homedrive -ne "$homedrive") {
Set-ADUser $_ -HomeDirectory "$homedirectory" -HomeDrive $homedrive
}
}
$i++
}
答案 0 :(得分:1)
如果您在OU和主目录之间创建映射:
$homeShares = @{
'OU=test,DC=Test,DC=org' = '\\172.16.32.27\gebruikers\homedir'
'OU=users,DC=Test,DC=org' = '\\172.16.32.27\share\homedirectories'
}
你可以像这样处理它们:
foreach ($ou in $SearchBase) {
Get-ADUser -SearchBase $ou ... | ForEach-Object {
$homedirectory = Join-Path $homeShares[$ou] $_.SamAccountName
if (Test-Path ...) {
...
}
}
}
话虽如此,IMHO更清洁的方法是将所有主目录放在一个共享下,调整该共享文件夹上的(NTFS)权限,如下所示:
并且使用简单的登录脚本自动创建了缺少的主目录。批处理看起来有点像这样:
if not exist \\server\share\%username% mkdir \\server\share\%username%
但您也可以使用VBScript或PowerShell。
在此基础上启用Access-based Enumeration,您的用户不仅可以访问自己的家,而且甚至不会看到其他任何人。