Recent Discussions
No management pack in recommendation
Hi all yesterday i install new server on 2025, install SCOM 2025 on SQL 2022. I add 3 servers one standard, one SCCM and one from citrix. For today i have no recommended management pack. Anyone can help what to check? Internet connection is OK on server.31Views0likes1CommentUnable to import drivers into SCCM 2503
While trying to import the LAN drivers into SCCM version 2503, I encountered an error. The errors are, 1. Error: Some driver(s) can not be imported successfully. 2. Error: Failed to import the following drivers: • Realtek PCIe GbE Family Controller - An error occurred while importing the selected driver. Can anyone help me resolve this issue?57Views1like1CommentOrchestrator Designer 10.25.1.7 VMware Integration Guest OS version
We are new to System Center 2025 Orchestrator Runbook Designer and the VMware Integration. We would like to use the native functionality to create virtual machines, but in the Create VM activity, the Guest OS property has a list of possibilities that only goes up to Windows 7 and Windows Server 2008 R2. Does anyone else use the VMware Integration Create VM activity, and does it show supported operating system versions? If so, what could we be doing wrong?43Views0likes0CommentsSCSM 2025 installation failure - _PopulateUserRoles
Let me lay out the full picture first. Windows Server 2025, Remote SQL Server 2022 CU 20 FCI (used for internal reasons, but I also tried using Always On and encountered the same error), and a clean installation of SCSM 2025 Management Server. I also tried CU19, but the same issue occurs. The installation starts without any problems. It goes through all the steps: creates the database, configures registry settings, configures the server, installs services, and imports management packs. But right after that, I get the following error: _"An error occurred while executing a custom action: PopulateUserRoles This upgrade attempt has failed before permanent modifications were made. Upgrade has successfully rolled back to the original state of the system. Once the corrections are made, you can retry the upgrade for this role." Immediately after this, the Event Viewer logs the following Event ID 36882: "The certificate received from the remote server was issued by an untrusted certificate authority. Because of this, none of the data contained in the certificate can be validated. The TLS connection request has failed. The attached data contains the server certificate. The SSPI client process is rundll32 (PID: 5084).” SQL does not require encryption and is not using any custom certificate. Just to clarify, the internal CA certificate is installed on all servers. The event is weird because, at this point, the installation has already created and configured the database. It doesn’t make sense to me, but the event appears at the exact same moment the installation fails. I’ve already checked permissions on both SQL and SCSM. The service account is a local administrator, has "Log on as a service" rights, and is a sysadmin on SQL. I’ve searched everywhere online but haven’t found a solution... Any ideas? Thanks.117Views0likes1Comment[SOLVED] SCCM - Application auto upgrade not working
Hello, I'm trying to deploy applications with auto upgrade but nothing happens. Let me explain what I'm doing : App_V1 is deployed as available to a user collection I install the app, nothing special here App_V2 is set to supersede App_V1 with uninstall checkbox (I need that in my environment) I deploy App_V2 as available to the same user collection with the checkbox "Automatically upgrade any superseded versions of the application" In the software center, I can see App_V2 with the install button (App_V1 is hidden, expected), but nothing else happens If I check the logs, I can see in PolicyAgent.log (only) : A line starting with "Compiling policy <deploymentID>/supersedence..." Then a line starting with "Raising event: instance of CCM_PolicyAgent_AssignmentDisabled...<some assignment info> Nothing else I don't know how to further troubleshoot that situation. Can someone give me some clues ? Thanks122Views0likes1CommentProblemas para configurar un canal SMTP con un servidor de correo externo
me está pasando que cuando que cuando quiero crear un canal de tipo SMTP en mi servidor SCOM 2025, al utilizar el método de autenticación "autenticación de correo electrónico externo" no me permite seleccionar el perfil de ejecución que he creado previamente, espero su ayuda, comentarios o consultas, gracias37Views0likes0CommentsSCCM missing WSUS Updates for Exchange
Hello, since November 2024 our SCCM cant find any updates for Exchange therefore our Exchange Servers are Up-to-date accordingly to the SCCM but nfact are not. Is this a known issue? We connot find the KBs on the catalog site of micrsoft either.42Views0likes0CommentsForce DPM 2025 RA to use FQDN or trust server certificate when trying to backup SQL Server
Hi, anybody know a way to force the Recovery Agent to use the FQDN instead of the NETBIOS name or configure it to trust the SQL Server certificate on a SQL Server cluster. The certificate has both the NETBIOS and FQDN certificate and the server requires encryption I am getting the following error WARNING SQL - Detailed Description "Client unable to establish connection. For solutions related to encryption errors, see https://go.microsoft.com/fwlink/?linkid=2227882." SQLQueryHelper.cpp(384) [0000004DD7EFF560] WARNING SQL - Detailed Description "SSL Provider: The target principal name is incorrect. The server has the latest OLE DB driver, Microsoft OLE DB Driver 19 for SQL Server as required by DPM202528Views0likes0CommentsSystem Center 2025 SQL Activation
Hello, Microsoft has recently made System Center available via the CSP program, but it is not clear to me how one would activate SQL server standard that I am entitled to run via an active System Center subscription. If I check in the admin center, I get download media and keys specifically for System Center, but nothing for SQL. I cannot find anything anywhere about how to properly activate SQL Server Standard.58Views0likes0CommentsSCOM Linux parameter for Expression/Alert Description
Hi, I would like to know if there is a way to get more information from //*[local-name()="StdOut"] parameter. I know that it can be used in this way in Expression and $Data/Context///*[local-name()="StdOut"]$ in Alert. But I would like to forward little bit more info into Alert and Expression itself. For example got script which returns two values Uptime and LastBoot. And I would like to build the Expression based on Uptime and provide LastBoot into Alert description. I wonder if this is even possible in SCOM. Script itself : #!/bin/bash # Get uptime in seconds uptime_seconds=$(cat /proc/uptime | cut -d'.' -f1) # Get last boot time last_boot=$(who -b | awk '{print $3, $4}') # Output in the required format echo "Uptime : $uptime_seconds" echo "LastBoot : $last_boot" So I tried with //*[local-name()="StdOut"][contains(., "last_boot")]/text() $Data/Context///*[local-name()="StdOut"][contains(., "last_boot")]/text()$ But it doesn't work.50Views0likes0CommentsSCOM Linux Parameter for Expression/Alert Description
Hi, I would like to know if there is a way to get more information from //*[local-name()="StdOut"] parameter. I know that it can be used in this way in Expression and $Data/Context///*[local-name()="StdOut"]$ in Alert. But I would like to forward little bit more info into Alert and Expression itself. For example got script which returns two values Uptime and LastBoot. And I would like to build the Expression based on Uptime and provide LastBoot into Alert description. I wonder if this is even possible in SCOM. Script itself : #!/bin/bash # Get uptime in seconds uptime_seconds=$(cat /proc/uptime | cut -d'.' -f1) # Get last boot time last_boot=$(who -b | awk '{print $3, $4}') # Output in the required format echo "Uptime : $uptime_seconds" echo "LastBoot : $last_boot" So I tried with //*[local-name()="StdOut"][contains(., "last_boot")]/text() $Data/Context///*[local-name()="StdOut"][contains(., "last_boot")]/text()$ But it doesn't work. Please support.55Views0likes0CommentsLinux Agent Install Failure - Certificate Issue
I'm attempting to install the Linux agent on a new AlmaLinux 9.5 server. The server replaced a previously monitored RHEL 8.10 server, and the new server has the same IP but a different hostname. The install fails with "Signed certificate verification operation was not successful - Object reference not set to an instance of an object." SCOM 2019 UR6 Hotfix - single management server Linux agent version 1.9.1-0 Telnet successful from SCOM management server to new host via TCP/22 and TCP/1270 Single forward DNS entry refers to new host FQDN Single reverse DNS entry for IP refers to new host - no other reverse entries for same IP Monitoring and action account credentials verified Sudoers taken from successful AlmaLinux 9.5 agent install omiengine, omiserver, and omiagent are running after the failed install /var/log/messages only SCOM-related error is "omid.service: Can't open PID file /var/opt/omi/run/omiserver.pid (yet?) after start: Operation not permitted", which I see on other systems with a successful agent installation /opt/microsoft/scx/bin/tools/scxadmin -status omiserver: is running omiagent: 1 instance running omiserver.log: 2025/03/09 19:45:03 [9217,9217] WARNING: null(0): EventId=30118 Priority=WARNING ssl-read error: 167772454 [error:0A000126:SSL routines::unexpected eof while reading] omiagent.root.root.log: 2025/03/09 19:45:06 [9389,9389] WARNING: null(0): EventId=30042 Priority=WARNING cannot open shared library: {/opt/omi/lib/libSCXCoreProviderModule.so}: libcrypt.so.1: cannot open shared object file: No such file or directory 2025/03/09 19:45:06 [9389,9389] WARNING: null(0): EventId=30041 Priority=WARNING cannot open shared library: {SCXCoreProviderModule}: SCXCoreProviderModule: cannot open shared object file: No such file or directory 2025/03/09 19:45:06 [9389,9389] WARNING: null(0): EventId=30065 Priority=WARNING failed to open provider library: SCXCoreProviderModule 2025/03/09 19:45:06 [9389,9389] ERROR: null(0): EventId=20001 Priority=ERROR Agent _RequestCallback: ProvMgr_NewRequest failed with result 1 !233Views0likes0Comments- 42Views0likes0Comments
System Center Profile
I need to know if it is possible to create a different profile in the system center so that one sees only the server resources and others see the desktop machines, maintaining the security that the specialist who sees the desktop equiptmen DOES NOT apply changes to the servers25Views0likes0CommentsVMM 2022. Error (2912) of migration VMs (VMWare to Hyper-V)
Hi, there are Windows Server 2022 Hyper-V Hosts + VMM 2022 error of migration VMs (VMWare to Hyper-V) Error (2912) An internal error has occurred trying to contact the 'Host_FDQN' server: : . WinRM: URL: [http://Host_FDQN:5985], Verb: [INVOKE], Method: [CreateHttpPostClientJob], Resource: [http://schemas.microsoft.com/wbem/wsman/1/wmi/root/scvmm/HttpPostDeploymentJob] The remote procedure call failed (0x800706BE) Recommended Action Check that WS-Management service is installed and running on server 'Host_FDQN'. For more information use the command "winrm helpmsg hresult". If 'Host_FDQN' is a host/library/update server or a PXE server role then ensure that VMM agent is installed and running. Refer to http://support.microsoft.com/kb/2742275 for more details.87Views0likes0CommentsUpdate Rollup 7 for SCVMM 2019 with Windows Server 2025 support?
Does anyone know if Microsoft brings support for Windows Server 2025 guest virtual machines for System Center 2019 Virtual Machine Manager? With Update Rollup 4 in July 2022 Microsoft added support to manage Windows Server 2022 & Windows 11 guest virtual machines. Thank you for any news. Kind regards Patrick131Views0likes0CommentsSCCM Supersedence problem
We have an application deployed through Software Center - ver 22 - which must be updated to v24. I want to uninstall v22 wherever, and only where it's installed and replace it with the new version. My test OU I have two machines. One had v22 installed and one did not have the application. I built a new Application for v24 and configured Supersedence on v22 with Uninstall. I set the Deployment Type/Install Behavior/Requirements for membership in my test OU - my two test machines only. After Deployment: Machine #1- v22 was replaced by v24 Machine #2 - v24 was added to Apps & Features I need the deployment to skip installing v24 on any machine which does not already have v22 installed. Can someone tell me what I missed? Thanks! —A40Views0likes0Comments
Events
Recent Blogs
- 2 MIN READWe’re pleased to announce Update Rollup 3 (UR3) for System Center 2022. This release continues our commitment to stability, security, and platform currency across on‑premises datacenter operations, w...Aug 25, 2025296Views1like0Comments
- 4 MIN READIn this blog, we introduce System Center 2025 and its features that are now GA in Nov-2024.Nov 07, 20243.4KViews3likes2Comments