YanoRyuichi.com/
Wiki
Blog
GitHub
Sandbox
開始行:
* 外部プログラムを別ウィンドウで開く [#i4212b75]
PS> start-process notepad.exe ...
PS> powershell.exe -command "start-process notepad.exe" ...
PS> powershell "start notepad"
- (1)のようにすると、メモ帳は現在のシェルにアタッチされ、...
- よって、(2)のようにpowershellを別に起動して、その中でst...
** 参考 [#q0bb8c5e]
https://stackoverflow.com/questions/35274687/launch-an-un...
終了行:
* 外部プログラムを別ウィンドウで開く [#i4212b75]
PS> start-process notepad.exe ...
PS> powershell.exe -command "start-process notepad.exe" ...
PS> powershell "start notepad"
- (1)のようにすると、メモ帳は現在のシェルにアタッチされ、...
- よって、(2)のようにpowershellを別に起動して、その中でst...
** 参考 [#q0bb8c5e]
https://stackoverflow.com/questions/35274687/launch-an-un...
ページ名: