如何使用PowerShell打开带有快捷方式的应用程序(例如只有应用程序的名称)?

时间:2017-09-28 20:33:25

标签: powershell shortcut

我想做一些事情,每当我在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

0 个答案:

没有答案