![How to create a shortcut on desktop for visual studio 2014](https://loka.nahovitsyn.com/169.jpg)
![how to create a shortcut on desktop for visual studio 2014 how to create a shortcut on desktop for visual studio 2014](https://i.stack.imgur.com/ZE4wW.png)
HOW TO CREATE A SHORTCUT ON DESKTOP FOR VISUAL STUDIO 2014 WINDOWS
These arguments are seen here: $arguments = " -noProfile -nologo"Īs seen in the image following this paragraph, the top Windows PowerShell window is launched with no arguments. For Windows PowerShell, we will be starting Windows PowerShell without using a profile and without displaying the logo. We next use the variable $arguments to hold the arguments we will pass to the application when it is launched via the shortcut. This is seen here: $appName = "PowerShell" In the first line of the script, we assign the string PowerShell to the $appName variable. When we run the CreateShortCutOnQuickLaunch.ps1 script, we are greeted with the friendly Windows PowerShell icon on our Quick Launch toolbar:
![how to create a shortcut on desktop for visual studio 2014 how to create a shortcut on desktop for visual studio 2014](https://www.technical-recipes.com/wp-content/uploads/2011/12/Installer2.png)
$shortCut = $wshShell.CreateShortCut("$qlf\$appName.lnk") $qlf = join-path -path $em("appdata") -childPath "Microsoft\Internet Explorer\Quick Launch" $volEnv = $wshShell.environment("volatile") $wshshell = new-object -comobject wscript.shell Here is the CreateShortCutOnQuickLaunch.ps1 script: $appName = "PowerShell" See also a VBScript version of this script. Luckily, in Windows PowerShell we have a cmdlet that makes it rather easy to do. With semispecial folders, we have to work with the path ourselves. Don’t know why, but it just did not quite make the cut to be special. RS, as you no doubt discovered, the Quick Launch toolbar is not a special folder at all. When they are missing it is a major bummer. On the other hand, as we saw in the last “Hey, Scripting Guy!”, special folders have coded values that can make referring to them easier.
![how to create a shortcut on desktop for visual studio 2014 how to create a shortcut on desktop for visual studio 2014](https://think.unblog.ch/wp-content/uploads/2021/04/shortcut-to-calculator.png)
They are just folders after all, but they live in a special place. One of the funny things about special folders is that they, for the most part, really are not all that special. So how can I create a shortcut to Windows PowerShell that will live on the Quick Launch toolbar? The problem is that I cannot find a special folder or anything that refers to this location. Hey, Scripting Guy! I love the Quick Launch toolbar.
![How to create a shortcut on desktop for visual studio 2014](https://loka.nahovitsyn.com/169.jpg)