Posted On March 31, 2019

Quick 1-liner: Raise Domain Functional Level from 2003 to 2012 R2

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Quick 1-liner: Raise Domain Functional Level from 2003 to 2012 R2
This command is required to enable 2012R2 functional level (group policy replication)
adprep /domainprep /gpprep /domain kimconnect.com

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Quick PowerShell Cmdlet to Move Computer Object

$computername='SomeComputerName' $targetOU='OU=Computers,DC=kimconnect,DC=com' Move-ADObject -Identity (Get-ADComputer $computername).objectguid -TargetPath $targetOU

PowerShell: Create User Accounts From CSV File

# User-input Variables $csvFile='C:\Users-finalized.csv' $newOu='CN=Users,DC=kimconnect,DC=com' $newCompany='Kim Connect' $logFile="c:\temp\createActiveDirectoryAccounts-$(get-date -f yyyy-mm-dd-hh-mm-ss).txt" function createActiveDirectoryAccounts{ param( $csvFile, $newOu,…

An Experience in Upgrading Synology SSD Cache Drives

This is a quick note to myself so that I wouldn't repeat the same mistake…