Adding a shortcut in PowerShell with Aliases

A hard working admin is constantly opening and closing multiple programs to get work done. When you’re working in PowerShell, we can use aliases to make switching to a new program as fast as possible.

We’ll first need to find the folder location of the program executable. We’re using Notepad in our example, which is located in “C:WindowsSystem32notepad.exe”

adding-a-shortcut-in-powershell-with-aliases photo 1

Next we’ll open PowerShell and enter:

new-item alias:np -value C:WindowsSystem32notepad.exe

This states that we are assigning the Alias Name “np” to the program Notepad.exe. Once the command is run, it outputs the verification of our assigning the alias to the program.

adding-a-shortcut-in-powershell-with-aliases photo 2

Now we can type our new shortcut “np” in the PowerShell prompt, hit enter,

adding-a-shortcut-in-powershell-with-aliases photo 3

and our program opens right up!

adding-a-shortcut-in-powershell-with-aliases photo 4

If we need to remove the alias shortcut in the future, we’ll just type:

remove-item alias:np

adding-a-shortcut-in-powershell-with-aliases photo 5

If you need your alias to resist deletion, then you can add one of two available options to the end of the alias creation command:

This option will allow you to change the association of the alias or delete it during the session, but you will have to add -force to the end of the command.

new-item alias:np -value C:WindowsSystem32notepad.exe –options “ReadOnly”

This option will make the alias unable to be altered or deleted while the session is open.

new-item alias:np -value C:WindowsSystem32notepad.exe –options “Constant”

To view all the current aliases, type:

Set-Location alias:
Get-ChildItem *

adding-a-shortcut-in-powershell-with-aliases photo 6

Creating shortcuts using aliases is pretty easy, and can be very useful. However, the alias definition will be removed the next time you open a PowerShell session, so if you want to make an alias permanent, you’ll have to modify your PowerShell Profile.

More stories

Remove Shutdown and Restart Buttons In Windows 7

Sometimes you might have a shared computer where you don’t want the users to be able to do a Shutdown or Restart. Today we take a look at using Local Group Policy Editor to remove those buttons from the Start Menu in Windows 7.

How To Manage Hibernate Mode in Windows 7

If you don’t use the Hibernate option in Windows 7, you can save some disk space by disabling it. Here we will look at a few different ways to manage hibernate options in Windows 7.

Yoono Desktop Let’s You Connect to Social Networks and IM

With the multitude of social networks and IM services out there, it can be frustrating trying to keep track of them all. Today we take a look at the Yoono desktop application which lets you keep track of your social networks and instant messages from one central place.