Jump to content

How can I enum the systems on a domain that have Chrome browser installed?


aleph01
 Share

Recommended Posts

Try this version, I realized I screwed up some of the variable names and their locations in the FileExists function.

#AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GUIListBox.au3>
#include <GuiConstantsEx.au3>
#include <WindowsConstants.au3>
#include <Array.au3>
#include <Misc.au3>
#include <File.au3>
Global $TargetFolder, $TargetItem, $FileList, $aItems, $sItems, $FileListItem, $ProgNum
_Main()
;ProgressOn("File Seeker","")
;ProgressSet(0, "", 0 & " %")
$TargetFolder = "C$Users"
If @error = 1 Then Exit
For $OuterLoop = 1 To $aItems[0]
    $FileList = _FileListToArray("" & $aItems[$OuterLoop] & "" & $TargetFolder & "", "*", 2)
    If $FileList = 0 Then
        MsgBox(0, "No Folders Found", "Path Not Found.")
        Exit
    EndIf
    For $InnerLoop = 1 To $FileList[0]
        If FileExists("" & $aItems[$OuterLoop] & "" & $TargetFolder & "" & $FileList[$InnerLoop] & "AppDataLocalGoogleChromeApplicationchrome.exe") Then
            MsgBox(0, $TargetFolder & "" & $TargetItem & "AppDataLocalGoogleChromeApplication", "A file named  chrome.exe resides here.")
        EndIf
    Next
    $ProgNum = Round($sItems / $aItems[0] * 100)
    ProgressSet($ProgNum, "", $ProgNum & " %")
Next

Func _Main()
    Local $hListBox, $FinishButton, $CancelButton
    ; Create GUI
    GUICreate("Select Computers", 210, 568)
    $FinishButton = GUICtrlCreateButton("Finish", 4, 541, 120)
    $CancelButton = GUICtrlCreateButton("Cancel", 126, 541, 80)
    $hListBox = GUICtrlCreateList("", 0, 0, 210, 545, BitOR($WS_BORDER, $WS_VSCROLL, $LBS_EXTENDEDSEL))
    GUISetState()
    ; Add strings
    _GUICtrlListBox_BeginUpdate($hListBox)

    ; add CUOPAC computers
    _GUICtrlListBox_AddString($hListBox, "CUONESTOP1")
    _GUICtrlListBox_AddString($hListBox, "CUONESTOP2")
    _GUICtrlListBox_AddString($hListBox, "CUONESTOP3")
    For $i = 1 To 5
        _GUICtrlListBox_AddString($hListBox, "CUOPAC" & $i)
    Next
    _GUICtrlListBox_EndUpdate($hListBox)

    ; Select items
    While 1
        Switch GUIGetMsg()
            Case $CancelButton
                Exit
            Case $FinishButton
                ExitLoop
            Case $GUI_EVENT_CLOSE
                Exit
        EndSwitch
    WEnd

    ; Get text of selected items
    $aItems = _GUICtrlListBox_GetSelItemsText($hListBox)
    GUIDelete()
    ;_ArrayDisplay($aItems)
EndFunc   ;==>_Main
Edited by BrewManNH

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Thanks, BrewManNH, that got me past that sticking point to the next, which was that a non-Chrome computer wouldn't create an array with _FileListToArray and I was getting a "subscript used with a non-array variable" error later in the script. However, I worked that out and got my progress bar working. Now the script works just like I want it to across the entire domain. As it turns out, I only needed the script to work on Windows 7 systems, but it would only take an @OSVersion line to determine the $TargerFolder variable to be "C$Users" or "C$Documents and Settings" to get the script to be usable with XP.

For any interested, here is the working version:

#AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GUIListBox.au3>
#include <GuiConstantsEx.au3>
#include <WindowsConstants.au3>
#include <Array.au3>
#include <Misc.au3>
#include <File.au3>
_Singleton("chromeSeek1.0.au3", 0)
_Singleton("chromeSeek1.0.exe", 0)
Global $FileList, $aItems, $sItems, $FileListItem, $ProgNum
$TargetFolder = "C$Users"
;$TargetFolder = "C$Documents and Settings"
_Main()
ProgressOn ("Progress", "", "", "", "", 16)
;ProgressSet(0, "", 0 & " %")
If @error = 1 Then Exit
For $OuterLoop = 1 To $aItems[0]
    $FileList = _FileListToArray("" & $aItems[$OuterLoop] & $TargetFolder, "*", 2)
    If $FileList <> 0 Then
      For $InnerLoop = 1 To $FileList[0]
        If FileExists("" & $aItems[$OuterLoop] & $TargetFolder & $FileList[$InnerLoop] & "AppDataLocalGoogleChromeApplicationchrome.exe") Then
            MsgBox(0, $aItems[$OuterLoop] & $TargetFolder & $FileList[$InnerLoop] & "AppDataLocalGoogleChromeApplication", "A file named  chrome.exe  resides here.")
        EndIf
   Next
;    ElseIf $FileList = 0 Then
;         MsgBox(0, $aItems[$OuterLoop], "Path Not Found.")
 EndIf
$ProgNum = Round($OuterLoop / $aItems[0] * 100)
ProgressSet($ProgNum, "", $ProgNum & " %")   
Next

Func _Main()
    Local $hListBox, $FinishButton, $CancelButton
    ; Create GUI
    GUICreate("Select Computers", 210, 568)
    $FinishButton = GUICtrlCreateButton("Finish", 4, 541, 120)
    $CancelButton = GUICtrlCreateButton("Cancel", 126, 541, 80)
    $hListBox = GUICtrlCreateList("", 0, 0, 210, 545, BitOR($WS_BORDER, $WS_VSCROLL, $LBS_EXTENDEDSEL))
    GUISetState()
    ; Add strings
    _GUICtrlListBox_BeginUpdate($hListBox)
    ; add CUOPAC computers
    _GUICtrlListBox_AddString($hListBox, "ittech1")
    _GUICtrlListBox_AddString($hListBox, "admat")
    _GUICtrlListBox_AddString($hListBox, "CUONESTOP3")
    For $i = 1 To 5
        _GUICtrlListBox_AddString($hListBox, "CUOPAC" & $i)
    Next
    _GUICtrlListBox_EndUpdate($hListBox)
    ; Select items
    While 1
        Switch GUIGetMsg()
            Case $CancelButton
                Exit
            Case $FinishButton
                ExitLoop
            Case $GUI_EVENT_CLOSE
                Exit
        EndSwitch
    WEnd
    ; Get text of selected items
    $aItems = _GUICtrlListBox_GetSelItemsText($hListBox)
    GUIDelete()
    ;_ArrayDisplay($aItems)
EndFunc   ;==>_Main

Again, thanks a million, BrewMan. Without your help, this script would have ended up permanently in my "Scripts in Progress" folder.

Meds.  They're not just for breakfast anymore. :'(

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...