Jump to content

Control Tree View


gfunk999
 Share

Recommended Posts

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)
Link to comment
Share on other sites

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)

:D

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
Link to comment
Share on other sites

Clear as water now. Thank you very much PsaltyDS!!! :D

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)

;)

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...