Using Start-Process
I can call another powershell script within my powershell script.
e.g. Start-Process powershell -argument '.\Another.ps1
The issue is the new Window only has a limited amount of history (i.e. scroll back up to see what was printed out)
Is there any way to increase the history size from Start-Process
?
If not, how do you call another powershell script that can have more history size?