Created
January 29, 2021 09:36
-
-
Save reorx/89d351cc40a78bed10f9fa91dd88bf23 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SETLOCAL | |
set dest=C:\Users\reorx\AppLinks | |
set source=%1 | |
FOR %%i IN ("%source%") DO ( | |
set filedrive=%%~di | |
set filepath=%%~pi | |
set filename=%%~ni | |
set fileextension=%%~xi | |
) | |
@echo off | |
powershell "$s=(New-Object -COM WScript.Shell).CreateShortcut('%dest%\%filename%.lnk');$s.TargetPath='%source%';$s.Save()" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment