0
votes
0answers
41 views
Java parser for Windows shortcut (.lnk) created by cygwin
Hi all,
Following a previous discussion on lnk files parsing in java (http://stackoverflow.com/questions/309495/windows-shortcut-lnk-parser-in-java/1700377),
I've tested all solu …
1
vote
9answers
2k views
Windows shortcut (.lnk) parser in Java?
I'm currently using Win32ShellFolderManager2 and ShellFolder.getLinkLocation to resolve windows shortcuts in Java. Unfortunately, if the Java program is running as a service under …
0
votes
2answers
46 views
Passing a shortcut to a batch script
My bat script accepts a filepath as a parameter, which allows me to drag-and-drop a file onto it from Explorer. Unfortunately when I drop a shortcut onto it, I simply get the filep …
0
votes
1answer
119 views
Is there a way to resolve a .lnk target that works for links that end up in c:\windows\installer ?
The usual way to resolve lnk involve using WShell.WshShortcut or IShellLink that way :
var WshShell = WScript.CreateObject("WScript.Shell");
var oShellLink = WshShell.CreateShortc …
2
votes
2answers
459 views
reformatting windows lnk file via automated script
Problem: There are a bunch of .lnk files on C drive that point to the J: drive, but the J: drive is gone the P: drive has replaced it. Various tricks have been done to get the .lnk …
1
vote
2answers
232 views
Launching Shell Links (LNKs) from WOW64
Our 32-Bit application launches Windows LNK files (Shell Links) via ShellExecute. When it tries to "launch" a link to a 64-Bit binary (such as the "Internet Explorer (64-Bit)" shor …
1
vote
2answers
339 views
Wine linker error: trying to create .lnk
I'm trying to create an .lnk file programatically. I would prefer to use C, but C++ is fine (and is what all the MSDN stuff is in).
The relevant code sample is:
#include <win …
3
votes
3answers
725 views
Reading the target of a .lnk file in Python?
Hi, I'm trying to read the target file/directory of a shortcut (.lnk) file from Python. Is there a headache-free way to do it? The .lnk spec [PDF] is way over my head.
I don't mind …
0
votes
1answer
186 views
Expression Web: Shortcut doesn’t point to an exe file, but I want to use it to edit
Problem: I have to support users who need to edit web pages. Some of these web pages exist only as textarea controls. Fortunately, there is a firefox plugin that allows the user to …
7
votes
3answers
4k views
How do you create an application shortcut (.lnk file) in C# or .Net
The title says it all. If anyone has a routine or code snip-it handy that will save me the google trolling that would be great. Otherwise I'll post whatever I come up with.
Than …
