Não, não é suportado no Windows 10. Mesmo não no winver 1703.
Mudei para Barras de ferramentas em vez de fixar itens na barra de tarefas.
- Clique com o botão direito na barra de tarefas
- Selecionar barras de ferramentas
- Selecionar pasta
Nas barras de ferramentas, você pode arrastar e soltar os atalhos da maneira que quiser. Além disso, você pode alternar facilmente entre diferentes ramificações criando os atalhos com scripts:
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()
}
uso em 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<#
.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()
}
.1YourSolution.sln.lnk"
set-shortCut "$SourceCodeBasePath\OtherSpecialPath\NextSolution.sln" "$ShortCutDestination#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%pre%.1YourSolution.sln.lnk"
set-shortCut "$SourceCodeBasePath\OtherSpecialPath\NextSolution.sln" "$ShortCutDestination%pre%.2NextSolution.sln.lnk"
.2NextSolution.sln.lnk"
...
Depois disso, você pode arrastar e soltar arquivos, pastas e atalhos na barra de ferramentas e também verá os ícones associados:
Além disso, você pode reorganizar os ícones arrastando e soltando.