Browsing: Windows Server

Windows Server

Today I got a call from a customer that was working on a Office 365 Project. As part of the Project they wanted to change the Exchange Email Address Policies to filter on the Company Name for each user. Only problem was that some of the users had a blank or misspelled Company name…Luckily, someone invented PowerShell so we started by pulling a list of all Company Names by running this command:Get-ADUser -Filter * -Properties Company | Group Company | Select Name,CountThe result was as expected… Too many company names. Misspelled Company Names and users with no company name specified…

With the release of Windows 10, more and more customers are starting to move from the traditional KMS based activation model to Active Directory-based activation (ADBA). In a single domain environment, the setup process is really simple, and a complete step-by-step guide can be found here: https://technet.microsoft.com/en-us/library/dn613828.aspx. But if you’re using a multi domain setup, you might see this errors when you try to Activate online. In this specific scenario, we had the KMS server installed the child domain, and new servers in the forest root domain was activated using a MAK key. This is not supported if you want…

Virtual Machine Manager (VMM) in the community technology preview (CTP) of System Center 2012 SP1 provides the following new features: Network virtualization VHDX support Support for file shares that use the Server Message Block (SMB) 2.2 protocol Live migration enhancements Network Virtualization VMM in the CTP release of System Center 2012 SP1 provides support for the network virtualization capabilities available in Windows Server “8” Beta. Network virtualization provides the ability to run multiple virtual network infrastructures, potentially with overlapping IP addresses, on the same physical network. With network virtualization, each virtual network infrastructure operates as if it is the only…

As a consultant and instructor I use my virtual labs every day for developing, testing and doing demos. My virtual lab has 2 Domain Controllers and and a member server for each role or version of a product that I need in my lab. Most of my member servers has a lot of snapshots, so I can “travel” back and forward in time if I need to test stuff over and over again. Or if I’m testing a beta product where I get get new builds, so I don’t need to configure all the pre-requirements over and over again. If…

From time to time I spend time on troubleshooting Active Directory and SYSVOL replication at my customers. The built in replication schedule are great, but some time it’s nice to force replication on all Domain Controllers to minimize the waiting time… This script will force an instant replication on all domain controllers. ReplicateAD.vbs Option Explicit Dim objDSE, strDN, objContainer, objChild, sCommand, WshShell Set objDSE = GetObject(“LDAP://rootDSE”) strDN = “OU=Domain Controllers,” & objDSE.Get(“defaultNamingContext”) Set objContainer = GetObject(“LDAP://” & strDN) sCommand = “%COMSPEC% /C ” Set WshShell = WScript.CreateObject(“WScript.Shell”) objContainer.Filter = Array(“Computer”) For Each objChild In objContainer WshShell.Run(sCommand & “repadmin /syncall “…

The list of Active Directory Schema versions: Windows 2000 RTM = Schema version 13 Windows Server 2003 = Schema version 30 Windows Server 2003 R2 = Schema version 31 Windows Server 2008 = Schema version 44 Windows Server 2008 R2 = Schema version 47 Windows Server 2012 =  Schema version 56 Windows Server 2012 R2 =  Schema version 69 Windows Server 2016 =  Schema version 87 Check the schema version in the Registry: HKLMSYSTEMCurrentControlSetServicesNTDSParameters<Schema Version>

Multiple Group Policy Preferences have been added to the Windows Server 2008 Group Policy Management Console (which are also available through the Remote Server Administration Toolset (RSAT) for Windows Vista SP1). Group Policy Preferences enable information technology professionals to configure, deploy, and manage operating system and application settings they previously were not able to manage using Group Policy. A few days ago Microsoft released a new version of the Group Policy Preference Client Side Extensions. Microsoft Windows XP (x86): http://www.microsoft.com/downloads/details.aspx?FamilyID=e60b5c8f-d7dc-4b27-a261-247ce3f6c4f8&DisplayLang=en Microsoft Windows XP (x64): http://www.microsoft.com/downloads/details.aspx?FamilyID=249c1aed-c1f1-4a0b-872e-ef0a32170625&DisplayLang=en Microsoft Windows Server 2003 (x86): http://www.microsoft.com/downloads/details.aspx?FamilyID=bfe775f9-5c34-44d0-8a94-44e47db35add&DisplayLang=en Microsoft Windows Server 2003 (x64): http://www.microsoft.com/downloads/details.aspx?FamilyID=29e83503-7686-49f3-b42d-8e5ed23d5d79&DisplayLang=en For more information…

Active Directory Explorer (AD Explorer) is an advanced Active Directory (AD) viewer and editor. You can use AD Explorer to easily navigate an AD database, define favorite locations, view object properties and attributes without having to open dialog boxes, edit permissions, view an object’s schema, and execute sophisticated searches that you can save and re-execute. AD Explorer also includes the ability to save snapshots of an AD database for off-line viewing and comparisons. When you load a saved snapshot, you can navigate and explorer it as you would a live database. If you have two snapshots of an AD database…