Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
199 views

Accessing target path from a shortcut file on a 64 bit system using 32 bit application (C#)

I'm trying to access the target path from a shortcut(.lnk) file on a 64bit machine using my 32 bit application. To get the path, i was using the following code. WshShell shell = new WshShell(); ...
4
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 ...
4
votes
7answers
6k 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 Vista, ...
2
votes
0answers
354 views

Java parser for Windows shortcut (.lnk) created by cygwin

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 solutions proposed and no one ...
2
votes
2answers
915 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 <windows.h> #include ...
2
votes
4answers
825 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)" shortcut in Start Menu) ...
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
2answers
250 views

C++, good old LNK1169 (and LNK2005) errors

I have 4 files, 2 headers and 2 cpp files. Header file one: #ifndef complex_2 #define complex_2 #include<iostream> #include<cmath> using namespace std; namespace comp { class ...
1
vote
2answers
112 views

Replace all autocad shortcuts found on system ussing Batch?

I need to replace every icon (AutoCAD 2010.LNK) found on the computer with another .LNK using batch. The icon\ shortcut as we well know can be found anywhere and as many times as the user likes. How ...
1
vote
3answers
354 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 ...
1
vote
1answer
620 views

MSVCRTD.lib(cpu_disp.obj) : warning LNK4210: .CRT section exists; there may be unhandled static initializers or terminators

I know this question has popped up before but I could not find a good answer so I try here. I have a pure C dll (Win32) and I get this warning when compiling: MSVCRTD.lib(cpu_disp.obj) : warning ...
1
vote
0answers
565 views

.LNK File Shortcut Key no longer works if I press it while my C#, maximized, no border program is running

For a more general behavior probably caused by this problem please also read: http://stackoverflow.com/questions/2042925/shortcut-keys-defined-in-lnk-files-do-not-work-if-im-running-a-c-winforms-prog ...
1
vote
1answer
474 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.CreateShortcut(strDesktop + ...
0
votes
0answers
10 views

LNK1120: 1 unresolved external

I'm trying to compile Firefox with ICC, but keep getting LNK errors: http://i42.tinypic.com/dlm0c0.png And the config.log: http://pastebin.com/DXcy18Js Any ideas what is causing these errors? Or how ...
0
votes
2answers
61 views

Why does this code raise a LNK2019 error?

I was just making sure I understood inheritance by building this simple program where Dog inherits from Mammal. I am getting an error when I compile it. All it should do is go into a constructor for ...
0
votes
1answer
61 views

porting an xp batch file to win7

here is my original win xp batch file: @echo off %~d1 cd "%~p1" set swf=%~f1 set media=%~p1..\media.lnk echo set WshShell = WScript.CreateObject("WScript.Shell")>DecodeShortCut.vbs echo set Lnk = ...
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
120 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
2answers
106 views

My Page Updates On First Click But Does Not Refresh

I have a php file that almost work properly. But then it wouldn't refresh the page everytime the admin clicks the approve/notapprove link. so here's the thing: when an IT upload a file to the page, ...
0
votes
2answers
205 views

c++ LNK2001: unresolved external symbol problem

Greetings. I have searched for a solution, but I think this problem is personal code specific, hence my posting here. I'll get straight to the point. In my main I have two objects. Computer ...
0
votes
4answers
190 views

Windows error LNK1179

I compiled an exe on windows VS 2005, a c++ program that link to other libs of mine. It compiled and suddenly it doesn't with an error of LNK1170 COMDAT " I can't understand what happened and how to ...
0
votes
3answers
433 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
2answers
293 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 filepath of the .lnk file ...
0
votes
1answer
472 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 ...