-
Launch MQL from Live Collaboration Server.
-
Run the following MQL commands:
set context user creator;
modify policy 'Design TEAM Definition' allstate revoke public read,show,checkout,checkin filter 'attribute[Process Access Classification] == "TRUE" && program[EXCObjectPolicyLicenseCheck ${OBJECTID} -method hasEXCAccess] == "false"';
modify policy 'Design TEAM Definition' allstate owner none;
-
If you have custom policies that don't have the above settings, then the above changes need to be done on such custom policies also.
set context user creator;
modify policy <custom policy name> allstate revoke public read,show,checkout,checkin filter 'attribute[Process Access Classification] == "TRUE" && program[EXCObjectPolicyLicenseCheck ${OBJECTID} -method hasEXCAccess] == "false"';
modify policy <custom policy name> allstate owner none;
Note:
If the policy does not have an allstate defined, then you must include the add keyword before allstate in the above statement.
|