notes/Add icon to taskbar-RE8YQ6w3.sh
<#
Creates new icon for Windows Taskbar - pins program to taskbar
PowerShell -ExecutionPolicy Bypass .\note_icon.ps1
#>


$shell = new-object -com "Shell.Application"  
$folder = $shell.Namespace('C:\Windows')    
$item = $folder.Parsename('notepad.exe')
$item.invokeverb('taskbarpin')

syntax highlighted by Code2HTML, v. 0.9.1