起動してるウィンドウを調べる

PowerShellで起動しているウィンドウを調べる。
Windowsキー→すべてのアプリ(表示されなければ)→
Windows PowerShell→Windows PowerShell
でPowerShellが起動。
Get-Process | Where-Object {$_.MainWindowTitle -ne “”} | Select-Object MainWindowTitle
と入力

してEnterキー。