Error Message: Error -2147217900: failed to create SQL database Edgesight, error details: CREATE DATABASE failed. Some file names listed could not be created. Check related errors.. OR Error -2147217865: failed to drop SQL database: Edgesight, error detail: Cannot drop the database ‘Edgesight’, because it does not exist of you do not have permission Resolution:Delete or […]
This happens if the database user does not have DBCREATOR rights on the SQL instance Assign these rights and try again
Check the profile isnt locked on in use on the server (System Properties > Advanced System Settings> User profiles > Settings > delete the profile for the user in question If that doesnt exist and the user is still having issues logging in (in our instance it was even after rebooting)delete HKLMSOFTWAREMICROSOFTWINDOWS NTCURRENTVERSIONPROFILELISTUSER SID Error Message: […]
We needed out IE settings globally to set the “check for newer versions of stored pages” as everytime I visit the webpage. In group policy this was nightmarish because we already had a significant amount or maintenance settings applied and was difficult to set this without resetting those settings already applied. Impatience got the better of […]
Lookin for some free new music to listen too? Check out http://www.jamesscanlonmusic.com/🙂
This script will run for all listed citrix servers to check if logons are enabled or disabled remotely.its just a remote registry query coupled with an array, basic but functional.. 🙂 —————————————————————————————————-‘START SCRIPTconst HKEY_LOCAL_MACHINE = &H80000002 Dim oReg, strKeyPath, strValueName, strDisabled, objArgs, strComputer, arrComputersarrComputers = Array(“server1″,”server2″”) sOutput = “Logons Enabled(0) or Disabled(1)” & VBCRLF & […]
The application virtualization client could nto launch.An unexpected error occurred. 4604EE8-0B017604-0000040F Resolution: Check the permissions on the servers c:AppVirt – Folder (or whereever softgrid cache is installed), if ok replace all existing permissions on all descendants from the parent object.Can be as simple as user getting an access denied on the icon cache for the troubled […]
Thjis was a script that was accessing AD to export a list of usersSome user had the “/” character in the name – the following addition fixed the script to run correctly For Each strMemberDN in objGroup.MemberstrMemberDN = Replace(strMemberDN, “/”, “/”)Set objMember = GetObject(“LDAP://” & strMemberDN)Wscript.Echo objMember.cnNext
Citrix Edgesight supports automatic daylight savings for US only (apparently) all other unlucky countries need to manually turn it on and off. 🙂 Solution: Edgesight 5.1: Company Configuration > Agent Settings > Daylight savings > Off / On Edgesight 5.4: Company Configuration > Settings > Daylight Savings Off / On http://support.citrix.com/article/CTX124463
Create this and place in the following folderC:Program FilesCitrixEuemServiceSemsService.exe.config(citrix edgesight 5.1) Extract of ServiceSemsService.exe.config <?xml version=”1.0″ encoding=”utf-8″?> <configuration> <runtime> <generatePublisherEvidence enabled=”false” /> </runtime> </configuration> Reference: http://support.citrix.com/article/CTX120846