Aussie owned and operated, with 23+ years of industry experience, Gold Coast InfoTech is delighted to support all of your business technology requirements.

Gallery

Contacts

success@goldcoastinfotech.com.au

1800 291 071

KBArticles Scripts, Commands, Registry

Application Virtualization Client service fails to start on Windows 2008

 Description of Error: Windows could not start the application virualization client service on local computer. Error 1114: A dynamic link library (DLL) initilization routine failed. Solution1: Our previous global data directory was set ioncorrectly and preventing the service from starting (weird I know) Change the Previous GLobal Data Dir to match that of GlobalDataDirectory in the […]

KBArticles Uncategorized

Seamless Windows Session Crashing during logon

Setup: Windows 2003 R2 SP2, XenApp 5.0, Seamless ApplicationsProblem: A seamless session would launch for the program, then instantly quit again with WFShell stuck on ‘end process’ – the application would work once after reboot (intermittantly)The seamless window would just disappear with little in the way of errors logged locally. Resolution: Turned out to be […]

KBArticles Uncategorized

App V Client Launch Error

Problem: The Application Virtualisation Client could not launch XAn unexpected error occured. Report the following error code to your System Administrator.Error Code: 4604EE8-0B017604-0000040F Solution: Delete the clients (users) cache for AppV for the application Check the applications .pkg file on the local share of the server is definitely the latest version of the package. (in our […]

KBArticles Scripts, Commands, Registry Uncategorized

Citrix Access Gateway 4.5.x Certificate Installation – Root and Intermediate CA’s

@font-face { font-family: “Verdana”;}p.MsoNormal, li.MsoNormal, div.MsoNormal { margin: 0cm 0cm 0.0001pt; font-size: 10pt; font-family: “Times New Roman”; }div.Section1 { page: Section1;Open Internet Information Services management on a test or a no prod server and create a new website.   @font-face { font-family: “Verdana”;}p.MsoNormal, li.MsoNormal, div.MsoNormal { margin: 0cm 0cm 0.0001pt; font-size: 10pt; font-family: “Times New Roman”; […]

KBArticles Scripts, Commands, Registry Uncategorized

Check a file version on multiple remote computers

        Dim strFolder        Dim arrServers        Dim strProfile        strProfile =     inputbox(“Enter path to file to check I.E:  c$program filesinternet exploreriexplore.exe”,”File Check”)        arrComputers =     Array(“server1″,”server2”)        Set objFSO = CreateObject(“Scripting.FileSystemObject”)        sOutput=”Script Results for:” & strprofile & vbcrlf & vbcrlf                For EACH strComputer in arrComputers            […]

KBArticles Scripts, Commands, Registry Uncategorized

Check a folder exists on multiple remote computers

        Dim strFolder        Dim arrServers        Dim strProfile        strProfile =     inputbox(“Enter path to file to check I.E:  c$program filesinternex exploreriexplore.exe”,”File Check”)        arrComputers =     Array(“server1″,”server2”)        Set objFSO = CreateObject(“Scripting.FileSystemObject”)        sOutput=”Script Results for:” & strprofile & vbcrlf & vbcrlf                For EACH strComputer in arrComputers            […]

KBArticles Scripts, Commands, Registry Uncategorized

Set video hardware acceleration for VMware servers

Set WshShell = WScript.CreateObject(“WScript.Shell”)‘ Acceleration Levels go from 0 to 5. 0=full, 5=noneintAccelLevel = 0strInputString = WScript.StdIn.ReadLineintStartLocation = instr(1, strInputString,”SystemCurrentControlSet”)strPartKey = right(strInputString, len(strInputString) – intStartLocation +1)strNewKey = strPartKey & “Acceleration.Level”WshShell.RegWrite strNewKey, intAccelLevel,”REG_DWORD”