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

Uncategorized

Deploying to AWS with Citrix Smart Deploy – no NAT instance was detected

Situation: During the deployment of a blueprint via Citrix Smart Tools > Smart Deploy we came across the following error when attempting to deploy to our AWS Resource Location The following problems were detected with your configuration Please re-configure as no NAT instance was detected in this AWS Resource location Solution: The blueprint / Citrix […]

Uncategorized

Edgesight some devices not updating

  Errors: EventID: 1309 Event code: 3005 Event message: An unhandled exception has occurred. Event time: 21/11/2012 05:09:03 Event time (UTC): 21/11/2012 05:09:03 Event ID: 253f40dc21e443718a8b4ae7da0f3f58 Event sequence: 19 Event occurrence: 4 Event detail code: 0 Application information: Application domain: /LM/W3SVC/1/ROOT/edgesight-1-129979474088414087 Trust level: Full Application Virtual Path: /edgesight Application Path: C:Program Files (x86)CitrixSystem MonitoringServerEdgeSightPages   […]

KBArticles Scripts, Commands, Registry Uncategorized

SCRIPT: check if folder is empty

‘vbscriptOption ExplicitDim oFS : Set oFS = CreateObject(“Scripting.FileSystemObject”)Function FolderEmpty(strFolderPathName) Dim oFiles, oFile, oFolder, oSubFolders, oSubFolder Dim blnFileFound : blnFileFound = False Set oFolder = oFS.GetFolder(strFolderPathName) Set oFiles = oFolder.Files If oFiles.Count > 0 Then  FolderEmpty = False  Exit Function End If Set oSubFolders = oFolder.SubFolders For Each oSubFolder In oSubFolders  If Not FolderEmpty(oSubFolder.Path) Then   FolderEmpty = False   Exit Function  End If Next FolderEmpty = TrueEnd FunctionDim strFolderPathName1 : strFolderPathName1 = “file://server/c$/folder“If […]

KBArticles Scripts, Commands, Registry Uncategorized

SCRIPT: check Xen servers logons enabled

‘vbscriptconst HKEY_LOCAL_MACHINE = &H80000002 Dim oReg, strKeyPath, strValueName, strDisabled, objArgs, strComputer, arrComputersSet objArgs = WScript.Arguments arrComputers = Array(“server1″,”server2”) sOutput = “Logons Enabled(0) or Disabled(1)” & VBCRLF & VBCRLFFor EACH strComputer in arrComputers Set oReg=GetObject(“winmgmts:{impersonationLevel=impersonate}!\” & strComputer & “rootdefault:StdRegProv”)  strKeyPath = “SoftwareMicrosoftWindows NTCurrentVersionWinlogon”  strValueName = “WinStationsDisabled”  oReg.GetStringValue HKEY_LOCAL_MACHINE,strKeyPath,strValueName,strDisabled  sOutput = sOutput & strcomputer & ”    ” & […]

KBArticles Scripts, Commands, Registry Uncategorized

SCRIPT: set citrix xenapp XML to trusted for localhost

‘vbscriptOption ExplicitDim WSHShellDim objNTInfoDim GetComputerNameDim xmlConst MetaFrameWinSrvObject = 6Set objNTInfo = CreateObject(“WinNTSystemInfo”)GetComputerName = lcase(objNTInfo.ComputerName)Set WSHShell = WScript.CreateObject(“WScript.Shell”)Set xml=CreateObject(“MetaframeCOM.Metaframeserver”)xml.initialize MetaFrameWinSrvObject,GetComputerName‘xml.initialize MetaFrameWinSrvObject,”servername”xml.WinServerObject.TrustXMLRequests = 1WScript.Quit