To Get All Management points for SCCM site in a multi site oriented scenario is as per follows: cls $CMSites = Get-CMSite ForEach($CMSite in $CMSites) { $CMManagementPoints = Get-CMManagementPoint -SiteCode $CMSite.SiteCode Write-Output “Summary of Management Points for Site $($CMSite.SiteCode)” ForEach($CMManagementPoint in $CMManagementPoints) { $CMMPServerName = $CMManagementPoint.NetworkOSPath.Split(‘\\’)[2] Write-Output “$($CMMPServerName)” } } You will get the list …
It is really hard to detect whats exactly causing windows slow logons. Most of the time it is caused by Group Policy and combination of Folder redirection or permissions for something. So I started troubleshooting slow logon for some users, where time varies from user to user. One of the user reported 45 minutes to …
Lets get Site Maintenance Tasks for SCCM Server in current environment. What are we achieving here, is to display and report what is configured for Site Maintenance tasks- example below So to get the desired result, we will run the following powershell commands cls $CMSites = Get-CMSite ForEach($CMSite in $CMSites) { $SiteMaintenanceTaskWordTable = @() $SiteMaintenanceTasks …
Now Site Roles, have a read on Microsoft Docs about the Site roles “Configuration Manager uses site system roles to support management operations at each site. When you install a Configuration Manager site, some site system roles are automatically installed and assigned to the server on which Configuration Manager Setup has run successfully. One of …
Lets have a look at SCCM script to get Summary of all Sites in current Hierarchy. Purpose is to get all the information on SCCM Sites section in Configuration Manager Console. It should cover Primary , Secondary sites, Child Primary Sites and CAS (Central Administration Site). First of all, you can use normal powershell (without …
This is one of my to do list for long and I have searching on Internet if anyone has already done similar to this. Definitely best script to document Configuration Manager is found David O’Brien and Carl Webster. This script provide lot of details that I needed but missing some of the components I was …
This is one of those deployment of software updates, where one might be pulling their hair if not done correctly. I have been assigned to deploy Reader XI and Acrobat XI updates to all computers. So I thought it’s easy like any other update. But in reality I was working on it for a day …
This seems to be pretty easy to fix but it can be quite complex, depending on the environment. For me, it took me around 2-3 hours to fix it properly. So I decided to write about all my findings so that someone else don’t have to spend this time. Issue: When setting up new profile, …
Some of us or I should say most of us had this issue from Chrome. Chrome v 58 and above throwing up an error for all internal sites and are now prompting as untrusted. If you’re using a Self-Signed certificate for your HTTPS server then this will be affecting you as well. Chrome 58 will require …
SCCM a simple but yet very complex solution. It can be very confusing time to time. A issue has been reported to me and asked for help. Basically Client stopped reporting back to SCCM Server after the power outage and dirty shutdown of servers. Client is active but not reporting to SCCM Server. As per …
Recent Comments