forked from fleschutz/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
new-shortcut.ps1
executable file
·40 lines (36 loc) · 1.1 KB
/
new-shortcut.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<#
.SYNOPSIS
Creates a new shortcut file
.DESCRIPTION
This PowerShell script creates a new shortcut file.
.PARAMETER shortcut
Specifies the shortcut filename
.PARAMETER target
Specifies the path to the target
.PARAMETER description
Specifies a description
.EXAMPLE
PS> ./new-shortcut C:\Temp\HDD C:\
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
param([string]$shortcut = "", [string]$target = "", [string]$description)
try {
if ($shortcut -eq "" ) { $shortcut = read-host "Enter new shortcut filename" }
if ($target -eq "" ) { $target = read-host "Enter path to target" }
if ($description -eq "" ) { $description = read-host "Enter description" }
$sh = new-object -ComObject WScript.Shell
$sc = $sh.CreateShortcut("$shortcut.lnk")
$sc.TargetPath = "$target"
$sc.WindowStyle = "1"
$sc.IconLocation = "C:\Windows\System32\SHELL32.dll, 3"
$sc.Description = "$description"
$sc.save()
"✔️ created new shortcut $shortcut ⭢ $target"
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}