Hey!
I want to write script to save size settings (Width,Height of windows) of actually runnings programs. In first step the most important for me are folders, but...
in process i saw only one proces - explorer(i used get-process). How Can i get paths to this folders with powershell? Because running program path i can get with:
Get-Process |where {$_.mainWindowTItle} |format-table id,name,mainwindowtitle,path –AutoSize
Second question is how to get information abut Windows size, buffer size etc? I used this:
(Get-Host).UI.RawUi
but this is only for current program.
Sorry for my English :)