Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
3answers
2k views

Replacing Process.Start with AppDomains

Background I have a Windows service that uses various third-party DLLs to perform work on PDF files. These operations can use quite a bit of system resources, and occasionally seem to suffer from ...
5
votes
4answers
2k views

How can I run an EXE program from a Windows Service using C#?

How can I run an EXE program from a Windows Service using C#? This is my code: System.Diagnostics.Process.Start(@"E:\PROJECT XL\INI ...
4
votes
3answers
119 views

Process.Start(“echo”, “%cd%”) throws W32Exception File Not Found

When I try to do Process.Start("echo", "%cd%") it raises a System.ComponentModel.Win32Exception: The system cannot find the file specified. When I do this manually in cmd it just works like it should. ...
4
votes
4answers
693 views

.NET 4: Process.Start using credentials returns empty output

I run an external program from ASP.NET: var process = new Process(); var startInfo = process.StartInfo; startInfo.FileName = filePath; startInfo.Arguments = arguments; startInfo.UseShellExecute = ...
4
votes
2answers
3k views

No application is associated with the specified file exception

UnhandledException: System.ComponentModel.Win32Exception: No application is associated with the specified file for this operation at ...
3
votes
2answers
151 views

How to start an XNA game with another C# program

So, I recently started trying to use an XNA program to start another XNA program. I've been using the normal method of "Process.Start", which works fine when opening Firefox or Media Player. However, ...
3
votes
2answers
40 views

Handling Closing of Multiple Processes

Here's what I'm doing. I have a loop that fires 20 processes using Process.Start(). I want them all to fire at once, however I want to catch them as they close. Is there anyway to do this in C#? I ...
3
votes
1answer
411 views

Can't start powerpoint from start menu shortcut in c#

I'm attempting to start a program based on a start menu shortcut. In particular, I'm trying to launch powerpoint based on its start menu shortcut. To accomplish this, I am using the ...
3
votes
2answers
842 views

How do I ensure c# Process.Start will expand environment variables?

So I'm attempting to create a process like so: ProcessStartInfo psi = new ProcessStartInfo(); psi.FileName = "%red_root%\\bin\\texturepreviewer.exe"; ...
3
votes
3answers
934 views

Process.start: how to get the output?

I would like to run an external command line program from my Mono/.NET app. For example, I would like to run mencoder. It is possible: To get the command line shell output, and write it on my text ...
3
votes
2answers
1k views

Accessing network share via Process.Start(path) using network credential

