Google Chrome Workspace Manager Enrollment

Hello Can you add this Feature into your tasks for Tenant Deployments?
This would of course only work if google chrome was already installed.

Thanks

# Set the enrollment token (replace with your actual enrollment token)
$enrollmentToken = " replace with your actual enrollment token "

# Define the registry path for Chrome Browser Cloud Management
$chromeRegistryPath = "HKLM:\SOFTWARE\Wow6432Node\Policies\Google\Chrome"

# Check if the registry path exists, and create it if needed
if (-not (Test-Path $chromeRegistryPath)) {
    try {
        New-Item -Path $chromeRegistryPath -Force | Out-Null
        Write-Host "Registry path created successfully."
    } catch {
        Write-Host "Failed to create registry path. Please check permissions."
        exit
    }
}

# Set the enrollment token in the registry
try {
    Set-ItemProperty -Path $chromeRegistryPath -Name "CloudManagementEnrollmentToken" -Value $enrollmentToken -Type String
    Write-Host "Enrollment token set successfully."
} catch {
    Write-Host "Failed to set enrollment token. Please verify permissions."
}