Tagged Questions

5
votes
3answers
3k views

Reading the target of a .lnk file in Python?

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 using Windows-only ...
2
votes
2answers
1k views

Reformatting Windows lnk file via an automated script

Problem: There are a bunch of .lnk files on the C drive that point to the J: drive, but the J: drive is gone, and the P: drive has replaced it. Various tricks have been done to get the .lnk files to ...
1
vote
3answers
358 views

General approach to reading lnk files

Several frameworks and languages seem to have lnk file parsers (C#, Java, Python, certainly countless others), to get to their targets, properties, etc. I'd like to know what is the general approach ...
0
votes
0answers
18 views

How resolve a .lnk in C# for a Webfolder on Windows XP?

I have configured webfolders (WebDAV/SharePoint) in My Network Places on Windows XP. I can get to the shortcuts (.lnk) files. I followed the solution provided here to resolve the links: How to ...
0
votes
3answers
35 views

How to tell that the Setup has an uninstaller?

I have made a small application without setup. Just copy from A to B. Now I wanted to copy also a shortcut (lnk) file in the Windows system to have the application visible as uninstall-able. But when ...
0
votes
0answers
124 views

Windows shortcut (.lnk) parser in Java that can read arguments

Basically the title says it all, I need to parse .lnk to extract the path and the arguments. JShortcut can do this, but it's GPL. Any suggestions ?
0
votes
3answers
434 views

How can I launch programmatically (C++) an application from a Windows shortcut (.lnk file)?

how can I launch programmatically an application from a Windows shortcut (.lnk file)? I tried to use the API ShellExecute and it seems to work. Any caveat? Thank you. Here it is a snippet of my ...
0
votes
1answer
473 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 open the textarea ...