تماشای ویدئو VBScript Basics Part 16 Create Shortcuts از آی-ویدئو

VBScripting (.vbs) Basic tutorial on how to create a shortcut. This works with both files and folders, and you can add a description, icon, and even quite a bit more. Code Example: ______________________________________________________ Option Explicit Dim obj, nLink Set obj = CreateObject("wscript.shell") Set nLink = obj.CreateShortcut("C:\Users\Jeremy\Desktop\newshortcut.lnk") nLink.TargetPath = "C:\Users\Jeremy\Downloads\Music\Iridescent - Linkin Park.mp3" nLink.Descript
4 دی 1396
آی-ویدئو