0
votes
1answer
57 views

Setup environment using batch file for DotNet Framwork 4.0 Command line for easy way around

I have .net framework 4.0 (and older versions)installed, want to use the command line compiler for C# csc.exe Now I found across few forums using the direct path I can use the compiler, also ...
0
votes
0answers
77 views

About AttachConsole/Freeconsole API function

When I attach the parent CMD to my app, after releasing the attached CMD using Freeconsole, there is an empty line in CMD where I can write... is like an "@Echo OFF", when I press "ENTER" returns the ...
3
votes
2answers
59 views

How can I read a C# Console app's entire command line, as it was typed?

I am writing a little REPL console app, and I read a command, split it, and use a piss-poor switch statement to decide which method to call (instead of using the Strategy Pattern). I then place each ...
0
votes
2answers
256 views

Run a command in a windows remote server and get back the console output in C# .NET

I have a remote server name (windows), username and password. Using C# .Net, I want to run a command on the remote server and get back the console output Is there a way to do it in C#? I was able ...
0
votes
5answers
109 views

command line output validation in c#

My output in the actual command prompt looks like this: Name: My Software Version: 1.0.1 Installed location: c:\my folder I am trying to get this output via c# code ...
3
votes
2answers
386 views

Launch process and hide command line parameters from Task Manager

I'm not sure if this question is more appropriate for Stackoverflow or SuperUser or what StackExchange site... Basically I'm launching a third-party app from C# with Process.Start with several ...
0
votes
1answer
67 views

Run devenv from commandline

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim lRet& lRet = Shell("cmd /k devenv m:\myproject.sln /build Release", 1) End ...
0
votes
1answer
168 views

Console.WriteLine sends output to debug in vs.net, but when run from console, I see nothing

I have a C# windows service. In that service code, I define Main() and capture various arguments. If the arg is "install" I call code to install the service. Note that when the arg is install, I am ...
1
vote
1answer
178 views

Adding a Schedule Task Module for WPF Window Application

I have a small program which converts doc file from specified folder to pdf and xps format using the printer driver available in the local PC. Now i need to add a scheduler to this program which runs ...
0
votes
0answers
90 views

