Curious if there is a way in Bigfix to tell what “actions” are processing or have completed processing in SCCM? Just getting the name of the Action and the date would probably suffice.
Thanks,
Sno
Curious if there is a way in Bigfix to tell what “actions” are processing or have completed processing in SCCM? Just getting the name of the Action and the date would probably suffice.
Thanks,
Sno
You mean that you want to query the BigFix platform for some information and get it back into SCCM?
As I understand, SCCM is using SQL Server Reporting Services for reporting purposes.
Am I correct?
Look into all of the Query Options for the BigFix Platform - https://developer.bigfix.com/other/
Of course there is also an additional Query option with the Insights Database - but it’s a different case
I’d like to query the sccm platform and get the data back into Bigfix, my native country! lol
Lol sorry I’ve misread:)
So just to understand, there are machines which have SCCM and BigFix - and you want to get SCCM data about those machines and show it on BigFix, right?
To retrieve deployment history using PowerShell in Configuration Manager, you can use the Get-CMDeployment
cmdlet. This cmdlet allows you to fetch details about deployments, such as applications, software updates, or task sequences. Here’s an example:
# Import the Configuration Manager module
Import-Module ($env:SMS_ADMIN_UI_PATH.Substring(0,$env:SMS_ADMIN_UI_PATH.Length-5) + 'ConfigurationManager.psd1')
# Set the location to the Configuration Manager site
Set-Location -Path "SCCM:"
# Retrieve all deployments
$deployments = Get-CMDeployment
# Display deployment details
$deployments | Select-Object DeploymentID, CollectionName, FeatureType, SoftwareName
Get-CMDeployment
cmdlet fetches all deployments.Select-Object
cmdlet is used to display specific properties like Deployment ID, Collection Name, Feature Type, and Software Name.You can customize this script further to filter deployments by specific criteria, such as a particular collection or software name. For more details, you can refer to the official documentation here.
You can get the Information you want and then update this information on the Client through several options through REST API: