Started Rust Development #10

Merged
mysticmomba merged 10 commits from development into master 2025-01-28 15:36:14 -05:00
Showing only changes of commit 7dfdf92d19 - Show all commits
+4 -2
View File
@@ -906,8 +906,10 @@ $toolStripDropDownButton3.ToolTipText = "Tools"
# Kill all Cherwell Processes # Kill all Cherwell Processes
$cherwellKillProcessToolStripMenuItem.Name = "Kill all Local Cherwell Processes" $cherwellKillProcessToolStripMenuItem.Name = "Kill all Local Cherwell Processes"
$cherwellKillProcessToolStripMenuItem.Size = New-Object System.Drawing.Size(93, 22) $cherwellKillProcessToolStripMenuItem.Size = New-Object System.Drawing.Size(93, 22)
$cherwellKillProcessToolStripMenuItem.Text = "Kill Local Cherwell Processes" $cherwellKillProcessToolStripMenuItem.Text = "Kill all Local Cherwell Processes"
$cherwellKillProcessToolStripMenuItem.Add_Click() $cherwellKillProcessToolStripMenuItem.Add_Click(
Get-Process | Where-Object {$_.Path -like "*Cherwell*"} | Stop-Process
)
# #
# #
# HSC Pass Check Menu Item # HSC Pass Check Menu Item