Wednesday, July 31, 2019

SCCM Hardware Inventory failure CInvState::SendReport: Unable to send the message to mp:MP_HinvEndpoint: 80004005"

Hardware inventory failure

CInvState::SendReport: Unable to send the message to mp:MP_HinvEndpoint: 80004005"

Client would have stuck in provisioning mode, so the below lines will help you out.

$computer = 'Machinename'
Invoke-WmiMethod -Namespace "root\ccm" -Class "SMS_Client" -Name "SetClientProvisioningMode" $false -ComputerName $Computer 

Power-Shell script to delete the Hardware Inventory queue in client machine if it's stuck

If you see Inventoryagent.log says Hardware inventory already in queue and nothing running in inventory agent


$Computername = 'machinename'
$query = "SELECT * FROM InventoryActionStatus WHERE InventoryActionID='{00000000-0000-0000-0000-000000000001}'"
$hwint = Get-WmiObject -Query $query -ComputerName $Computername -Namespace "root\ccm\invagt"
$hwint.Delete()


SCCM Application Deployment Tool

SCCM Application Deployment Tool Streamlining SCCM Application Deployments: Introducing the SCCM Application Deployment Tool. In the realm o...