How to disable the Agent Workspace after migrating to anotehr WokspaceIssue A customer asked if there were any actions to take after migrating from AW to SOW.ReleaseAnyCauseMany customers are migrating from AW to configurable workspace and SOWResolutionLogin as AdminSwitch to 'Agent Workspace' application scopeOpen the Agent workspace Record (Navigate to All workspaces > Open Agent workspace) sys_aw_master_config.do?sys_id=7b24ceae5304130084acddeeff7b12a3 Set the 'Active' to 'false' and Save itPerform cache.do on instance (This is a must perform step, as the workspace loads from the instance cache)Now access agent workspace and you can see agent workspace loaded as 'The page you are looking for could not be found' Note there is no OOB feature available to redirect the page and it can be achieved with a custom Global UI script. - Sharing a below example where I redirected the Agent workspace to HR Agent Workspace successfully on OOB instance with a UI script. UI Type: DesktopGlobal: trueaddLoadEvent(function() { // Redirect the Agent workspace to HR Agent Workspace if (document.URL.indexOf('workspace/agent') != -1) { window.location = '/now/workspace/hr/home'; } else { return; } }); You can create a similar UI script by replacing the window.location pointing to SOW Home. As this is a customization it is a bit out of scope but it's a solution you can try. Please test this thoroughly in a subprod.