我想做一些事情,每当我在PowerShell中写下“notepad ++”这个词时,Notepad ++应用程序就会被打开(我知道如果我设置了别名,我可以在PowerShell中打开notepad ++,但我希望Notepad ++应用程序是在PowerShell之外打开) 这甚至可能吗?怎么样?我希望它是永久性的,所以每次打开PowerShell时,我都可以用它轻松打开notepad ++ 这就是我所做的,应用程序将在PowerShell中打开:
cd $env:USERPROFILE\Documents
md WindowsPowerShell -ErrorAction SilentlyContinue
cd WindowsPowerShell
New-Item Microsoft.PowerShell_profile.ps1 -ItemType "file" -ErrorAction SilentlyContinue
powershell_ise.exe .\Microsoft.PowerShell_profile.ps1
#and then in the ise that is open I wrote:
Set-Alias notepad++ C:\ProgramFiles\Notepad++\notepad++.exe