PowerShell - 在每个目录中输入 no 并打开 notepad2

PowerShell - 在每个目录中输入 no 并打开 notepad2

您知道notepadPowerShell 或 cmd.exe 中的命令吗?我想对记事本2我想在 PowerShell 中输入以下命令并打开 me.txt 文件;

PS C:\Apps> no -me

我该如何配置它?

答案1

您可以创建一个别名,但 -me 只能是我。

PS > set-alias no notepad
PS > no me

您必须将其中一个设置为 notepad2.exe 的完整路径,因此它将类似于

PS > set-alias no c:\my\customdirectory\notepad2.exe 

相关内容