Something so simple…but it works.
Just add this to your form:
$form.MaximizeBox = $False $form.MinimizeBox = $False $form.ControlBox = $False
Notes
To completely hide the form:
$form.ShowInTaskbar = $False $form.Hide()
Lab Core | The Lab of MrNetTek
A blog about IT, technical solutions, and code.
Something so simple…but it works.
Just add this to your form:
$form.MaximizeBox = $False $form.MinimizeBox = $False $form.ControlBox = $False
Notes
To completely hide the form:
$form.ShowInTaskbar = $False $form.Hide()