Software Secure Access
Activity Manage

Install the Umbrella Profile

This step is necessary unless the profile is already bundled within the installation package (see Package Customization). After installation, copy the Umbrella profile (downloaded from your Umbrella dashboard) to the correct folder in the local device to register and activate Umbrella. This can be done with a task or post install script.

Copy the Umbrella profile to the following location:

%ProgramData%\Cisco\Cisco Secure Client\Umbrella\OrgInfo.json


 
How to deploy Secure Client with Microsoft GPOarticle provides information on how to create an Umbrella profile using Microsoft Group Policy.

Instead of copying the Umbrella profile, you can create it with a script if your management software supports post-installation scripts.

The following example shows how to create an Umbrella profile using PowerShell. Replace ORG_ID, FINGERPRINT, and USER_ID values with the ones from your profile (OrgInfo.json) file:

$org_file = "%PROGRAMDATA%\\Cisco\\Cisco Secure Client\\Umbrella\\OrgInfo.json"  
$data=@"  
{  
    "organizationId" : "ORG_ID",  
    "fingerprint" : "FINGERPRINT",  
    "userId" : "USER_ID"  
}  
"@

if(-not(Test-Path -Path $org_file))  
{  
	$data > $org_file  
}