Modifying Botton Layout + Size

@That-Annoying-Guy thanks again for all the help.

What I did to move my button lay out was modify

$buttonCloseApps.Location = New-Object -TypeName 'System.Drawing.Point' -ArgumentList 160,4 #these values modify the x,y axis so I changed them from 14,4

Then, in order to make my button bigger what I did was modify the “$buttonSize” variable (because the $buttonCloseApps.MinimumSize receives it’s value from it) to the following:

$buttonSize = New-Object -TypeName 'System.Drawing.Size' -ArgumentList 160,24 #modifying these two values changes the height and width with the default being 130,24

This worked perfectly because I am only using one button anyway:
Perfect