Added SCCM Log Parse Button

This commit is contained in:
brotoskyj
2025-01-24 10:52:05 -05:00
parent 1d7764bc80
commit a703ec3149
6 changed files with 5246 additions and 0 deletions
+16
View File
@@ -79,6 +79,7 @@ $REMOTEButton = New-Object System.Windows.Forms.Button
$LAPSButton = New-Object System.Windows.Forms.Button
$CLUButton = New-Object System.Windows.Forms.Button
$CFEButton = New-Object System.Windows.Forms.Button
$SCCMButton = New-Object System.Windows.Forms.Button
$textBox1 = New-Object System.Windows.Forms.TextBox
$label18 = New-Object System.Windows.Forms.Label
$tabPage3 = New-Object System.Windows.Forms.TabPage
@@ -607,6 +608,7 @@ $groupBox2.Controls.Add($LAPSButton)
$groupBox2.Controls.Add($CLUButton)
$groupBox2.Controls.Add($CFEButton)
$groupBox2.Controls.Add($textBox1)
$groupBox2.Controls.Add($SCCMButton)
$groupBox2.Controls.Add($label18)
$groupBox2.Location = New-Object System.Drawing.Point(8, 6)
$groupBox2.Name = "groupBox2"
@@ -715,6 +717,20 @@ $CFEButton.Add_Click(
}
)
#
# SCCM Log Parse Button
#
#
$SCCMButton.Location = New-Object System.Drawing.Point(172, 191)
$SCCMButton.Name = "SCCMLogParser"
$SCCMButton.Size = New-Object System.Drawing.Size(200, 30)
$SCCMButton.TabIndex = 37
$SCCMButton.Text = "SCCM Log Parser"
$SCCMButton.UseVisualStyleBackColor = $true
$SCCMButton.Add_Click(
{
SCCMLogParse
}
)
# textBox1
#
$textBox1.Location = New-Object System.Drawing.Point(6, 36)