I am trying to use Start-Process command to invoke another session of powershell. But I want to have the windows size of this new powershell to be small so I am trying to pass the following arguments
$arguments[0] += "New-Variable -Name host1 -Value (Get-Host)"
$arguments[1] += "$aff = $host1.UI.RawUI"
$arguments[2] += "$wff = $aff.WindowSize"
$arguments[3] += "$wff.Width = 10"
$arguments[4] += "$wff.Height = 10"
$arguments[5] += "$aff.WindowSize = $wff"
But it doesnt seem to work.
Any help will be highly appreciated Thanks