CTX130480 – Error: ‘An error occurred while making the requested connection’ when Launching Applications on a XenApp Kerberos-based Environment – Citrix Knowledge Center

Symptoms When the users try to start an application in a XenApp Kerberos-based environment, the following error message appears on the browser: “An error occurred while making the requested connection.” The following error appears in the Application log of the Web Interface server: Log Name: Application Source: Citrix Web Interface Date: <Date> Event ID: 30102 Task Category: None Level: Error Keywords: Classic User: N/A Computer: wi54.amc.ctx Description: Site path: C:inetpubwwwrootCitrixKrb2. The Citrix servers reported an unspecified error from the XML Service at address http://xa5.amc.ctx/scripts/CtxIntegrated/wpnbr.dll[com.citrix.xml.NFuseProtocol.RequestTicket]. Refer to the Logged Messages and Event IDs on Citrix web page for specific information about […]

Read more

MCP and MCT Program Help l Microsoft Regional Service Centers for Asia and Pacific

Microsoft Regional Service Centers – Asia and Pacific Microsoft Regional Service Centers are Microsoft support centers that address your training, certification, or program questions. If you have questions about Official Microsoft Learning Products, the Microsoft Certified Professional (MCP) program, the Microsoft Certified Trainer (MCT) program, or the Microsoft Certified Partner for Learning Solutions program, please contact the Regional Service Center in your region. East Asia India Japan South Pacific Southeast Asia Hours of operation – East Asia Telephone E-mail Monday – Friday 9:00 to 18:00 (9:00 A.M. to 6:00 P.M.) China time for China, Hong Kong SAR, and Taiwan Korean […]

Read more

Accessing User MyDocuments Folder Path via Powershell

Sample Code: PS C:> $MyDocs = [System.Environment]::GetFolderPath("MyDocuments") PS C:> Write-host $MyDocs C:UsersTestUser1Documents PS C:>   Listing all the SpecialFolders available via Environment Variables. Code: cls ### Start of Script ### Get the list of special folders $folders = [system.Enum]::GetValues([System.Environment+SpecialFolder]) # Display these folders "Folder Name            Path" "———–            ———————————————–" foreach ($folder in $folders) {     "{0,-22} {1,-15}"  -f $folder,[System.Environment]::GetFolderPath($folder)     } #End of Script   Output: Folder Name            Path ———–            ———————————————– Desktop                C:UsersTestuser1Desktop Programs               C:UsersTestuser1AppDataRoamingMicrosoftWindowsStart MenuPrograms Personal               C:UsersTestuser1Documents Personal               C:UsersTestuser1Documents Favorites              C:UsersTestuser1Favorites Startup                C:UsersTestuser1AppDataRoamingMicrosoftWindowsStart MenuProgramsStartup Recent                 C:UsersTestuser1AppDataRoamingMicrosoftWindowsRecent SendTo                 C:UsersTestuser1AppDataRoamingMicrosoftWindowsSendTo StartMenu              C:UsersTestuser1AppDataRoamingMicrosoftWindowsStart Menu MyMusic                C:UsersTestuser1Music DesktopDirectory       C:UsersTestuser1Desktop MyComputer                            Templates              C:UsersTestuser1AppDataRoamingMicrosoftWindowsTemplates ApplicationData        C:UsersTestuser1AppDataRoaming […]

Read more