Jump to content

Recommended Posts

import-csv Computer List.csv | 

foreach {
    $system = "" | 
    select Name, UserName, MacAddress, IPAddress

    $colItems = Get-WmiObject -Class Win32_NetworkAdapterConfiguration `
    -ComputerName $_.Computer -Filter "IpEnabled = TRUE"
    ForEach ($objItem in $colItems){
    $System.MacAddress = $objItem.MacAddress
    $System.IPAddress = $objItem.IpAddress[0]}

    $server = Get-WmiObject -Class Win32_ComputerSystem `
    -ComputerName $_.Computer

    $System.Name = $server.Name
    $system.UserName = $server.Username
    $system
   } |
Export-Csv c:\Info.csv -NoType

Can this be done in autoit?

Link to comment
Share on other sites

Sure can, not sure what this has to do with Excel though.

edit: Granted it takes more lines of code, but can easily be scripted.
Search for examples using WMI and how to read a text file.

edit: Oh, I get it....CSV file, opened with Excel.  Makes sense, I just don't automatically associate CSVs with Excel.

Edited by spudw2k
Link to comment
Share on other sites

  • Moderators

Try AutoIt Scriptomatic for the WMI code, get that in place and the post it so we can assist you with importing into Excel.

 

'?do=embed' frameborder='0' data-embedContent>>

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Link to comment
Share on other sites

$wbemFlagReturnImmediately = 0x10
$wbemFlagForwardOnly = 0x20
$colItems = ""
$strComputer = "localhost"

$Output=""
$Output = $Output & "Computer: " & $strComputer  & @CRLF
$Output = $Output & "==========================================" & @CRLF
$objWMIService = ObjGet("winmgmts:\\" & $strComputer & "\root\CIMV2")
$colItems = $objWMIService.ExecQuery("SELECT * FROM Win32_NetworkAdapterConfiguration WHERE (IPEnabled = True)", "WQL", _
                                          $wbemFlagReturnImmediately + $wbemFlagForwardOnly)
$colSettings = $objWMIService.ExecQuery("SELECT * FROM Win32_ComputerSystem", "WQL", _
                                          $wbemFlagReturnImmediately + $wbemFlagForwardOnly)

If IsObj($colItems) then
   For $objItem In $colItems
       Next
If IsObj($colSettings) then
   For $objItem In $colSettings
            $Output = $Output & "IPAddress: " & $objItem.IPAddress(0) & @CRLF
            $Output = $Output & "MACAddress: " & $objItem.MACAddress & @CRLF
            $Output = $Output & "UserName: " & $objItem.UserName & @CRLF
            $Output = $Output & "Name: " & $objItem.Name & @CRLF
      if Msgbox(1,"WMI Output",$Output) = 2 then ExitLoop
      $Output=""
   Next
Else
   Msgbox(0,"WMI Output","No WMI Objects Found for class: " & "Win32_NetworkAdapterConfiguration" )
Endif
EndIf

Okay got the scriptomatic installed. So how would I import a csv file then export the results into a csv file?

Link to comment
Share on other sites

  • Moderators

Can you please explain what is in the csv you want to "import"? An example of what information is in the csv, and how you want to manipulate it in your script, would be helpful. If you cannot share the actual file, perhaps upload a reproducer csv.

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Link to comment
Share on other sites

The Excel portion can be done like this...

#include <Excel.au3>
#include <array.au3>

; get source spreadsheet and read it to 1D arry


local  $sWorkbook = @ScriptDir & "\computers list.xlsx"
local  $oExcel = _Excel_Open(False) ; Start Excel or connect to a running instance
local  $oBook = _Excel_BookOpen($oExcel, $sWorkbook, True) ; Open the workbook
local  $aData = _Excel_RangeRead($oBook, Default, $obook.ActiveSheet.Usedrange) ; Read all used cells into an array

; iterate array values through WMI to get your values...I'll just fake some data and write it to Excel

local $aFinal[ubound($aData)][3]

$aFinal[0][0] = 'Computer'
$aFinal[0][1] = 'UserName'
$aFinal[0][2] = 'Ipaddress'

for $1 = 1 to ubound($aData) - 1
    $aFinal[$1][0] = $aData[$1]
    for $2 = 1 to ubound($aFinal,2) - 1
        $aFinal[$1][$2] = $1 & ' - ' & $2
    Next
Next

; now open a new spreadsheet, write the 2D array starting at cell B1 and save it as info.xlsx (overwritting it if it exists)

Local $oWorkbook = _Excel_BookNew($oExcel)
_Excel_RangeWrite($oWorkbook, $oWorkbook.Activesheet, $aFinal, "B1")
_Excel_BookSaveAs($oWorkbook, @scriptdir & '\info.xlsx',default,true)
_Excel_Close($oExcel, False) ; Close Excel (and the workbook)

; display the spreadsheet

shellexecute(@scriptdir & '\info.xlsx')

* - This is right out of the Help file minus the error checking.

kylomas

Forum Rules         Procedure for posting code

"I like pigs.  Dogs look up to us.  Cats look down on us.  Pigs treat us as equals."

- Sir Winston Churchill

Link to comment
Share on other sites

Why close Excel and use SHellExecute to display tghe WorlBook?  Just make Excel visible again

$oExcel.Visible = True

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

;)

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

You don't import the Excel to the WMI.

Logical flow:

read spreadsheet to array (code present)

execute WMI instruction for each PC in the array (for you to write)

save to new spreadsheet (code present)

Forum Rules         Procedure for posting code

"I like pigs.  Dogs look up to us.  Cats look down on us.  Pigs treat us as equals."

- Sir Winston Churchill

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

×
×
  • Create New...