I am using this Impersonator class to impersonate a domain account to access a network share like so: using(new Impersonartor(username, domain, password)) { //Code Here } Copying the file from the ...
3
votes
3answers
274 views

running a process in c#

i want to run a process programaticaly in c#. with process.start i can do it. but how can i prommt user when the process asks for some user input in between and continue again after providing the ...
3
votes
1answer
1k views

Starting Firefox using Process.Start: Firefox not starting when you set Usename and Password

When I try to start Firefox using Process.Start and ProcessStartInfo (.NET) everything seems to work fine. But when I specify a username and password of another account (a member of Users), nothing ...
2
votes
3answers
91 views

Process.Start opens too many browsers in XNA game

I'm creating a game in XNA that runs on a PC. On the splash screen, the user has three options. If they press "Enter" the game will begin, if they press "M" they'll go to the Help menu and if they ...
2
votes
3answers
453 views

Open a file in C# using Process.Start

I am writing a program that monitors a folder and lets you know when a file is created. I'm struggling to open the file when the user clicks ok. Please could I have advice on how to get the ...
2
votes
1answer
369 views

Hide controlbox on Process.Start() cmd window

I am using process.Start(); to start a batch file. The CMD windows appears fine and works perfectly. How can I disable the controlbox (minimize, maximize, close) on the upper right of the cmd ...
2
votes
2answers
1k views

How can a Windows Service start a process when a Timer event is raised?

I have created a Windows Service with Timer and in firing event of timer.Elapsed I am creating a process (System.Diagnostics.Process.Start(exe path)) at interval of 5 seconds. But this process does ...
2
votes
2answers
413 views

Adobe Reader process fails when starting second instance

In our C# WinForms application, we generate PDF files and launch Adobe Reader (or whatever the default system .pdf handler is) via the Process class. Since our PDF files can be large (approx 200K), we ...
2
votes
1answer
534 views

Starting explorer.exe isn't working properly in C#

Hello I'm trying to make a simple application in C# that allows me to kill and enable explorer.exe. I need such program so that I can play Age of Empires 2 properly, because it does not like ...
2
votes
4answers
2k views

Start Process with administrator right in C#

I have to start a command line program with System.Diagnostics.Process.Start() and run it as Administrator. This action will also be run by a Scheduled Task every day.
2
votes
3answers
2k views

How to shut down from c#, Process.Start(“shutdown”) not working in windows XP

After some poking around on how to reset my computer and or shut it down from c# I found this explanation on how to do that: ManagementBaseObject outParameters = null; ManagementClass ...
2
votes
1answer
242 views

Process.Start Problem

It's gonna be hard to try to explain this, but please bare with me... I'm using process.Start to run Convert.exe. This program's purpose is to convert all files which are in the exe's folder. So when ...
2
votes
2answers
548 views

Running a program with System.Diagnostics.Process.Start causes a MissingMethodException

I'm working on a Compact Framework 2.0 project, and I'm trying to launch a program "B" from within another program "A" using Process.Start. I've done this several times before, but I'm running into ...
2
votes
2answers
585 views

How to Schedule a Process.Start in WPF

I am trying to restart an application in WPF. I tried the following: Process.Start(Application.ExecutablePath); Process.GetCurrentProcess().Kill(); And it doesn't work because the application is ...
2
votes
2answers
517 views

How to bring up the “Windows cannot open this file” dialog?

My users can attach documents to various entities in the application. Of course, if user A attaches a .TIFF file, user B may not have a viewer for that type of file. So I'd like to be able to ...
1
vote
4answers
51 views

C# equivalent of cd C:\appFolder c:\app.exe? [closed]

Possible Duplicate: .Net Process.Start default directory? I have a C# application, mono to be specific. This application needs to launch another application on the users system. I know of ...
1
vote
0answers
145 views

Application launched from ASP.NET using Process.Start fails if user credentials are specified

I'm unable to use Process.Start to start a simple console application when I specify user credentials. It appears that the call to Process.Start tries to start the application, but the application ...
1
vote
0answers
114 views

Start Process With Logged On User Credentials Windows 7

I have a deployment package that opens an application when the instalation has finished. On opening, this application validates a connection to a database using Integrated windows security. The ...
1
vote
4answers
113 views

Cygwin Commands from Web Service ASP.NET C#

I want to execute a cygwin command from within a webservice. Basically I want to use the "tail" command to strip off the first line of a file in C#. Can anyone help. Its urgent
1
vote
2answers
403 views

Execute multiple Process.Start() sequentially in C#

I'm executing 3 exes using Process.Start() in my C# application. I want to run all these exes sequentially. Right now, each Process.Start() executes on its own in a parallel manner. eg: ...
1
vote
2answers
242 views

Tracking multiple processes at same time

I have an application (winforms) that downloads a file to user's temporary folder, then it opens the file for user to see contents, and when the file is closed, the file gets deleted from temp ...
1
vote
1answer
307 views

Process.Start is blocking/hanging randomly on some clients

(There is a very similar topic that never got solved: here) We have a big app running on several clients, but recently some of my code stopped working. Adding some debug code I found out the code ...
1
vote
1answer
357 views

System.Diagnostics.Process.Start() opens/runs wrong directory?

I think I found a bug. In my opinion Process.Start runs wrong directory. To test, create default console application template and paste following: using System; using System.Diagnostics; using ...
1
vote
2answers
346 views

Unable to Rename Window Title Text Via SetWindowText Function

I am using SetWindowText Function to rename Window Title it seems to work with Windows program like "notepad" but when trying with other 3rd party program its not working.I am grabbing window handle ...
1
vote
2answers
507 views

mono Process.Start how to find bash?

In my webapp i do the below. I know its correct because i tried 1) dumping start_sz to a text file 2) su www-data 3) copy/paste the extract string and it worked. var start_sz = string.Format(@"bash ...
1
vote
4answers
716 views

C# cannot find file specified

Hi I am trying to create a app that uses the msg.exe to send messages over a network. When i execute msg from cmd everything works fine, but when i open cmd with the form i am unable to, went to the ...
1
vote
2answers
398 views

Process.Start() not spawning new process under the same user

Alright folks, I was always under the impression that when you're running a process as (domain\user) mydomain\myuser, when using Process.Start() it would start this new process using the same ...
1
vote
1answer
198 views

Windows installer security/credential question

Folks, I've got a strange issue at the moment with a visual studio 2010 built MSI... When I run the msi, it performs a few tasks, then executes a tool we built - this tool then carries out some more ...
1
vote
0answers
167 views

Process.Start Performance

I've scoured the internet and this site in search of an answer to my problem to no avail. I'm completely out of ideas and desperate for answers! The issue: When I run a specific processor intensive ...
1
vote
2answers
123 views

Mimic Windows' 'Run' window in .NET

I would like to mimic the Run command in Windows in my program. In other words, I would like to give the user the ability to "run" an arbitrary piece of text exactly as would happen if they typed it ...
1
vote
1answer
245 views

StartProcess using value from Properties.Settings causes Unusual Results

I am seeing odd behavior when trying to launch an application using an application name stored in Properties.Settings. If I don't re-set the value (to the same value) before using it, the launched ...
1
vote
4answers
748 views

Launching Web Browser from Windows Service

Is it possible to launch a web browser from a windows service? I have created a basic service in C# and installed it under the "LocalSystem" security profile. The code for the service looks as ...
1
vote
3answers
671 views

Specify DLLs for an exe launched with Process.Start?

I'm trying to launch an executable with Process.Start(). When the exe has no DLL dependencies, it works fine. However, when I need to include 2 DLLs, it doesn't work. I've tried setting the ...
1
vote
1answer
2k views

C# Process.Start() Dialog Box for BAT file

I have a C# program that needs to spawn a .BAT command file during its execution. No problem. I can just use (for example)... System.Diagnostics.Process.Start("PublishFeed.bat", "file.xml"); ...in ...
1
vote
2answers
244 views

How to detect an unmanaged app has aborted

I have a C# app which invokes an unmanaged C++ application via Process.Start() On some machines, if this C++ app aborts, I'm left with the Just-In-Time error dialog showing Is there a way from C# to ...
0
votes
3answers
58 views

Opening active item in a listview with notepad.exe

I was wondering if anybody knew how to open the active (highlighted) item in notepad using a button I've got this right now (laugh at me.) Process.Start("notepad.exe", listView1.ItemActivate); ...
0
votes
0answers
14 views

ASP.NET Way to open windowed application

I have an asp (c#) webservice that needs to open a windowed app on the server to do a presentation conversion. The exe needs to open a window to do frame capture. However, using any combination of ...
0
votes
1answer
24 views

run vb script using script.exe

I want to run vbscript file using cscript.exe. i searched a lot but did'nt found any way while i can run my script using cmd with cscript.exe this is my code Process p = new Process(); ...
0
votes
3answers
96 views

Why thread is stopped when start new process, while application (c#) is still running?

Is there any problem which i have to do carefully when starting new process in multiple thread application? I tried this in a simple project: static void Main(string[] args) { ...
0
votes
0answers
18 views

Weird Process.Start behavior under NUnit

I'm using Process.Start on plink.exe to run a remote call on a Linux machine. This works well, unless run in the context of NUnit (I've tried both TestDriven.NET and ReSharper's unit test runner). ...

1 2