No, no es compatible con Windows 10. Incluso no con winver 1703.
Cambié a las barras de herramientas en lugar de anclar elementos a la barra de tareas.
- Haga clic derecho en la barra de tareas
- Seleccionar barras de herramientas
- Seleccione la carpeta
En las barras de herramientas, puede arrastrar y soltar atajos fácilmente como lo desee. Además, puede cambiar fácilmente entre diferentes ramas creando los accesos directos con secuencias de comandos:
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 en 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"
...
Después de esto, puede arrastrar y soltar archivos, carpetas y accesos directos en su barra de herramientas y también verá los iconos asociados:
También puede reorganizar los iconos con arrastrar y soltar.