-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCreate-CSVData.ps1
70 lines (58 loc) · 2.11 KB
/
Create-CSVData.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[void][System.Reflection.Assembly]::LoadWithPartialName("MySql.Data")
function Get-IniContent ($filePath)
{
$ini = @{}
switch -regex -file $FilePath
{
"^\[(.+)\]" # Section
{
$section = $matches[1]
$ini[$section] = @{}
$CommentCount = 0
}
"^(;.*)$" # Comment
{
$value = $matches[1]
$CommentCount = $CommentCount + 1
$name = “Comment” + $CommentCount
$ini[$section][$name] = $value
}
"(.+?)\s*=(.*)" # Key
{
$name,$value = $matches[1..2]
$ini[$section][$name] = $value
}
}
return $ini
}
$ScriptFolder = Split-Path -Parent -Path $MyInvocation.MyCommand.Source
$IniContent = Get-IniContent ($ScriptFolder + "\smapp.ini")
[String] $Server = $IniContent["Database"]["DBLocation"]
$PSUser = $IniContent["Database"]["DBUser"]
$PSPassword = $IniContent["Database"]["DBPass"]
$PSSchema = "software_matrix"
$PSTbl = "smcrawler"
$CSVData = @()
#Open MySQL Connection
$myconnection = New-Object MySql.Data.MySqlClient.MySqlConnection
$myconnection.ConnectionString = "Database=" + $PSSchema + ";server=" + $Server + ";Persist Security Info=false;user id=" + $PSUser + ";pwd=" + $PSPassword + ";"
$myconnection.Open()
$command = $myconnection.CreateCommand()
#Query Database before creating CSV
$command.CommandText = "select * from " + $PSTbl + ";"
$reader = $command.ExecuteReader()
while ($reader.Read()) {
$obj = New-Object PSObject
$obj | Add-Member -MemberType NoteProperty -Name "Computer" -Value $Reader["Computer"].ToString()
$obj | Add-Member -MemberType NoteProperty -Name "Name" -Value $Reader["Name"].ToString()
$obj | Add-Member -MemberType NoteProperty -Name "Publisher" -Value $Reader["Publisher"].ToString()
$obj | Add-Member -MemberType NoteProperty -Name "Version" -Value $Reader["Version"].ToString()
$CSVData += $obj
}
$reader.close()
#Save data to CSV
$CSVData | export-csv $IniContent["Database"]["CSVPath"] -notypeinformation
#Close MySQL Connection
$myconnection.Close()
#Run VBS
start-process ($ScriptFolder + "\IngestCSV.vbs")