SCCM
-
Check Patches Installed and send email
$RemoteComputers = get-content "C:\test\dpservers.txt" ForEach ($Computer in $RemoteComputers) { Try { Invoke-Command -Computername $Computer -ScriptBlock { $head=@” <style> @charset “UTF-8”;…
Read More » -
Clean SCCM Primary Site IIS Logs
$logs = Get-ChildItem -Path C:\inetpub\logs -Recurse -Filter *.log $oldest = (get-date).AddDays(-30) foreach($log in $logs){ if($log.LastWriteTime -lt $oldest){ $log.Delete() } }…
Read More » -
sccm client boundary group validation
Use this script to find remote machines sccm client has associate to any boundary group $dpservers = Get-Content "C:\test\dpservers.txt" foreach($dp…
Read More » -
Get Pending Reboot – remote machine
Use following scripts to find status of remote machine pending reboot Function Get-PendingRebootStatus { [CmdletBinding()] Param ( [Parameter( Mandatory =…
Read More » -
Remove & Clean SCCM CLient
This script will stop sccm service, uninstall , clean registry and remove folders # Attempt to run the SCCM uninstaller…
Read More » -
Fix No Client state – SCCM
get-service ccmexec | stop-service -Force (Get-WmiObject Win32_Service -Filter "Name=’CcmExec’").StopService() Get-WmiObject win32_service -ComputerName ca1connect02 | Where-Object {$_.name -eq "ccmexec"} | Stop-Service…
Read More » -
Compliance Policy Intune
Microsoft Endpoint Manager: Compliance Policy Download Presentation: Microsoft Endpoint Manager- Compliance Policy Intune Mobile device management (MDM) solutions like Intune…
Read More » -
Microsoft EndPoint Manager: App Protection Policy – WIP – Intune
Download Presentation Microsoft Endpoint Manager- WIP Policy App protection policies are rules that ensure an organization’s data remains safe or…
Read More » -
Enroll Device to Intune (SCCM+Intune)
Requirements: Azure Subscription License: E3 or E5 license for users MDM: Enable Intune MDM for your all users or specific…
Read More » -
Upgrade SCCM 2103 to 2107
What’s new in sccm 2107 version Select VM size for CMG Support for Windows Server 2022 and the ADK for…
Read More »