Wednesday, May 16, 2018

Disable Internet Explorer Enhanced Security Configuration (IE ESC)

To disable IE Enhanced Security Configuration in Windows Server 2016
Open the Server Manager.
Click IE Enhanced Security Configuration
 
 
Select 'Off' in the Administrators and Users sections
 
 
Click OK
Restart Internet Explorer for changes to take effect
 

Friday, May 11, 2018

Зміними стандартний Organizational Unit (OU) для нових комп'ютерів в Active Directory

Нові комп'ютери в Active Directory за замовчуванням створюються в контейнері (OU) Computers (CN=Computers,DC=myDomain,DC=com)
 
Щоб це змінити - зайдіть на контролер домену як адміністратора домену (Domain Admin)
Виконайте команду:
 
    ReDirCmp Container-DN
 
де Container-DN - це значення адтрибуту DistinguishedName контейнера (OU), в якому за замовчуванням будуть додаватись нові комп'ютери.
Наприклад:
 
    redircmp "OU=New Computers, DC=myDomain, DC=com"
 
 
Щоб повернутись до типових налаштувань:
 
    redirusr cn=Computers, DC = myDomain, dc=com
 
 
Примітка.
Функціональний рівень домену повинен бути не нижче Windows Server 2003
 
 
 

Зміними стандартний Organizational Unit (OU) для нових користувачів в Active Directory

Нові користувачі в Active Directory за замовчуванням створюються в контейнері (OU) Users (CN=Users,DC=myDomain,DC=com)
 
Щоб це змінити - зайдіть на контролер домену як адміністратора домену (Domain Admin)
Виконайте команду:
 
   ReDirUsr Container-DN
 
де Container-DN - це значення адтрибуту DistinguishedName контейнера (OU), в якому за замовчуванням будуть створюватись нові користувачі.
 
Наприклад:
 
    redirusr "OU=New Users, DC=myDomain, DC=com"
 
 
Щоб повернутись до типових налаштувань - виконайте команду:
 
    redirusr cn=Users, dc = myDomain, dc=com
 
 
 
Примітка.
Функціональний рівень домену повинен бути не нижче Windows Server 2003
 
 

Friday, May 4, 2018

DHCPServerTip: Enable/Disable all scopes on DHCP Server

To Deactivate/Disable all IPv4 Scopes on DHCP server you may use PowerShell Command:

[PS] Get-DhcpServerv4Scope | Set-DhcpServerv4Scope -State Inactive



To Activate/Enable all IPv4 Scopes on DHCP server:

[PS] Get-DhcpServerv4Scope | Set-DhcpServerv4Scope -State Active



To view all IPv4 Scopes on DHCP server

[PS] Get-DhcpServerv4Scope -ComputerName <DHCP-ServerName>


Migrate DHCP from one Windows Server to another Windows Server

Log on to the old/existing DHCP server.
Open CMD and type command

 
netsh dhcp server export C:\Users\%username%\Desktop\dhcp.txt all
 
 

Log on to the new DHCP server.
Install the DHCP role on the new DHCP server.
Verify that the DHCP service is installed and started on the new DHCP server.
Copy the exported DHCP text file to the new DHCP server.
Open CMD and type command

netsh dhcp server import C:\Users\%username%\Desktop\dhcp.txt all
 

 
Authorize new DHCP server in Active Directory.
Stop or uninstall DHCP role on the old DHCP server.


Note:
If your old DHCP server is in the same network/subnet as the new DHCP server, you will notice that the old DHCP server has been de-authorized automatically. This is to prevent two DHCP servers from handing out conflicting addresses.