Files
aza/APP/spotify-recorder/create_shortcut.ps1
2026-04-16 13:32:32 +02:00

11 lines
419 B
PowerShell

$ws = New-Object -ComObject WScript.Shell
$desktop = [Environment]::GetFolderPath('Desktop')
$lnk = Join-Path $desktop "Surovy's Music Recorder.lnk"
$sc = $ws.CreateShortcut($lnk)
$sc.TargetPath = Join-Path $PSScriptRoot "Surovy Music Recorder.bat"
$sc.WorkingDirectory = $PSScriptRoot
$sc.IconLocation = Join-Path $PSScriptRoot "app.ico"
$sc.WindowStyle = 7
$sc.Save()
Write-Host "Desktop-Verknuepfung erstellt: $lnk"