﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2330	Error occurs when using some object properties with AutoIt	agi@…		"When converting a little working VBScript to AutoIt i recognized that it doesn´t work in AutoIt:

VBScript (working fine):

Dim sTSHomePath
Set oUser = GetObject(""LDAP://cn=MYUser,ou=USERS,dc=test,dc=com"")
sTSHomePath = LCase(oUser.TerminalServicesHomeDirectory)
msgbox sTSHomePath
 
Converted to Autoit it throws the error ""The requested action with this object has failed"":
 
Dim $sTSHomePath
$oUser = ObjGet(""LDAP://cn=MYUser,ou=USERS,dc=test,dc=com"")
$sTSHomePath = StringLower($oUser.TerminalServicesHomeDirectory)
msgbox(4096,""Output"", $sTSHomePath)"	Bug	closed		AutoIt	3.3.8.1	None	No Bug	object properties	
