automatically update RuckZuck Applications in ConfigMgr

If you want to automatically update RuckZuck Applications in Microsoft Endpoint Configuration Manager:

#Load the RZ4ConfigMgr Assembly
[System.Reflection.Assembly]::LoadFrom((Join-Path $(Split-Path $env:SMS_ADMIN_UI_PATH) RZ4CM.exe)) | Out-Null
$RZ = New-Object RuckZuck_Tool.PSRZ4ConfigMgr

#detect SW Updates
$RZ.Scan()

#Show details of detected Updates
$RZ.SWUpdates

#Update all detected Updates
$RZ.Update()