如何使用Chocolatey将带有参数的MMC固定到任务栏?

时间:2015-02-27 17:34:59

标签: powershell mmc chocolatey

我正在使用PowerShell和Chocolatey cmdlet Install-ChocolateyPinnedTaskBarItem并尝试将Hyper-V管理器快捷方式固定到Windows任务栏。这是Windows的64位安装。

enter image description here

通常你可以打电话:

Install-ChocolateyPinnedTaskBarItem "$env:programfiles\Notepad++\notepad++.exe"

我们知道它是virtmgmt.msc。当您检查其现有任务栏快捷方式时,您会看到它是:

%windir%\system32\mmc.exe "%windir%\system32\virtmgmt.msc"

我尝试使用内置的$env:windir

Install-ChocolateyPinnedTaskBarItem '$env:WinDir\system32\mmc.exe "$env:WinDir\system32\virtmgmt.msc"'

这失败了:

  

'$ env:WinDir \ system32 \ mmc.exe“$ env:WinDir \ system32 \ virtmgmt.msc”'不存在,无法固定到任务栏

如何使用Install-ChocolateyPinnedTaskBarItem将Hyper-V管理器等MMC快捷方式固定到任务栏?我应该使用普通的windir%吗?

enter image description here

0 个答案:

没有答案