The team at mastersof.cloud have released a series of free udemy.com courses to help you master all the different configurations for your Apple iPhones, Google Androids mobiles and other home devices, like internet routers, TVs, Playstation 5, Nintendo Switch controls. See the free Udemy courses here A Beginners Guide To Protecting Your Family Online – […]
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 […]
Hi Everyone, I have moved my blog to a privately hosted wordpress environment to cater for increased traffic and more consultants. Hope you still get these updates etc! Apologies for any inconvenience! New Site is: http://3.9.218.163 Cheers James Scanlon
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 […]
Problem:When accessing domain shares from a non domain member w7 x64 box we were experiencing very slow prompt for credentials (1-2 minutes) Resolution:run the following from an elevated command prompt and the change should be instantnetsh interface tcp set global autotuninglevel=disablednetsh interface tcp set global rss=disabled
‘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 […]
‘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 & ” ” & […]
‘vbscript – operates like a multimedia keyboards mute keySet WshShell = CreateObject(“WScript.Shell”)WshShell.SendKeys(chr(&hAD))
‘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
REM Hide Altiris icons from system tray‘vbscriptConst HKEY_LOCAL_MACHINE = &H80000002strComputer = “.”Set objReg=GetObject(“winmgmts:{impersonationLevel=impersonate}!\” & _ strComputer & “rootdefault:StdRegProv”)objReg.SetDwordValue HKEY_LOCAL_MACHINE,”SOFTWAREAltirisClient Service”,”ShowTrayIcon”,0