SCORCH runbooks not showing in SCCM or SCSM

When you create a new System Center Orchestrator Runbook and you have checked it in ready to use, you may not see it in systems that will want to use it, like Configuration Manager, Microsoft Deployment Toolkit or Service Manager. This is due to authorisation cache not updating and as so, not showing the newly created runbook. Guide To fix …

SCORCH runbooks not showing in SCCM or SCSM Read More

SCCM OSD – Restart a task sequence wizard in WinPE without rebooting

If you have started a task sequence in Configuration Manager and you hit a problem, the last thing you want to do is to have to go through the reboot process back into Windows PE. So, if you want to just restart the task sequence without rebooting, carry out the following steps: Press F8 to bring up the command prompt …

SCCM OSD – Restart a task sequence wizard in WinPE without rebooting Read More

Operations Manager – Enable agent proxy on all agents

If you are using System Center Operations Manager (SCOM) then you may want to enable agent proxy on all your agents. If you want to do this then you can use the power of Powershell to carry this out. Just open up a Powershell command box and use the following command: get-SCOMagent | where {$_.ProxyingEnabled -match “False”} | Enable-SCOMAgentProxy If …

Operations Manager – Enable agent proxy on all agents Read More

System Center Service Manager Data Warehouse Analysis Services installation error

If you are trying to install System Center Service Manager Data Warehouse then you may run into an issue on the Configure Analysis Services for OLAP cubes wizard page where it states that The server is not available: We ran into this issue a while ago and we checked everything that we could find on Google, like permissions on the …

System Center Service Manager Data Warehouse Analysis Services installation error Read More

SCCM 2012 Software Catalog Easy Access using DNS

If you are using System Center Configuration Manager (SCCM) then you will probably be making use of the Application Catalog feature. This allows IT departments to give a software shop front to its end users freeing up IT staff from the tedious installations of 7-Zip and Adobe Reader. But, the standard URL for the Application Catalog is a bit dirty, …

SCCM 2012 Software Catalog Easy Access using DNS Read More

Bulk Delete Multiple Operations Manager Management Packs [2020 Updated]

If you are using System Center Operations Manager and you want to bulk remove multiple Management Packs, then you can use the power of the Operations Manager Shell to carry it out. First of all, you need to open up the Operations Manager Shell. Then you should run the following command: where: “*Microsoft.SQLServer*” = the management pack names that you …

Bulk Delete Multiple Operations Manager Management Packs [2020 Updated] Read More

System Center Orchestrator – SQL Query to show log file data

If you are using System Center Orchestrator (SCORCH)  Runbooks then you may have run into issues where the database is increasing in size due to the large amount of log files being created. This typically occurs when monitoring event logs on servers amongst some other runbook options in SCORCH. If you want to check how many log files are in …

System Center Orchestrator – SQL Query to show log file data Read More

System Center Operations Manager – Apply Licence using PowerShell

If you are using System Center Operations Manager (SCOM) then you will find that you will need to apply your correct licence key to take it from an evaluation version up to a full version. To make this a simple process, you can run the following PowerShell command on your Operations Manager server: #Import Module import-module operationsmanager #Set License Key New-SCOMManagementGroupConnection …

System Center Operations Manager – Apply Licence using PowerShell Read More

System Center Operations Manager – Pre-Requisites Powershell Script

If you are installing System Center Operations Manager, there are a number of pre-requisites that you need to install before running the installer. To make the pre-requisites installation easier, you can run the below Powershell command which will download and install all of the pre-reqs for you. Import-Module ServerManager Add-WindowsFeature NET-Framework-Core,AS-HTTP-Activation,Web-Static-Content,Web-Default-Doc,Web-Dir-Browsing,Web-Http-Errors,Web-Http-Logging,Web-Request-Monitor,Web-Filtering,Web-Stat-Compression,AS-Web-Support,Web-Metabase,Web-Asp-Net,Web-Windows-Auth –restart ##This section will download the Report Viewer and …

System Center Operations Manager – Pre-Requisites Powershell Script Read More

SCSM – How to generate a strong name signature key file to seal a Management Pack

If you are using System Center Service Manager and creating custom management packs then you will want to seal them with a strong name signature. To do this, you will need to first of all generate the key file to allow you to use it when sealing your management pack. You need to use the sn.exe tool which has to …

SCSM – How to generate a strong name signature key file to seal a Management Pack Read More