2023-09-15 14:33:51 +00:00
|
|
|
# Function to create shortcuts
|
|
|
|
function Add-Shortcut
|
|
|
|
{
|
|
|
|
[CmdletBinding()]
|
|
|
|
param
|
|
|
|
(
|
|
|
|
[string]$Target,
|
|
|
|
[string]$Shortcut,
|
|
|
|
[string]$Arguments,
|
|
|
|
[string]$Icon,
|
|
|
|
[string]$Description
|
|
|
|
)
|
|
|
|
|
|
|
|
$WScriptShell = (New-Object -ComObject WScript.Shell)
|
|
|
|
$Shortcut = $WScriptShell.CreateShortcut($Shortcut)
|
|
|
|
$Shortcut.TargetPath = $Target
|
|
|
|
$Shortcut.Arguments = $Arguments
|
|
|
|
$Shortcut.IconLocation = $Icon
|
|
|
|
$Shortcut.Description = $Description
|
|
|
|
$Shortcut.Save()
|
2022-12-31 10:15:10 +00:00
|
|
|
}
|