RCT Click - Enterprice

Hello! I’m new to RCT tools.

1-If the PCs are offline when you run an action in Recast Right click , does the action continue until they are online?

  1. How do I get a report for the PCs that are installed with the enterprise version of Google Chrome?

Hi,

  1. Right Click Tool actions are executed when target devices can be reached and they are online. RCT doesn’t wait for offline devices to come online, but you can use Recast Builder & Runner to create workflows and schedule actions to your devices: Recast Automation | Recast Docs

  2. The difference between standard and enterprise version of Google Chrome is mainly in installation file’s type. The enterprise version uses Windows Installer (MSI), so you could find the devices with Chrome enterprise with the query below. The query finds MSI installations based on their uninstall command.

select SMS_R_System.Name from SMS_R_System inner join SMS_G_System_INSTALLED_SOFTWARE on SMS_G_System_INSTALLED_SOFTWARE.ResourceID = SMS_R_System.ResourceId where SMS_G_System_INSTALLED_SOFTWARE.ARPDisplayName like “%Google Chrome%” and SMS_G_System_INSTALLED_SOFTWARE.UninstallString like “msiexec%” order by SMS_R_System.Name

You can use the query to create a list of devices, or you can use it to create a collection. You can find more information about queries from here: Create queries - Configuration Manager | Microsoft Learn

Aapo

1 Like