Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

44
votes
6answers
67k 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 ...
14
votes
3answers
8k 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 ...
7
votes
1answer
180 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 ...
6
votes
1answer
3k 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 ...
6
votes
5answers
9k 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 ...
6
votes
2answers
2k 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 = ...
5
votes
1answer
70 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
883 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 ...
5
votes
2answers
311 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 ...
5
votes
1answer
160 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: ...
5
votes
3answers
1k 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 ...
5
votes
3answers
1k 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
3k 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 ...
4
votes
3answers
963 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 ...
4
votes
3answers
309 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
1answer
236 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
3answers
883 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 ...
4
votes
3answers
1k 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
188 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
2answers
8k 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 ...
3
votes
2answers
136 views

ActiveXObject(“Shell.Application”) - how to pass arguments with spaces?

I run exe from my asp.net with JavaScript using ActiveXObject. It runs successfully, except parameters: function CallEXE() { var oShell = new ActiveXObject("Shell.Application"); var prog = ...
3
votes
2answers
89 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
950 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,\""); ...
3
votes
5answers
204 views

replace a particular text in all the files using single line shell command

i have a renamed js file which i have to call in each of my php page. Now i want to replace that old name with the new one using shell. what iam using is this :- sed -i ’s/old/new/g’ * but this is ...
3
votes
2answers
181 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
2answers
2k views

Waiting for ShellExecuteEx (Setting access rights on Windows process)

I'm using the ShellExecuteEx function in a C++ program to launch an Uninstall.lnk file. In my program, I'd like to wait for the uninstaller to finish. My first attempt was to set the ...
3
votes
2answers
1k 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 ...
3
votes
4answers
3k 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
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 ...
2
votes
3answers
124 views

How to avoid confirmation message when executing a .reg file with shellexecute command

In my program I check for a registry key at startup and if somehow it does not exist I execute the reg file located in the application folder wit the help of ShellExecute command. How can I avoid ...
2
votes
3answers
47 views

PHP shell_exec with parameters is not working

I have a problem with the shell_exec option in my server. I am running CentOS 5.7 with CPanel and PHP installed on it. In our coding we are passing parameters to a php file using shell_exec. Our ...
2
votes
0answers
124 views

Waiting for applications to finish loading [closed]

Possible Duplicate: Start external app with ShellExecuteEx and wait until it become initialized Is there some way of getting a Delphi app to wait for an external application to finish ...
2
votes
2answers
90 views

Can one detect how .exe was launched?

I want to be able to detect whether a given exe was shellex'd programmatically or if it was entered and executed interactively in, say, CMD.EXE. Is there anything about the way an exe is launched ...
2
votes
3answers
116 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 ...
2
votes
2answers
385 views

ant java task : redirecting output with spawn=true

Greetings, a rather clear question here. I have to launch a java job with <java>, which is to be run in parallel with ant and it's okay if the job outlives the ant process, hence spawn="true". ...
2
votes
2answers
258 views

TerminateProcess() doens't close the application

I am trying to use the TerminateProcess to terminate an app launched by ShellExecuteEX like this: SHELLEXECUTEINFO ExecuteInfo; ExecuteInfo.fMask = SEE_MASK_FLAG_NO_UI; /* Odd but true */ ...
2
votes
2answers
231 views

ShellExecute blocks (never returns) when firewall denies internet access

I've been using ShellExecute to open URLs in a browser, invoked from a modal windows' code, like this: procedure TfmAbout1.BtnHomePageClick(Sender: TObject); begin inherited; if ConnectedToWeb ...
2
votes
1answer
224 views

Strange file-permissions if apps run as administrator

My program must be run as administrator and creates some files. If I run it manually by right-click on the icon and selecting "run as administrator" -- everything okay -- all users have access to ...
2
votes
3answers
879 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 ...
2
votes
1answer
206 views

Calling command from Perl, need to see output

I need to call some shell commands from perl. Those commands take quite some time to finish so I'd like to see their output while waiting for completion. The system function does not give me any ...
2
votes
1answer
235 views

Why do we need to pass LPCTSTR lpParameters with ShellExecute

Shell Execute has the following signature : HINSTANCE ShellExecute( __in_opt HWND hwnd, __in_opt LPCTSTR lpOperation, __in LPCTSTR lpFile, __in_opt LPCTSTR lpParameters, __in_opt ...
2
votes
1answer
534 views

How do I perform a shell execute in a chrome extension?

I'm not finding a way to do this in the chrome.* API or even the experimental. It doesn't run through wscript so ActiveXObject("Shell.Application") isn't allowed. I fear that my only option is to ...
2
votes
3answers
473 views

Problem executing a .bat file at a path where folder name has spaces, in VB6

I'm trying to execute a .bat file in VB6 (silent window mode) with following code. Set WshShell = CreateObject("WScript.Shell") cmds = WshShell.RUN("E:\My Folder\RunScript.bat", 0, True) Set ...
2
votes
0answers
164 views

How can I programatically force Windows XP to display thumbnails for a folder?

I have an application that calls ShellExecute with a folder path. This brings up the folder in explorer. However, I want to make sure that the folder is set to display the contents in thumbnail view. ...
2
votes
1answer
333 views

System-wide ShellExecute hooks?

is there any way I can install a system-wide ShellExecute hook using C++ without having to inject a hooking module into every active process. I am using Windows 7. My purpose for this is because, I ...
2
votes
2answers
407 views

Application Configuration File Not Being Read When Application Called via ShellExecute

I have a .NET application that is launched via a Delphi program using ShellExecute. Unfortunately when launched in this manner, the application does not seem to be reading its app.config file ...
2
votes
2answers
247 views

how to tell when an external application ends in delphi

Hi I am using ShellExecute to run external application How can i tell when the external application ends ? Here my code theProgram := 'MySql.exe'; itsParameters := ' -u user1 -ppassword ...
2
votes
4answers
764 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 ...
2
votes
2answers
659 views

When could ShellExecute fail? (Delphi)

I am planning to use ShellExecute for the updater of an application written in delphi 2007, I was wondering if ShellExecute will work on most computers with Win or if it can easly fail because of some ...
2
votes
4answers
1k 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 ...

1 2 3 4