Started Rust Development (#10)

Reviewed-on: brotoskyj/CHAMP#10
Co-authored-by: brotoskyj <jbrotosky@gmail.com>
Co-committed-by: brotoskyj <jbrotosky@gmail.com>
This commit was merged in pull request #10.
This commit is contained in:
brotoskyj
2025-01-28 15:36:14 -05:00
committed by brotoskyj
parent d65ac84d29
commit 353a1ec628
13 changed files with 7296 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)