Resolving Sysprep Error While Creating an OS Image Using SCCM Image Capture

When attempting to create an OS image using SCCM image capture, the process may fail due to errors related to Sysprep. A common error reported in the smsts.log file and other related logs includes: Additionally, the %WINDIR%\System32\Sysprep\Panther\setupact.log file might show errors such as: OR OR Resolution Steps Option 1: Install All Pending Windows Updates Option … Read more

External SMTP Relay with Exchange Server 2016 Using Anonymous Connections

When authenticated SMTP is not an option you can create a new receive connector on the Exchange 2016 server that will allow anonymous SMTP relay from a specific list of IP addresses or IP ranges. In the Exchange Admin Center navigate to mail flow and then receive connectors. Select the server that you want to create the new … Read more

Retrieve Active Directory User List from OU with Group Memberships

In this article, we’ll explore a PowerShell script to retrieve a list of users from a specified Organizational Unit (OU) in Active Directory (AD). This script also includes information about the groups to which each user belongs. Prerequisites PowerShell Script # Define the OU where the users reside$OUpath = ‘OU=Disabled user,DC=example,DC=com’# Define the path for … Read more

Creating a GPO for SCCM Client Installation.

Preparing for Client Installations with Group Policy We are going to configure Group Policy settings for our domain workstations so they will be able to successfully install the SCCM client. From Server Manager select Tools > Group Policy Management. Right-click on the Workstations OU and right-click and choose Create a GPO in this domain, and … Read more

Restrict installation via Microsoft Store for Windows 10/11 Pro devices through Intune.

Since the configuration service provider (CSP) or group policy (GPO) settings to configure access to the Microsoft Store app are available to Windows Enterprise and Education editions, we have come up with an alternate workaround through Applocker Store App Rules Save the below content as an XML file. Create a custom Administration template under the … Read more

PowerShell Script to Update Email and Alias for Distribution Lists in Exchange Online

When an organization transitions to a new domain, updating the email addresses and aliases for all distribution lists can be a daunting task. This PowerShell script automates the process to replace the old domain with the new domain for all distribution lists in Exchange Online. Prerequisites Before running the script, ensure the following: PowerShell Script … Read more