Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create a shortcut with Powershell or CMD. What is the command line for it? For example:

C:\Program Files (x86)\ColorPix

This folder has ColorPix.exe I want to create ColorPix.exe's shortcut with command prompt. How can i do it?

Thanks for your help :)

share|improve this question

2 Answers

up vote 15 down vote accepted

I don't know any native cmdlet in powershell but you can use com object instead:

$WshShell = New-Object -comObject WScript.Shell
$Shortcut = $WshShell.CreateShortcut("$Home\Desktop\ColorPix.lnk")
$Shortcut.TargetPath = "C:\Program Files (x86)\ColorPix\ColorPix.exe"
$Shortcut.Save()

you can create a powershell script save as set-shortcut.ps1 in your $pwd

param ( [string]$SourceExe, [string]$DestinationPath )

$WshShell = New-Object -comObject WScript.Shell
$Shortcut = $WshShell.CreateShortcut($DestinationPath)
$Shortcut.TargetPath = $SourceExe
$Shortcut.Save()

and call it like this

Set-ShortCut "C:\Program Files (x86)\ColorPix\ColorPix.exe" "$Home\Desktop\ColorPix.lnk"

share|improve this answer
Thanks, it works :) – cethint Mar 14 '12 at 12:27
Happy to help, accept this as the answer! Thanks1 – C.B. Mar 14 '12 at 12:34

The set-shortcut.ps1 sample worked fine except that the first parameter is actually the shortcut name and the second is the shortcut target. The usage (call it like this) should actually be

Set-ShortCut "$Home\Desktop\ColorPix.lnk" "C:\Program Files (x86)\ColorPix\ColorPix.exe"
share|improve this answer
Good catch... I've fixed it in my answer...! – C.B. Feb 14 at 14:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.