Directory synchronization is currently in a pending disable state for this directory

CAUSE:The on-premises AD DS is no longer available. Therefore, you can’t manage or delete the object from the on-premises environment. Solution: Install the Azure Active Directory Module for Windows PowerShell. For more info, go to the following Microsoft website: Manage Azure AD using Windows PowerShell Connect to Azure AD by using Windows PowerShell. Disable directory… Read More Directory synchronization is currently in a pending disable state for this directory

Using MS Graph to Duplicate Device Configuration Policies

Open https://developer.microsoft.com/en-us/graph/graph-explorer# in a browser. On the left hand side, use the Sign in with Microsoft option to login using your Azure credentials (onmicrosoft.com ID). Once you are signed in, enter the below URL into the Graph URL request input field, make sure that the HTTP verb select button is on GET and click on Run Query. https://graph.microsoft.com/v1.0/deviceManagement/deviceConfigurations  You should see… Read More Using MS Graph to Duplicate Device Configuration Policies

Suspend BitLocker fails in Task Sequence with Invalid Namespace error 0x8004100E

When you try suspend BitLocker via Task Sequence step it fails. On checking smsts.log you find out the below errors Even if you try to run manage-bde -protectors -disable c: in an elevated command prompt it fails with “Invalid Namespace” error. Cause This problem occurs if the Bitlocker WMI class (win32_encryptablevolume) is not registered or… Read More Suspend BitLocker fails in Task Sequence with Invalid Namespace error 0x8004100E

Using PowerShell to validate Patch installed in client machines.

To check what are the patches that are installed in your computer, we can use Get-HotFix command. Open PowerShell console and type Get-HotFix. You can also do this via WMI commands in PowerShell:get-wmiobject -class win32_quickfixengineering To check if a specific patch is installed on a remote computer, an Admin can use the below simple PowerShell… Read More Using PowerShell to validate Patch installed in client machines.