Reading UTF8-encoded command-line in .NET (C#)

I want to be able to handle UTF8-encoded command-line parameters in a .NET console program I'm writing. Unfortunately, both the "args" array passed to the Main() function, and the Environment class ...
0
votes
1answer
59 views

Utiltizing SVN commands from a custom interface

I'm looking to automate the GUI available for TortoiseSVN. Rather than using the one provided and manually inputting the urls, I would like to save off various urls that I switch to on a daily basis ...
0
votes
1answer
120 views

WPF Command Line and MvvmLight with designdata

I want to override the OnStartup like it is explained in this thread WPF Command Line Now is the problem that I'm using the MVVM Light Toolkit which throws a XamlParseException ,which says that the ...
1
vote
0answers
180 views

How to alter the “returnValue” property of ManagementBaseObject after running a batch file?

The situation is: I must use ManagementBaseObject to run a batch file and get its return value (like, 0 if the commands were properly executed, 1 if something went wrong). I've tried to use "EXIT" ...
1
vote
1answer
198 views

How to give ctrl + c to a process in c#?

I am trying to create a backgroundworker which create a process, that makes some ovf commands. In between I try to abort the operation by sending ctrl+c. There are similar questions on this site, but ...
2
votes
1answer
78 views

in a console app what's the best way to prevent special sequences in command line arguments from being escaped?

I wrote this console app that reads a sequence of command line arguments and does something with them. The problem is that if the user enters something like: --folder "C:\my folder\" --username ...
0
votes
0answers
111 views

Need to build an interactive command prompt in C# [closed]

I need to build a console based interactive command prompt in C# (not to be confused with a C# interactive command prompt). There are quite a few nuances to this, such as handling arrow keys, echoing ...
2
votes
1answer
174 views

Getting a deployed MVC page in IIS 7.5. to run a batch file from the command line

For one of my projects I needed to integrate a .NET page with an outside call to a MATLAB process. In order to do this (and not spend any money in doing so), I created a batch file to be called by the ...
2
votes
4answers
933 views

Why does Process.Start(“cmd.exe”, process); not work?

This works: Process.Start("control", "/name Microsoft.DevicesAndPrinters"); But this doesn't: (It just opens a command prompt.) ProcessStartInfo info = new ProcessStartInfo("cmd.exe"); ...
0
votes
1answer
90 views

Process to call CLI exe not returning output

I have a app that is doing some video processing. I need to analyze the media before processing it. The ffmpeg utility ffprobe.exe provides all the information I need. However the code I am using ...
2
votes
2answers
265 views

Regex for parsing command line arguments fails

I am trying to use a regex to parse out the key-value pairs of command-line switches. Here's what I've got so far: (?<=(^-{1,2}| -{1,2}|^/| /))(?<name>[\w]+)[ :"]*(?<value>[\w.?=&+ ...
0
votes
0answers
56 views

AttachConsole(-1) only works from .bat file

I have a .net forms appplication which I have added some command line options for, the problem is that when I run thoes commandlines from a .bat file I get the feedback outputted to the same window ...
3
votes
1answer
505 views

connect to a bluetooth headset on a pc

I have a vibrating headset, that vibrates on incoming calls from a mobile-device. I would like to connect to this headset with my PC, and send it the "incoming call signal" as if it received a call. ...
1
vote
2answers
60 views

How can I quickly identify the path and the search pattern in C:\Users\Admin\Samples\*.pdf?

I would like to create a simple copy console application (I know copy already exists in DOS). Exactly like the DOS copy command I would like to be able to execute my copy application with two simple ...
-1
votes
2answers
65 views

Why would a program not like being ran from Cygwin?

I like using Cygwin/rxvt as my terminal of choice as cmd.exe really sucks. I have a problem with a program though in that it won't run from rxvt for most things. Basically, I can get the help text to ...
2
votes
1answer
66 views

Run an application located in a directory from the PATH environment variable

I have an application located in a directory that is included in the PATH environment variable. So, if called from any directory with the DOS command line, the launch will succeed. What is the ...
1
vote
1answer
671 views

Unable to find a suitable output format for '&&' in FFMPEG for C#.net

I am trying to convert and delete the source file using FFMPEG, what i want is to convert video file from one format to other, and delete the first one which is uploaded means source file, the command ...
0
votes
1answer
371 views

How to compile a code-behind file with XAML from the command line?

I have this XAML file (MainWindow.xaml): <Window xmlns ="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> <Button> Click! </Button> </Window> I have this ...
-2
votes
2answers
259 views

Is there any way to run windows form function from command line (cmd file)?

I need to be able to run a Windows Forms function or event (for example a button click) from a command line. How could I do this? I can't use a console or windows service due to certain constraints. ...
1
vote
1answer
234 views

Expand list of files in argument for pre-build event

I'm trying to run a pre-build event which passes all the JavaScript files in a directory to MS's Ajax Minifier. Unfortunately, this tool excepts file names as individual arguments (it cannot parse ...
2
votes
1answer
180 views

Dual purposing an application to run as winform or command line utillity

Sorry my title is rather vague but I don't know how to concisely label what I want to do. I have a winform application which were trying to dual-purpose so it can also be run as a command line ...
0
votes
0answers
52 views

File Locking When Using Command Line App

I have a problem with moving a directory after I have used a command line app on it, this is in a MVC application hosted on IIS 7.5 When using this command... Directory.Move(TEMPDir, PERMDir); I ...
0
votes
0answers
168 views

List IPs on lease by LAN DHCP server on Windows

Is there any standard protocol that allows me to ask my router or server DHCP to provide me with a list of IP addresses it has given out? On a Windows PC, which has a lease from that DHCP itself. ...
0
votes
1answer
72 views

How do I package and publish a Foundation command line tool in Xcode?

I'm trying to learn Mac dev so decided to start with a Foundation command line app. I'm using Xcode 4.3.2. In .NET you just grab the .exe from the bin folder and either run from it's location, or ...
2
votes
1answer
1k views

How to use references when compiling c# code via command line

Could anyone help me compile via command line some c# files? I have 4 files to compile, Main, Form1 (which uses 2.cs file) and another class used in the project. I would like to compile this project ...
1
vote
0answers
203 views

How do i check if an archive is passwordprotected?

My app is written in C# running on windows. I don't care if i am parsing a command line std out/err or using a .net lib. Lets say i have a .7z file. Its file contents are not password protected. I ...
0
votes
2answers
159 views

How to test a VS C# program on another computer

I would like either a command prompt solution or a Visual Studio 2008 solution for the following: I am building a solution in Visual Studio 2008 C# and I need to test it. In order to test the ...
0
votes
1answer
297 views

Calling Mp4Box.exe from .NET C#

Hello i am making a code for doing some editing on mp4 video using mp4box.exe i want to execute this command line: "D:\Work\Me\CloudContentUpload\trunk\ContentUploading ...
1
vote
0answers
211 views

User Input command line options for service installer

Background This is my first time using a setup project, let alone doing one to install a service. Things have been progressing fairly well until I reached the point that I wanted to get user input. ...
0
votes
1answer
92 views

Invalid option file options: pad=oper

Getting this error: Invalid option file options on trying to invoke Astyle via C# System.Diagnostics.Process pProcess = new System.Diagnostics.Process(); pProcess.StartInfo.FileName = ...
2
votes
3answers
339 views

Starting Weka from command line through C#

I am trying to open Weka from cmd line, using C#. This is the code that I'm using. It's giving me an error for Weka.Start() line, and the error is : Win32 exception was unhandled. System cannot find ...
0
votes
1answer
78 views

How does Microsoft DOS SET command translate into C#?

I am invoking an exe file (which is essentially a cgi script) with using the .net Process and ProcessInfo classes. I need to be able to set some environment variables before I call Process.Start. If ...
0
votes
1answer
910 views

How to use Powershell to customize “Region and Language” settings in win7 or win2008

I am new to Powershell and I have searched the internet for whole day but still cannot find out how to customize "Region and Language" settings using Powershell in win7 or win2008. I want to change ...
0
votes
1answer
756 views

How to provide user name and password when Delete connection to a network share (in C#)

I use the following command for connect to network share: NET USE \Machine1 /user:MyDomain\MyUser MyPassword I use C# code programatically (using Process.Start) ProcessStartInfo psi = new ...
0
votes
1answer
270 views

Convert DICOM to PNG using dicom2.exe

I am currently trying to convert DICOM files to PNG files using a command line program named dicom2. Below is the code from a .NET toy application that I wrote to test its conversion functionality. ...
14
votes
1answer
828 views

What happens when I interrupt a C# console application with Control-C?

What happens when I interrupt my C# console application with Control-C? Is the process killed? Is memory freed? Are finally blocks executed? What happens to database connections? Does any of this ...
1
vote
3answers
135 views

Command line(csc-like compiler) parsing

I'm looking for an algorithm/library to parse this command line: var cmd = "foo /option:value /option2:valueof /etc:.. baa /t:4 etc xd"; to: foo => { "option", "value" }, { "option2", ...
0
votes
1answer
157 views

Blowfish or AES (.Net) and compatible unix command line tools

I've been asked to do a little research on implementing symmetric encryption in C# using either Blowfish or AES. Our customer wants to be able to use a unix command line tool such as BCrypt (for ...
1
vote
1answer
509 views

Process with ProcessWindowStyle.Hidden still shows Press any key to exit?

I have this: var startInfo = new ProcessStartInfo { FileName = _pathToExe, RedirectStandardOutput = ...
2
votes
2answers
285 views

JScript.NET vs ECMA

I am programming a small console app that is an intelligent front-end to a set of batch files with ungodly parameters. I have decided to use JScript.Net for this though it may be ill advised compared ...
3
votes
1answer
513 views

Application.Restart not passing arguments back

This is a ClickOnce application. According to the documentation, "If your application was originally supplied command-line options when it first executed, Restart will launch the application again ...

1 2 3