Command-Line-Interface
PowerShell - 在每個目錄中輸入 no 並打開 notepad2
你知道
notepad
PowerShell 或 cmd.exe 中的命令嗎?我想對NotePad2做同樣的事情我想在 PowerShell 中鍵入以下命令並打開 me.txt 文件;PS C:\Apps> no -me
我該如何配置?
您可以創建一個別名,但 -me 只是我。
PS > set-alias no notepad PS > no me
您必須將一個設置為 notepad2.exe 的完整路徑,因此它類似於
PS > set-alias no c:\my\customdirectory\notepad2.exe