2
votes
7answers
449 views
Which reasons could make ShellExecute fail?
I have a VB6 application which opens files with their associated application using:
ShellExecute(0, "open", filename, params, vbNullString, vbNormalFocus)
This works perfectly. …
1
vote
2answers
38 views
Random Delay When Printing to Dymo LabelWriter Turbo Via ShellExecute() [Solved]
I have an external program which takes in a few arguments (PrintLabel) which is called from my application using ShellExecute. PrintLabel is shown below. Sometimes it can take upwa …
0
votes
0answers
6 views
ShellExecute and notifying the event of closing the launched file in c program
I have opened a .doc file in internet explorer using ShellExecute() in a c program.Is there any way that program which has called ShellExecute() gets notified when the opened file …
0
votes
3answers
239 views
C++: Get name of process executing my application
My application will be launched by an installer during the installation process, probably using ShellExecute. I would like to get the name of the installer executable when it launc …
8
votes
5answers
4k views
How do I execute a program from python? os.system fails due to spaces in path
I have a python script that needs to execute an external program, but for some reason fails.
If I have the following script:
import os;
os.system("C:\\Temp\\a b c\\Notepad.exe"); …
0
votes
2answers
100 views
run a ruby script from delphi via shellexecute
I've written a little ruby script that lets me send emails by calling it along with some command line parameters.
At the command line, this works:
ruby.exe mail_it.rb fromaddr="m …
0
votes
5answers
156 views
How can I redirect all shortcuts to a given executable? Is there any equivalent to a symlink on Windows?
I am working on a program which includes a general purpose engine, some program specific content, and a custom automatic updater to handle updating the many gigabytes worth of medi …
2
votes
4answers
129 views
Executing another program from C#, do I need to parse the “command line” from registry myself?
From the registry, for a given file type, I get a string containing something like this:
"C:\Program Files\AppName\Executable.exe" /arg1 /arg2 /arg3
or sometimes:
"C:\Program F …
4
votes
3answers
1k views
ShellExecute equivalent in .NET
I'm looking for the .NET-preferred way of performing the same type of thing that ShellExecute does in Win32 (opening, printing, etc. for arbitrary file types).
I've been programmi …
0
votes
1answer
55 views
How to Execute/ShellExecuteEx/InvokeCommand ITEMIDLIST pointing to Shell objects ?
I'm building a kind of dock, and I struggle at finding how to save things like "Run", "Search", "Help", "Printers" and reopen them after that.
I tried this :
CComPtr<IShellFol …
1
vote
2answers
340 views
How do I run a command-line program in Delphi?
I need to execute a Windows "find" command from a Delphi software. I've tried to use the ShellExecute command, but it doesn't seem to work. In C, I'd use the system procedure, but …
0
votes
1answer
158 views
ShellExecuteEx in VBA
I understand how to use ShellExecute in VBA (for my Outlook macros) but I'm looking to be able to use ShellExecuteEx to wait for the executed program in my script. Does anyone hav …
0
votes
2answers
79 views
error executing shell script in PHP
I am trying to execute a shell command via:
<php echo shell_execute("tac /home/kusmuk/access-logs/kusmuk.org"); ?>
But it does not give any output. What could be the reaso …
3
votes
1answer
78 views
How to find if an document can be OPENed via ShellExecute?
I want to check if a particular file can be successfully "OPEN"ed via ShellExecute, so I'm attempting to use AssocQueryString to discover this.
Example:
DWORD size = 1024;
TCHAR …
1
vote
2answers
116 views
Open an html page on an install CD with the default browser
I am trying to build an install CD with a custom MFC application set to autorun when the CD is inserted.
The instructions are included as a simple html page with images and links …
