Ні, він не підтримується в Windows 10. Навіть не в winver 1703.
Я перейшов на панелі інструментів замість прив’язки елементів до панелі завдань.
- Клацніть правою кнопкою миші на панелі завдань
- Виберіть Панелі інструментів
- Виберіть папку
На панелі інструментів ви можете легко перетягувати ярлики, як вам захочеться. Крім того, ви можете легко перемикатися між різними гілками, створюючи ярлики зі сценарієм:
set-shortcut.ps1:
<#
.SYNOPSIS
create-shortcut
.DESCRIPTION
creates a shortcut to a file
.NOTES
File Name : set-shortcut.ps1
Author : http://stackoverflow.com/a/9701907
Prerequisite : PowerShell V2
.LINK
http://stackoverflow.com/a/9701907
.EXAMPLE
set-shortCut "$SourceCodeBasePath\SpecialPath\YourSolution.sln" "$ShortCutDestination\InternalReferences.sln.lnk"
.EXAMPLE
set-shortCut "$SourceCodeBasePath\OtherPath\Setup.sln" "$ShortCutDestination\Setup.sln.lnk"
#>
function set-shortcut
( [string]$SourceExe, [string]$DestinationPath )
{
$WshShell = New-Object -comObject WScript.Shell
$Shortcut = $WshShell.CreateShortcut($DestinationPath)
$Shortcut.TargetPath = $SourceExe
$Shortcut.Save()
}
використання в CreateShortCuts.ps1:
#include Commands
. "$PSScriptRoot\set-shortcut.ps1"
. "$PSScriptRoot\set-shortcut-extended.ps1"
$ShortCutDestination = "C:\Toolbars\MyNewToolbarFolder"
$SourceCodeBasePath = "G:\x\Main2017"
#Create Shortcuts for Toolbar
set-shortCut "$SourceCodeBasePath\SomeSpecialPath\YourSolution.sln" "$ShortCutDestination\0.1YourSolution.sln.lnk"
set-shortCut "$SourceCodeBasePath\OtherSpecialPath\NextSolution.sln" "$ShortCutDestination\0.2NextSolution.sln.lnk"
...
Після цього на панелі інструментів ви можете перетягнути файли, папки та ярлики, і ви також побачите пов’язані з ними значки:
Також ви можете переставити піктограми за допомогою перетягування та падіння.