1 / 6

Создание основными объектами Active Directory с помощью PowerShell и команды DSAdd

Создание основными объектами Active Directory с помощью PowerShell и команды DSAdd. Докладчик : Павленко Евгений. О чем мы сегодня поговорим. Создание основных объектов Active Directory c помощью DSAdd Создание основных объектов Active Directory c помощью PowerShell

coyne
Download Presentation

Создание основными объектами Active Directory с помощью PowerShell и команды DSAdd

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Создание основными объектами Active Directory с помощью PowerShell и команды DSAdd Докладчик: Павленко Евгений

  2. О чем мы сегодня поговорим • Создание основных объектов Active Directory c помощью DSAdd • Создание основных объектов Active Directory c помощью PowerShell • Работа с Active Directory Recycle Bin

  3. Демонстрация

  4. Включение Recycle Bin • Enable-ADOptionalFeature –Identity ‘CN=Recycle Bin Feature,CN=Optional Features,CN=Directory Service,CN=Windows NT,CN=Services,CN=Configuration, DC=demo,DC=dc’ –Scope ForestOrConfigurationSet –Target ‘demo.dc’ • Восстановление объекта • Get-ADObject -SearchBase "CN=Deleted Objects,DC=contoso,DC=com" -Filter {name -eq “Mary"} -IncludeDeletedObjects | Restore-ADObject Примеры команд

  5. Создание OU • DSaddou“ou=New OU, dc=demo, dc=dc” • Создание пользователя • DSadduser "cn=user, ou=New OU, dc=demo, dc=dc" –samid user –pwd* • Создание группы • DSaddgroup “cn=sales,cn=users, dc=demo, dc=dc” -secgrp yes –scope g • Создание компьютера • DSaddcomputer “cn=client01, dc=demo, dc=dc” Примеры команд

  6. Создание OU • New-ADOrganizationalUnit-name test -Path "ou=eugen,dc=sws,dc=com" • Создание пользователя • New-ADUser-SamAccountName "Mary" -GivenName "Mary" -Surname "John" • -DisplayName"Gmery John" -Path 'CN=Users, dc=demo, dc=dc • Создание группы • New-ADGroup-Name "Mary Department" -GroupCategory Security -GroupScopeGlobal -Path "CN=Users,DC=demo,DC=dc" -Description "Members of Mary Department" • Создание компьютера • New-ADComputer-Name "Mary-PC" -Path "OU=Eugen,DC=demo,DC=dc" Примеры команд

More Related