外部プログラムを別ウィンドウで開く

 PS> start-process notepad.exe                           (1)
  
 PS> powershell.exe -command "start-process notepad.exe" (2)
 PS> powershell "start notepad"
  • (1)のようにすると、メモ帳は現在のシェルにアタッチされ、メモ帳が起動している間はシェルを操作できない。
  • よって、(2)のようにpowershellを別に起動して、その中でstart-processでメモ帳を起動するとよい。

参考

https://stackoverflow.com/questions/35274687/launch-an-unparented-process-from-powershell


トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS

Last-modified: 2018-09-10 (月) 06:26:45