How can Change the Color of the Titelbar ? Picture GUI
My Code is in Powershell and not C#
[reflection.assembly]::loadwithpartialname("System.Windows.Forms")
[reflection.assembly]::loadwithpartialname("System.Drawing")
$form = New-Object System.Windows.Forms.Form
$form.Size = New-Object Drawing.Point 710,509
$form.text = "Windows_Optimisation_Pack...."
$form.StartPosition = "CenterScreen"
$form.ForeColor='#aaaaaa'
$form.BackColor='#212121'
$form.MinimizeBox = $false
$form.MaximizeBox = $false
I already tried different commands, but none worked. I can only find Solutions for C#.