gfunk999 Posted September 2, 2008 Posted September 2, 2008 Hi All, Please Help...I don't get it... This works -> $gettext = ControlTreeView ("Group Policy", "", "SysTreeView321", "GetText", "Local Computer Policy") but this doesn't -> $gettext1 = ControlTreeView ("Group Policy", "", "SysTreeView321", "GetText", "Local Computer Policy\Computer Configuration\Administrative Templates\Network\Offline Files") ControlTreeView ("Group Policy", "", "SysTreeView321", "Expand", "Local Computer Policy\Computer Configuration\Administrative Templates\Network\Offline Files") ;won't work either I got these info from the Visible Text in Windows Info tool. Obviously i'm doing something wrong $gpedit = @SystemDir & "\gpedit.msc" Run(@ComSpec & " /c " & $gpedit, "", @SW_HIDE) Sleep(5000) $gettext = ControlTreeView ("Group Policy", "", "SysTreeView321", "GetText", "Local Computer Policy") ;this works $gettext1 = ControlTreeView ("Group Policy", "", "SysTreeView321", "GetText", "Local Computer Policy\Computer Configuration\Administrative Templates\Network\Offline Files") ;this does not work MsgBox(0, "", $gettext) MsgBox(0, "", $gettext1)
PsaltyDS Posted September 2, 2008 Posted September 2, 2008 Hi All, Please Help...I don't get it... This works -> $gettext = ControlTreeView ("Group Policy", "", "SysTreeView321", "GetText", "Local Computer Policy") but this doesn't -> $gettext1 = ControlTreeView ("Group Policy", "", "SysTreeView321", "GetText", "Local Computer Policy\Computer Configuration\Administrative Templates\Network\Offline Files") ControlTreeView ("Group Policy", "", "SysTreeView321", "Expand", "Local Computer Policy\Computer Configuration\Administrative Templates\Network\Offline Files") ;won't work either I got these info from the Visible Text in Windows Info tool. Obviously i'm doing something wrong $gpedit = @SystemDir & "\gpedit.msc" Run(@ComSpec & " /c " & $gpedit, "", @SW_HIDE) Sleep(5000) $gettext = ControlTreeView ("Group Policy", "", "SysTreeView321", "GetText", "Local Computer Policy");this works $gettext1 = ControlTreeView ("Group Policy", "", "SysTreeView321", "GetText", "Local Computer Policy\Computer Configuration\Administrative Templates\Network\Offline Files");this does not work MsgBox(0, "", $gettext) MsgBox(0, "", $gettext1) From the help file: Each "level" is separated by |. So that should be: $sPath = "Local Computer Policy|Computer Configuration|Administrative Templates|Network|Offline Files" $gettext1 = ControlTreeView ("Group Policy", "", "SysTreeView321", "GetText", $sPath) Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
gfunk999 Posted September 2, 2008 Author Posted September 2, 2008 Clear as water now. Thank you very much PsaltyDS!!! From the help file: So that should be: $sPath = "Local Computer Policy|Computer Configuration|Administrative Templates|Network|Offline Files" $gettext1 = ControlTreeView ("Group Policy", "", "SysTreeView321", "GetText", $sPath)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now