{"id":433,"date":"2009-11-29T01:04:45","date_gmt":"2009-11-28T17:04:45","guid":{"rendered":"http:\/\/www.jhouseconsulting.com\/?p=433"},"modified":"2009-11-29T09:55:09","modified_gmt":"2009-11-29T01:55:09","slug":"script-to-fix-the-delivery-services-console-shortcut","status":"publish","type":"post","link":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/2009\/11\/29\/script-to-fix-the-delivery-services-console-shortcut-433","title":{"rendered":"Script to Fix the Delivery Services Console Shortcut"},"content":{"rendered":"<p>This script will update any shortcuts to the Delievery Services Console (DSC) and Access Management Console (AMC).<\/p>\n<p>Launching the DSC or AMC on 64-bit system is a bit of a challenge. The CmiLaunch.exe does not work correctly on a 64-bit system. It does not start and we receive the following three errors in the System Event Logs:<\/p>\n<p style=\"padding-left: 30px;\">Event Source: SideBySide<br \/>\nEvent ID: 59<br \/>\nDescription: Generate Activation Context failed for C:\\WINDOWS\\SysWOW64\\mmc.exe. Reference error message: The referenced assembly is not installed on your system.<\/p>\n<p style=\"padding-left: 30px;\">Event Source: SideBySide<br \/>\nEvent ID: 59<br \/>\nDescription: Resolve Partial Assembly failed for Microsoft.Windows.Common-Controls. Reference error message: The referenced assembly is not installed on your system.<\/p>\n<p style=\"padding-left: 30px;\">Event Source: SideBySide<br \/>\nEvent ID: 32<br \/>\nDescription: Dependent Assembly Microsoft.Windows.Common-Controls could not be found and Last Error was The referenced assembly is not installed on your system.<!--more--><\/p>\n<p>The issue is actually caused by the MS hotfix <a href=\"http:\/\/support.microsoft.com\/kb\/942589\" target=\"_blank\">KB942589<\/a> we apply on the 64-bit builds. But this is an important hotfix, so we can&#8217;t remove or exclude it. This is further explained by Microsoft in a Technet article titled &#8220;<a href=\"http:\/\/blogs.technet.com\/askperf\/archive\/2008\/04\/25\/controlling-your-mmc-snap-ins-on-64-bit-operating-systems.aspx\" target=\"_blank\">Controlling your MMC Snap-ins on 64-bit Operating Systems<\/a>&#8220;. So we need to run the cmi20.msc instead from the &#8220;%CommonProgramFiles(x86)%\\Citrix\\Access Management Console \u2013 Framework&#8221; folder.<\/p>\n<p>It&#8217;s important to note that the cmi20.msc is a 32-bit MMC, and should therefore be launched with the 32-bit MMC by using the following command line:<\/p>\n<p style=\"padding-left: 30px;\">&#8220;%SystemRoot%\\system32\\mmc.exe&#8221; \/32 &#8220;%CommonProgramFiles(x86)\\Citrix\\Access Management Console &#8211; Framework\\cmi20.msc&#8221;<\/p>\n<p><dirtycode:FixDSCShortcut.vbs><br \/>\n&#8216; This script will update any shortcuts to the Delievery Services Console (DSC) and Access Management Console (AMC).<br \/>\n&#8216; Launching the DSC or AMC on 64-bit system is a bit of a challenge. The CmiLaunch.exe does not work correctly on a 64-bit<br \/>\n&#8216; system. It does not start and we receive the following three errors in the System Event Logs:<br \/>\n&#8216;   Event Source: SideBySide<br \/>\n&#8216;   Event ID: 59<br \/>\n&#8216;   Description: Generate Activation Context failed for C:\\WINDOWS\\SysWOW64\\mmc.exe. Reference error message: The referenced<br \/>\n&#8216;                assembly is not installed on your system.<br \/>\n&#8216;   Event Source: SideBySide<br \/>\n&#8216;   Event ID: 59<br \/>\n&#8216;   Description: Resolve Partial Assembly failed for Microsoft.Windows.Common-Controls. Reference error message: The<br \/>\n&#8216;                referenced assembly is not installed on your system.<br \/>\n&#8216;   Event Source: SideBySide<br \/>\n&#8216;   Event ID: 32<br \/>\n&#8216;   Description: Dependent Assembly Microsoft.Windows.Common-Controls could not be found and Last Error was The referenced<br \/>\n&#8216;                assembly is not installed on your system.<br \/>\n&#8216; The issue is actually caused by the MS hotfix (KB942589) we apply on the 64-bit builds. But this is an important hotfix,<br \/>\n&#8216; so we can&#8217;t remove or exclude it. This is further explained in the following Microsoft Technet article:<br \/>\n&#8216; http:\/\/blogs.technet.com\/askperf\/archive\/2008\/04\/25\/controlling-your-mmc-snap-ins-on-64-bit-operating-systems.aspx<br \/>\n&#8216; So we need to run the cmi20.msc instead from the &#8220;%CommonProgramFiles(x86)%\\Citrix\\Access Management Console \u2013 Framework&#8221;<br \/>\n&#8216; folder.<br \/>\n&#8216; It&#8217;s important to note that the cmi20.msc is a 32-bit MMC, and should therefore be launched with the 32-bit MMC by using<br \/>\n&#8216; the following command line:<br \/>\n&#8216; &#8220;%SystemRoot%\\system32\\mmc.exe&#8221; \/32 &#8220;%CommonProgramFiles(x86)\\Citrix\\Access Management Console &#8211; Framework\\cmi20.msc&#8221;<br \/>\n&#8216;<br \/>\n&#8216; Release 1.0<br \/>\n&#8216; Written by Jeremy@jhouseconsulting.com on 22nd November 2009.<br \/>\n&#8216;<br \/>\nOption Explicit<\/dirtycode:fixdscshortcut.vbs><\/p>\n<p>Dim WshShell, strAUPrograms, strProcessorArchitecture, strShortcut<\/p>\n<p>Set WshShell = WScript.CreateObject(&#8220;WScript.Shell&#8221;)<\/p>\n<p>strAUPrograms = WshShell.SpecialFolders(&#8220;AllUsersPrograms&#8221;)<br \/>\nstrProcessorArchitecture = WshShell.ExpandEnvironmentStrings(&#8220;%PROCESSOR_ARCHITECTURE%&#8221;)<\/p>\n<p>If lcase(strProcessorArchitecture) <> &#8220;x86&#8221; Then<\/p>\n<p>  strShortcut = strAUPrograms &#038; &#8220;\\Citrix\\Management Consoles\\Access Management Console.lnk&#8221;<br \/>\n  Call CreateShortcut(strShortcut)<\/p>\n<p>  strShortcut = strAUPrograms &#038; &#8220;\\IT Tools\\Citrix\\Management Consoles\\Access Management Console.lnk&#8221;<br \/>\n  Call CreateShortcut(strShortcut)<\/p>\n<p>  strShortcut = strAUPrograms &#038; &#8220;\\Citrix\\Management Consoles\\Delivery Services Console.lnk&#8221;<br \/>\n  Call CreateShortcut(strShortcut)<\/p>\n<p>  strShortcut = strAUPrograms &#038; &#8220;\\IT Tools\\Citrix\\Management Consoles\\Delivery Services Console.lnk&#8221;<br \/>\n  Call CreateShortcut(strShortcut)<\/p>\n<p>End If<\/p>\n<p>Set WshShell = Nothing<\/p>\n<p>wscript.quit(0)<\/p>\n<p>Sub CreateShortcut(strShortcut)<br \/>\n  Dim objFSO, objShortcut, strSystemRoot, strCommonProgramFilesx86<br \/>\n  Set objFSO = CreateObject(&#8220;Scripting.FileSystemObject&#8221;)<br \/>\n  strSystemRoot = WshShell.ExpandEnvironmentStrings(&#8220;%SystemRoot%&#8221;)<br \/>\n  strCommonProgramFilesx86 = WshShell.ExpandEnvironmentStrings(&#8220;%CommonProgramFiles(x86)%&#8221;)<br \/>\n  If objFSO.FileExists(strShortcut) Then<br \/>\n    objFSO.DeleteFile(strShortcut)<br \/>\n    Set objShortcut = WshShell.CreateShortcut(strShortcut)<br \/>\n    objShortcut.TargetPath = chr(34) &#038; strSystemRoot &#038; &#8220;\\system32\\mmc.exe&#8221; &#038; chr(34)<br \/>\n    objShortcut.Arguments = &#8220;\/32 &#8221; &#038; chr(34) &#038; strCommonProgramFilesx86 &#038; &#8220;\\Citrix\\Access Management Console &#8211; Framework\\cmi20.msc&#8221; &#038; chr(34)<br \/>\n    objShortcut.WorkingDirectory= strCommonProgramFilesx86 &#038; &#8220;\\Citrix\\Access Management Console &#8211; Framework\\&#8221;<br \/>\n    objShortcut.IconLocation = strCommonProgramFilesx86 &#038; &#8220;\\Citrix\\Access Management Console &#8211; Framework\\CmiLaunch.exe,0&#8221;<br \/>\n    objShortcut.Description = &#8220;Manage XenApp&#8221;<br \/>\n    objShortcut.Save<br \/>\n    Set objShortcut = Nothing<br \/>\n  End If<br \/>\n  set objFSO = Nothing<br \/>\nEnd Sub<br \/>\n<\/dirtycode><\/p>\n","protected":false},"excerpt":{"rendered":"<p>This script will update any shortcuts to the Delievery Services Console (DSC) and Access Management Console (AMC). Launching the DSC or AMC on 64-bit system is a bit of a challenge. The CmiLaunch.exe does not work correctly on a 64-bit system. It does not start and we receive the following three errors in the System &#8230; <a title=\"Script to Fix the Delivery Services Console Shortcut\" class=\"read-more\" href=\"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/2009\/11\/29\/script-to-fix-the-delivery-services-console-shortcut-433\" aria-label=\"Read more about Script to Fix the Delivery Services Console Shortcut\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ngg_post_thumbnail":0,"footnotes":""},"categories":[5],"tags":[163,164,162,161,160,159,111,165],"class_list":["post-433","post","type-post","status-publish","format-standard","hentry","category-scripting","tag-64-bit","tag-64bit","tag-access-management-console","tag-amc","tag-delivery-services-console","tag-dsc","tag-shortcut","tag-x64"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"This script will update any shortcuts to the Delievery Services Console (DSC) and Access Management Console (AMC). Launching the DSC or AMC on 64-bit system is a bit of a challenge. The CmiLaunch.exe does not work correctly on a 64-bit system. It does not start and we receive the following three errors in the System\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Jeremy Saunders\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/2009\/11\/29\/script-to-fix-the-delivery-services-console-shortcut-433\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"J House Consulting - DevOps, Microsoft, Citrix &amp; Desktop Virtualisation (VDI) Specialist - +61 413 441 846 - Delivering customer success through technology: IT Infrastructure | Citrix | End User Computing | Platform Engineering | DevOps | Full Stack Developer | Technical Architect | Improvisor | Aspiring Comedian | Midlife Adventurer\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Script to Fix the Delivery Services Console Shortcut - J House Consulting - DevOps, Microsoft, Citrix &amp; Desktop Virtualisation (VDI) Specialist - +61 413 441 846\" \/>\n\t\t<meta property=\"og:description\" content=\"This script will update any shortcuts to the Delievery Services Console (DSC) and Access Management Console (AMC). Launching the DSC or AMC on 64-bit system is a bit of a challenge. The CmiLaunch.exe does not work correctly on a 64-bit system. It does not start and we receive the following three errors in the System\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/2009\/11\/29\/script-to-fix-the-delivery-services-console-shortcut-433\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/wp-content\/uploads\/2025\/06\/Blog-Banner-White-JeremySaunders-1.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/wp-content\/uploads\/2025\/06\/Blog-Banner-White-JeremySaunders-1.png\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2009-11-28T17:04:45+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2009-11-29T01:55:09+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Script to Fix the Delivery Services Console Shortcut - J House Consulting - DevOps, Microsoft, Citrix &amp; Desktop Virtualisation (VDI) Specialist - +61 413 441 846\" \/>\n\t\t<meta name=\"twitter:description\" content=\"This script will update any shortcuts to the Delievery Services Console (DSC) and Access Management Console (AMC). Launching the DSC or AMC on 64-bit system is a bit of a challenge. The CmiLaunch.exe does not work correctly on a 64-bit system. It does not start and we receive the following three errors in the System\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/wp-content\/uploads\/2025\/06\/Blog-Banner-White-JeremySaunders-1.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/2009\\\/11\\\/29\\\/script-to-fix-the-delivery-services-console-shortcut-433#blogposting\",\"name\":\"Script to Fix the Delivery Services Console Shortcut - J House Consulting - DevOps, Microsoft, Citrix & Desktop Virtualisation (VDI) Specialist - +61 413 441 846\",\"headline\":\"Script to Fix the Delivery Services Console Shortcut\",\"author\":{\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/author\\\/jeremy#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Blog-Banner-White-JeremySaunders-1.png\",\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/#articleImage\",\"width\":1020,\"height\":200},\"datePublished\":\"2009-11-29T01:04:45+08:00\",\"dateModified\":\"2009-11-29T09:55:09+08:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/2009\\\/11\\\/29\\\/script-to-fix-the-delivery-services-console-shortcut-433#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/2009\\\/11\\\/29\\\/script-to-fix-the-delivery-services-console-shortcut-433#webpage\"},\"articleSection\":\"Scripting, 64-bit, 64bit, access management console, amc, delivery services console, dsc, shortcut, x64\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/2009\\\/11\\\/29\\\/script-to-fix-the-delivery-services-console-shortcut-433#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/category\\\/scripting#listItem\",\"name\":\"Scripting\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/category\\\/scripting#listItem\",\"position\":2,\"name\":\"Scripting\",\"item\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/category\\\/scripting\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/2009\\\/11\\\/29\\\/script-to-fix-the-delivery-services-console-shortcut-433#listItem\",\"name\":\"Script to Fix the Delivery Services Console Shortcut\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/2009\\\/11\\\/29\\\/script-to-fix-the-delivery-services-console-shortcut-433#listItem\",\"position\":3,\"name\":\"Script to Fix the Delivery Services Console Shortcut\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/category\\\/scripting#listItem\",\"name\":\"Scripting\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/#organization\",\"name\":\"J House Consulting - DevOps, Microsoft, Citrix & Desktop Virtualisation (VDI) Specialist - +61 413 441 846\",\"description\":\"Delivering customer success through technology: IT Infrastructure | Citrix | End User Computing | Platform Engineering | DevOps | Full Stack Developer | Technical Architect | Improvisor | Aspiring Comedian | Midlife Adventurer\",\"url\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Blog-Banner-White-JeremySaunders-1.png\",\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/2009\\\/11\\\/29\\\/script-to-fix-the-delivery-services-console-shortcut-433\\\/#organizationLogo\",\"width\":1020,\"height\":200},\"image\":{\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/2009\\\/11\\\/29\\\/script-to-fix-the-delivery-services-console-shortcut-433\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/author\\\/jeremy#author\",\"url\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/author\\\/jeremy\",\"name\":\"Jeremy Saunders\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/2009\\\/11\\\/29\\\/script-to-fix-the-delivery-services-console-shortcut-433#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f2d27bd3d985e6ef2024dded7c713b14440d467a6a0100aede3cfefcb4ab20f1?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Jeremy Saunders\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/2009\\\/11\\\/29\\\/script-to-fix-the-delivery-services-console-shortcut-433#webpage\",\"url\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/2009\\\/11\\\/29\\\/script-to-fix-the-delivery-services-console-shortcut-433\",\"name\":\"Script to Fix the Delivery Services Console Shortcut - J House Consulting - DevOps, Microsoft, Citrix & Desktop Virtualisation (VDI) Specialist - +61 413 441 846\",\"description\":\"This script will update any shortcuts to the Delievery Services Console (DSC) and Access Management Console (AMC). Launching the DSC or AMC on 64-bit system is a bit of a challenge. The CmiLaunch.exe does not work correctly on a 64-bit system. It does not start and we receive the following three errors in the System\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/2009\\\/11\\\/29\\\/script-to-fix-the-delivery-services-console-shortcut-433#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/author\\\/jeremy#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/author\\\/jeremy#author\"},\"datePublished\":\"2009-11-29T01:04:45+08:00\",\"dateModified\":\"2009-11-29T09:55:09+08:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/#website\",\"url\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/\",\"name\":\"J House Consulting - DevOps, Microsoft, Citrix & Desktop Virtualisation (VDI) Specialist - +61 413 441 846\",\"description\":\"Delivering customer success through technology: IT Infrastructure | Citrix | End User Computing | Platform Engineering | DevOps | Full Stack Developer | Technical Architect | Improvisor | Aspiring Comedian | Midlife Adventurer\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.jhouseconsulting.com\\\/jhouseconsulting\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Script to Fix the Delivery Services Console Shortcut - J House Consulting - DevOps, Microsoft, Citrix & Desktop Virtualisation (VDI) Specialist - +61 413 441 846","description":"This script will update any shortcuts to the Delievery Services Console (DSC) and Access Management Console (AMC). Launching the DSC or AMC on 64-bit system is a bit of a challenge. The CmiLaunch.exe does not work correctly on a 64-bit system. It does not start and we receive the following three errors in the System","canonical_url":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/2009\/11\/29\/script-to-fix-the-delivery-services-console-shortcut-433","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/2009\/11\/29\/script-to-fix-the-delivery-services-console-shortcut-433#blogposting","name":"Script to Fix the Delivery Services Console Shortcut - J House Consulting - DevOps, Microsoft, Citrix & Desktop Virtualisation (VDI) Specialist - +61 413 441 846","headline":"Script to Fix the Delivery Services Console Shortcut","author":{"@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/author\/jeremy#author"},"publisher":{"@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/wp-content\/uploads\/2025\/06\/Blog-Banner-White-JeremySaunders-1.png","@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/#articleImage","width":1020,"height":200},"datePublished":"2009-11-29T01:04:45+08:00","dateModified":"2009-11-29T09:55:09+08:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/2009\/11\/29\/script-to-fix-the-delivery-services-console-shortcut-433#webpage"},"isPartOf":{"@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/2009\/11\/29\/script-to-fix-the-delivery-services-console-shortcut-433#webpage"},"articleSection":"Scripting, 64-bit, 64bit, access management console, amc, delivery services console, dsc, shortcut, x64"},{"@type":"BreadcrumbList","@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/2009\/11\/29\/script-to-fix-the-delivery-services-console-shortcut-433#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting#listItem","position":1,"name":"Home","item":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting","nextItem":{"@type":"ListItem","@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/category\/scripting#listItem","name":"Scripting"}},{"@type":"ListItem","@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/category\/scripting#listItem","position":2,"name":"Scripting","item":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/category\/scripting","nextItem":{"@type":"ListItem","@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/2009\/11\/29\/script-to-fix-the-delivery-services-console-shortcut-433#listItem","name":"Script to Fix the Delivery Services Console Shortcut"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/2009\/11\/29\/script-to-fix-the-delivery-services-console-shortcut-433#listItem","position":3,"name":"Script to Fix the Delivery Services Console Shortcut","previousItem":{"@type":"ListItem","@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/category\/scripting#listItem","name":"Scripting"}}]},{"@type":"Organization","@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/#organization","name":"J House Consulting - DevOps, Microsoft, Citrix & Desktop Virtualisation (VDI) Specialist - +61 413 441 846","description":"Delivering customer success through technology: IT Infrastructure | Citrix | End User Computing | Platform Engineering | DevOps | Full Stack Developer | Technical Architect | Improvisor | Aspiring Comedian | Midlife Adventurer","url":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/","logo":{"@type":"ImageObject","url":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/wp-content\/uploads\/2025\/06\/Blog-Banner-White-JeremySaunders-1.png","@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/2009\/11\/29\/script-to-fix-the-delivery-services-console-shortcut-433\/#organizationLogo","width":1020,"height":200},"image":{"@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/2009\/11\/29\/script-to-fix-the-delivery-services-console-shortcut-433\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/author\/jeremy#author","url":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/author\/jeremy","name":"Jeremy Saunders","image":{"@type":"ImageObject","@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/2009\/11\/29\/script-to-fix-the-delivery-services-console-shortcut-433#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/f2d27bd3d985e6ef2024dded7c713b14440d467a6a0100aede3cfefcb4ab20f1?s=96&d=mm&r=g","width":96,"height":96,"caption":"Jeremy Saunders"}},{"@type":"WebPage","@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/2009\/11\/29\/script-to-fix-the-delivery-services-console-shortcut-433#webpage","url":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/2009\/11\/29\/script-to-fix-the-delivery-services-console-shortcut-433","name":"Script to Fix the Delivery Services Console Shortcut - J House Consulting - DevOps, Microsoft, Citrix & Desktop Virtualisation (VDI) Specialist - +61 413 441 846","description":"This script will update any shortcuts to the Delievery Services Console (DSC) and Access Management Console (AMC). Launching the DSC or AMC on 64-bit system is a bit of a challenge. The CmiLaunch.exe does not work correctly on a 64-bit system. It does not start and we receive the following three errors in the System","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/#website"},"breadcrumb":{"@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/2009\/11\/29\/script-to-fix-the-delivery-services-console-shortcut-433#breadcrumblist"},"author":{"@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/author\/jeremy#author"},"creator":{"@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/author\/jeremy#author"},"datePublished":"2009-11-29T01:04:45+08:00","dateModified":"2009-11-29T09:55:09+08:00"},{"@type":"WebSite","@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/#website","url":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/","name":"J House Consulting - DevOps, Microsoft, Citrix & Desktop Virtualisation (VDI) Specialist - +61 413 441 846","description":"Delivering customer success through technology: IT Infrastructure | Citrix | End User Computing | Platform Engineering | DevOps | Full Stack Developer | Technical Architect | Improvisor | Aspiring Comedian | Midlife Adventurer","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/#organization"}}]},"og:locale":"en_US","og:site_name":"J House Consulting - DevOps, Microsoft, Citrix &amp; Desktop Virtualisation (VDI) Specialist - +61 413 441 846 - Delivering customer success through technology: IT Infrastructure | Citrix | End User Computing | Platform Engineering | DevOps | Full Stack Developer | Technical Architect | Improvisor | Aspiring Comedian | Midlife Adventurer","og:type":"article","og:title":"Script to Fix the Delivery Services Console Shortcut - J House Consulting - DevOps, Microsoft, Citrix &amp; Desktop Virtualisation (VDI) Specialist - +61 413 441 846","og:description":"This script will update any shortcuts to the Delievery Services Console (DSC) and Access Management Console (AMC). Launching the DSC or AMC on 64-bit system is a bit of a challenge. The CmiLaunch.exe does not work correctly on a 64-bit system. It does not start and we receive the following three errors in the System","og:url":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/2009\/11\/29\/script-to-fix-the-delivery-services-console-shortcut-433","og:image":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/wp-content\/uploads\/2025\/06\/Blog-Banner-White-JeremySaunders-1.png","og:image:secure_url":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/wp-content\/uploads\/2025\/06\/Blog-Banner-White-JeremySaunders-1.png","article:published_time":"2009-11-28T17:04:45+00:00","article:modified_time":"2009-11-29T01:55:09+00:00","twitter:card":"summary_large_image","twitter:title":"Script to Fix the Delivery Services Console Shortcut - J House Consulting - DevOps, Microsoft, Citrix &amp; Desktop Virtualisation (VDI) Specialist - +61 413 441 846","twitter:description":"This script will update any shortcuts to the Delievery Services Console (DSC) and Access Management Console (AMC). Launching the DSC or AMC on 64-bit system is a bit of a challenge. The CmiLaunch.exe does not work correctly on a 64-bit system. It does not start and we receive the following three errors in the System","twitter:image":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/wp-content\/uploads\/2025\/06\/Blog-Banner-White-JeremySaunders-1.png"},"aioseo_meta_data":{"post_id":"433","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2025-07-04 13:36:46","updated":"2025-07-04 13:36:46","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/category\/scripting\" title=\"Scripting\">Scripting<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tScript to Fix the Delivery Services Console Shortcut\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting"},{"label":"Scripting","link":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/category\/scripting"},{"label":"Script to Fix the Delivery Services Console Shortcut","link":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/2009\/11\/29\/script-to-fix-the-delivery-services-console-shortcut-433"}],"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/wp-json\/wp\/v2\/posts\/433","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/wp-json\/wp\/v2\/comments?post=433"}],"version-history":[{"count":4,"href":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/wp-json\/wp\/v2\/posts\/433\/revisions"}],"predecessor-version":[{"id":460,"href":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/wp-json\/wp\/v2\/posts\/433\/revisions\/460"}],"wp:attachment":[{"href":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/wp-json\/wp\/v2\/media?parent=433"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/wp-json\/wp\/v2\/categories?post=433"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.jhouseconsulting.com\/jhouseconsulting\/wp-json\/wp\/v2\/tags?post=433"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}