Fluke tech support have no idea when drivers will be available.
In addition the help system in LinkWare 2.6 is based on WinHlp32.exe and this is not available in Vista so you cannot view the help file.
My blog about green energy, offshore wind farms, C, C++, C#, web, programming, electronics, Raspberry Pi/Pico, 3D printing, networking, structured cabling and any other nonsense I fancy writing down.
Fluke tech support have no idea when drivers will be available.
In addition the help system in LinkWare 2.6 is based on WinHlp32.exe and this is not available in Vista so you cannot view the help file.
using IWshRuntimeLibrary;
Third, Here is the code :-
// This creates a Folder Shortcut
IWshShell wsh = new WshShellClass();
IWshShortcut shortcut = (IWshShortcut) wsh.CreateShortcut (shortcutpathfilename);
shortcut.TargetPath = targetdir;
shortcut.Save();
shortcutpathfilename is a path & filename of the .lnk file.
targetdir is the directory the link points to.