ShellExecute is a Win32 API function used to launch document files
95
votes
6answers
152k 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");
raw_input();
Then ...
25
votes
3answers
21k 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 programming Windows for over ...
12
votes
2answers
3k views
Getting output from a shell/dos app into a Delphi app
I have a commandline application coded in delphi that i need to call from a normal desktop application (also coded in delphi). In short, I want to call the commandline app and display the text it ...
11
votes
2answers
17k 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 here... I don't ...
11
votes
2answers
4k views
How do I launch a process with low priority? C#
I want to execute a cmd line tool to process data. It does not need to be blocking.
I want it to be low priority. So I wrote the below
Process app = new Process();
app.StartInfo.FileName = ...
9
votes
1answer
7k views
How to Pass parameters for a Ant script , which is invoked via shell script?
I need to invoke a ant script via shell script. Let us consider the parameters for ant script are a,b,c. how can i pass the parameter for those variables? I must provide the parameters for ant vis ...
9
votes
1answer
12k views
How to set environment variables in Jenkins?
I would like to be able to do something like:
AOEU=$(echo aoeu)
and have Jenkins set AOEU=aoeu.
The Environment Variables section in Jenkins doesn't do that, instead, it sets AOEU='$(echo aoeu)'. ...
9
votes
3answers
6k views
How to call shell script from php that requires SUDO?
I have a file that is a bash script that requires SUDO to work.
I can run it from the command line using SUDO but I will be prompted to put in the SUDO password.
I want to run this script from php ...
8
votes
3answers
5k views
How to shell to another app and have it appear in a delphi form
In Delphi I've used ShellExecute for years to launch (and optionally wait for) other applications. Now though, I need to have one of these applications appear in one of my Delphi app forms. I've tried ...
8
votes
1answer
3k views
Exec vs ExecWait vs ExecShell vs nsExec::Exec vs nsExec::ExecToLog vs nsExec::ExecToStack vs ExecDos vs ExeCmd
Can I know what are the differences between each Exec, ExecWait, ExecShell, nsExec::Exec, nsExec::ExecToLog, nsExec::ExecToStack, ExecDos and ExecCmd, as in when to use which?
I 've posted the ...
8
votes
1answer
8k views
starting a UAC elevated process from a non-interactive service (win32/.net/powershell)
I'm using a thrid party Windows service that handles some automation tasks by running scripts and executables using CreateProcessAsUser(). I'm running into problems on Windows Server 2008 due to UAC ...
8
votes
4answers
17k views
How can a Delphi Program send an Email with Attachments via the DEFAULT E-mail Client?
Within my program, I am composing an email to send using the default e-mail client software installed on a user's machine.
I have composed the mailto address, the subject, the multilined body, and I ...
8
votes
1answer
1k views
ShellExecute fails if run from elevated process and non-default browser set in Windows 8 RTM
Set non-default browser in Windows 8 RTM (Chrome, Firefox) and try to run code like this:
ShellExecute(NULL, "open", "http://stackoverflow.com", NULL, NULL, SW_SHOWNORMAL);
It's ok.
But then change ...
7
votes
3answers
782 views
shellexecute fails to open http links for some users
Some users of an app of mine are reporting links dont open in the browser. I always launch them with shellexecute(0, 'open', 'http://...
what could I check for an incorrect(?) setting in the http ...
7
votes
1answer
730 views
Is it OK to pass a null window handle to ShellExecute?
I have a Delphi console application that at the end needs to launch one of two applications.
I'm having some problems getting ShellExecute to work without erroring, and I think the problem is ...
7
votes
1answer
324 views
Best way to read output of shell command
In Vim, What is the best (portable and fast) way to read output of a shell command? This output may be binary and thus contain nulls and (not) have trailing newline which matters. Current solutions I ...
7
votes
1answer
270 views
Longer execution through Java shell than console?
I have a script in Python which do some computations. When I run this script in console it takes about 7 minutes to complete but when I run it thought Java shell it takes three times longer. I use ...
7
votes
1answer
229 views
Is there a way to detect if a monitor is plugged in?
I have a custom application written in C++ that controls the resolution and other settings on a monitor connected to an embedded system. Sometimes the system is booted headless and run via VNC, but ...
6
votes
2answers
2k views
OSX equivalent of ShellExecute?
I've got a C++ app that I'm porting from Win32 to OSX. I'd like to be able to launch arbitrary files as if the user opened them. This is easy on windows using ShellExecute. How do I accomplish the ...
6
votes
3answers
3k views
Programmatically selecting file in explorer
In my application I can programmatically open explorer and select a file using the following code:
void BrowseToFile(LPCTSTR filename)
{
CString strArgs;
strArgs = _T("/select,\"");
...
6
votes
3answers
3k views
Wait before ShellExecute is carried out?
I have a hopefully quick question: Is it possible to delay execution of ShellExecute a little bit?
I have an application with autoupdater. After it downloads all necessary files etc, it renames ...
6
votes
1answer
350 views
Selecting file in Windows Explorers does not always work
Using the following
explorer.exe /select, "c:\path\to\file.txt"
I can open Windows Explorer and select the file. In Delphi I do this to select "Parm" file:
...
6
votes
1answer
907 views
What are the parameters for “printto” using shellexecute?
I'm using Delphi's winapi ShellExecute to try to print to a user selected printer and not the default printer. I'm trying to figure out the syntax for a command using the printto verb.
What would an ...
5
votes
1answer
2k views
how to get return value of an exe called by ShellExecute
How to get the return value of an exe which is called by shellexecute function.
ShellExecute(NULL, NULL, TEXT ( ".\\dpinstx86.exe" ), NULL, NULL, SW_SHOWNORMAL);
In the above example I want the ...
5
votes
3answers
4k views
How can I run a child process that requires elevation and wait?
Win 7/UAC is driving me crazy.
From within my C++ application, I need to run an executable that requires elevation on Windows 7. I want to fire this thing off and wait for it to finish before ...
5
votes
1answer
236 views
How to launch the associated application for a file / directory / URL?
Linux seems to be easy: xdg-open <file/directory/URL>.
Apparently, Mac is similar: open should be used instead of xdg-open. I don't have access to a Mac so I couldn't test it.
For Windows, I ...
5
votes
3answers
2k views
How can I launch Delphi 7 from an EXE file written in Delphi XE?
I'm doing some build automation and would like to run the Delphi 7 IDE from an Application that I'm writing using Delphi XE.
My Delphi 7 IDE is at:
'C:\Program ...
5
votes
1answer
125 views
How do I open a file for edit from the command line under Windows?
How do I open a file for edit from the command line under Windows?
Mainly I am looking to open the file in the default editor associated for it (not to be confused with default action for this ...
5
votes
3answers
2k views
How can I pass more than one command line argument via c#
I need to pass more than one command line argument via c# for a process called handle.exe:
http://www.google.com.mt/search?sourceid=chrome&ie=UTF-8&q=handle.exe
First, I need to run the ...
5
votes
3answers
175 views
Why Desktop.Open() doesn't work with MagicISO being installed
Here's my code
if (Desktop.isDesktopSupported()) {
Desktop desktop = Desktop.getDesktop();
if (desktop.isSupported(Desktop.Action.OPEN)) {
try {
desktop.open(file.getCanonicalFile());
...
4
votes
9answers
7k 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.
Now I got a ...
4
votes
1answer
346 views
Is there any problem to using this code in a Thread ? (Delphi)
i use this code in a thread (through Indy Onexecute event) . is there any problem ?
function TFrmMain.ShellExecute_AndWait(FileName, Params: string): bool;
var
exInfo: TShellExecuteInfo;
Ph: ...
4
votes
2answers
4k views
shell_exec() timeout management & exec()
I'm running a third party script by using a wrapper class I've written which calls shell_exec() and pipes into a file I parse later using php code. I should mention that this is working, but I am ...
4
votes
1answer
698 views
How can I stop Chromium from creating a “WebViewHost” host window when launching the user's default web browser?
I am using the Chromium web browser control in my Delphi 6 application.
Whenever the user clicks on a web link in the web page currently being displayed that is not on my primary web site I launch ...
4
votes
5answers
830 views
shell_exec does not run in the background, any other solution?
i'm using php in apache on CentOS.
i'm need to serve users, that they can delete big files by click.
trying to use shell_exec.
but its not run in the background.
it runs and make the user wait.
my ...
4
votes
3answers
712 views
How to programmatically open Run c++?
the question is how to open Run programmatically from c++? I know that have some function that can replace that, like shellexec, winexec but for some task I need just Run dialog to appear.
4
votes
3answers
2k views
Open default browser as standard user (C++)
I'm currently using ShellExecute "open" to open a URL in the user's browser, but running into a bit of trouble in Win7 and Vista because the program runs elevated as a service.
When ShellExecute ...
4
votes
2answers
264 views
How to execute a VS2008 command from Python and grab its output?
I wish to run
tf changeset 12345
Using the Visual Studio 2008 Command tool. It is located in: "c:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\" and the command that gets launched is: ...
4
votes
3answers
2k views
WOW64 woes (.lnk shortcuts)
I'm using Windows 7 (x64) and Delphi 2010.
I'm writing a component that will emulate the start menu. However, I've run into the following problems:
If I attempt to open a shortcut (.lnk file) with ...
3
votes
2answers
1k views
Getting rid of the evil delay caused by ShellExecute
This is something that's been bothering me a while and there just has to be a solution to this. Every time I call ShellExecute to open an external file (be it a document, executable or a URL) this ...
3
votes
1answer
2k views
Reading the output file of ShellExecute() in Delphi 2010?
I use the ShellExecute command to run an exe file which gets an input text file and returns an output text file. I've written it like this:
ShellExecute(mainFormHandle, 'open', 'Test.exe',
...
3
votes
1answer
3k views
How to run application which requires admin rights from one that doesn't have them [closed]
I've been stuck on this for a few hours until I've finally managed to do it. There are already links which pointed me the right direction:
Is it possible for the executable to ask for Administrator ...
3
votes
3answers
900 views
how come we need not close the handle returned by ShellExecute?
On success, ShellExecute returns a handle.
Do we need to close this handle, and if so, how ?
According to examples published my Microsoft, we need not close this handle. But the doc of ShellExecute ...
3
votes
4answers
1k views
Piping data to a file with the windows ‘ShellExecute’ function
I am using the ‘ShellExecute’ function in windows vista
Is there any way to pipe the output to a file?
i.e.
MySqlDump.exe '-u user1 -ppassword dbName > TheOutputFile.Sql
Here my code
...
3
votes
2answers
141 views
Can I capture shell invocations from Perl?
I have a Perl script which invokes other programs, i.e. it calls system and/or exec and/or open with a pipe and/or uses the backtick operator.
Can I run this script in such a way that it will print ...
3
votes
3answers
1k views
Exec a shell command in Go
I'm looking to execute a shell command in Go and get the resulting output as a string in my program. I saw the Rosetta Code version:
package main
import "fmt"
import "exec"
func main() {
cmd, err ...
3
votes
4answers
4k views
Handle for ShellExecute() - Parent Window?
I am trying to use ShellExecute to open a file in Excel. I was reading about the function on MSDN forums, and I found the folowing information about the handle, which is the first parameter:
"hwnd ...
3
votes
2answers
310 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 buff[1024]; // ...
3
votes
1answer
2k views
Syntax of shell\command\open values - %1 vs %l vs %L
one of the programs I'm developing at work is reading the registry to figure out how to open files that it is given from another application (we didn't use ShellExecute because we need to process id, ...
3
votes
2answers
441 views
Python's win32api only printing to default printer
I'm trying to use win32api to output a PDF document to a particular printer.
win32api.ShellExecute(0, "print", filename, '/d:"%s"' % printername, ".", 0)
filename is a full pathname to the file, ...
