‘VBSCRIPT Set wshShell = Wscript.CreateObject (“WScript.shell”) strUSER = inputbox(“Enter User Name”,”Enter User Name”) wshShell.run “cmd.exe /c dsquery user -name ” & Chr(34) & strUSER & Chr(34) & ” | dsmod user -disabled no & pause” set wshshell = nothing
To “see inside a published app” when its published / installed on an APP-V serverrun from a command prompt sfttray.exe /exe cmd.exe “APPLICATION NAME”
Situation: We were running XenApp 5.0, windows 2008 SP2 and Appsense EM. PNAgent.exeĀ was listed as a startup item for each user in the mandatory profile. Sometimes this would NOT start even though their profile path had not changed. Resolution: Delete the file listed below if the path to the end users appsense repository. (registry hives) […]
Enable MSI Verbose Logging / Debug Logging Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindowsInstaller]“logging”= “voicewarmup” “debug”=dword:00000007 ļ»æ Disable MSI Versbose Logging / Debug Logging Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINESOFTWAREPoliciesMicrosoftWindowsInstaller]“logging”=-“debug”=-
Problem: After installation of Office 2010 (we also had various previous version of office 2003, 2007 etc visio, project,Visual Studio 2010, Sharepoint Designer 2010) Outlook would continually try to run a ‘Just in time install’ Error Message 1: Please wait while Windows configures Microsoft Office professional Plus 2010. It would then ask to reboot – and […]
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesNTDSParameters] “Schema Update Allowed”=dword:00000001
Registry key to enable the citrix receiver refresh menu [HKEY_CURRENT_USERSoftwareCitrixReceiver]“EnableAdvancedControls”=dword:00000001 Doesnt get much easier than that…. š
We have 2 domains ABC (Windows nt4.0) and ABCDEF (Windows 2003) User logs onto XP PC in ABCDEF domain as ABC user User cant connect to mapped drive on SERVER1 in ABCDEF domain. All access from other servers in both directions seems to work, trusts are working and validated. From the NT4.0 (DC for ABC […]
Problem: User ‘x’ failed to log on, could not access the home directory /. These error messages logged when user logs into an AD isolated FTP site. There were no changes to the server recently or the user accounts the site access just stopped working. The FTP account listed in the error message to access the site […]
‘vbscriptOption ExplicitDim objCommand, objConnection, strBase, strFilter, strAttributes, objUserDim strQuery, objRecordset, strdistinguishedName, strTSPath, strCN, objFSO, Set objCommand = CreateObject(“ADODB.Command”)Set objConnection = CreateObject(“ADODB.Connection”)objConnection.Provider = “ADsDSOObject”objConnection.Open “Active Directory Provider”objCommand.ActiveConnection = objConnectionConst ForWriting = 2‘…set the base DNstrBase = “<ldap://DC=domain,DC=/local>”strFilter = “(&(objectCategory=person)(objectClass=user))”strAttributes = “sAMAccountName,cn,distinguishedName”strQuery = strBase & “;” & strFilter & “;” & strAttributes & “;subtree”objCommand.CommandText = strQueryobjCommand.Properties(“Page Size”) […]