Architecture :: Accessing The Command Prompt Of The Server Computer In C#?

Sep 8, 2010

I'm developing a web application in asp.net using C# and need to access the command prompt of the server computer.

After accessing it I need to run a "ABC.bat" file in the server computer which is in folder "E:Test".

The absolute path of the server is "\MyServer"

PS: I need to run the ABC.bat file on the server machine as the bat file runs couple of more applications which are licensed to that server machine.

View 7 Replies


Similar Messages:

Architecture :: Open A Command Prompt Of Remote Computer?

Sep 3, 2010

I need to open a Command prompt (cmd.exe) of a Remote server computer and Run a Command from my asp.net web application (C# laungauge). I have progressed till opening a command prompt of the webserver where the website is hosted. My code is:

[Code]....

I have achived this using the VB script. The code is:

[Code]....

In the above code psexec.exe is software used to access remote computers.nawinapp627 = Remote serverPlease help me to achieve above using C#.

View 13 Replies

Forms Data Controls :: Downloading Pdf Without Prompt Window To Local Computer Then Printing Automatically

Mar 30, 2011

i have two tasks to accomplish. There are several pdf files (invoices) sitting in web server. My tasks are 1) enabling Olga to download multiple invoices into her local computer WITHOUT prompting any dialog box. 2) printing these files then automatically by default local printer from her desktop computer. How is possible this? She has birthday soon. No gift could be better than this solution as she has to open each pdf separately and hit print button about 40 times a day.

View 1 Replies

Databases :: How To Restore On Sql Command Prompt

Apr 21, 2010

how to restore My sql databse on my sql command prompt

View 2 Replies

Security :: WindowsIdentity - Command Prompt?

Mar 14, 2011

In order to find out what identity is running an app, this line is used:

System.Security.Principal.WindowsIdentity.GetCurrent().Name;

But is there another way to find out this name such as through the command prompt?

View 2 Replies

Write File From Command Prompt Output?

Mar 9, 2011

i got directory information from console application now i want write that file from the command prompt output how can i do that

View 3 Replies

Catch Command Prompt Errors In Code?

Sep 6, 2010

I am running ffmpeg.exe from command prompt through asp.net code. Is there any method to know success and errors of the ffmpeg.exe execution in asp.net code ?

My code is as follows:

string OutputFile, FilArgs;
//output file format in swf
//outputfile = SavePath + "SWF\" + withoutext + ".swf";
OutputFile = SavePath + "SWF\" + WithOutExt + ".flv";
//file orguments for FFMEPG
//filargs = "-i "" + inputfile + "" -ar 22050 "" + outputfile;
FilArgs = "-i "" + InputFile + "" -ar 22050 "" + OutputFile;
//string spath;
//spath = Server.MapPath(".");
Process proc;
proc = new Process();
proc.StartInfo.FileName = spath + "\ffmpeg\ffmpeg.exe";
proc.StartInfo.Arguments = FilArgs;
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.CreateNoWindow = false;
proc.StartInfo.RedirectStandardOutput = false;
try
{
proc.Start();
}
catch (Exception ex)
{
Response.Write(ex.Message);
}
proc.WaitForExit();
proc.Close();

View 2 Replies

Web Forms :: How To Compile Application Using Command Line Prompt

Nov 12, 2013

how can i compile command line through web application? my application is built on asp.net(C#)....

View 1 Replies

Web Forms ::specific Directory By Command Prompt By C# , Run A Java Application From There?

Mar 5, 2010

I'm new in working with Shell commands by C#.I want to go to specific directory(c:Program Files) by command prompt by c# and run a java application from there.I have a code but its only can open a application from C: directory,I appreciate if anyone can help me regarding it

[code]...

View 3 Replies

Web Forms :: How To Install Websetup In Visual Studio 2010 Using Command Prompt

Apr 22, 2012

I have created webset using the below link,   now i need to install using command prompt so that the virtual directory gets stored in c:/inet pub/ wwwroot/ finish where finish is the name of virtual directory. how can i do it. need command line. 

View 1 Replies

Cache Sharing - Between Different Users Accessing The Site On Different Computer At The Same Time

Jul 21, 2010

I have an ASP.Net 4.0 web application which very frequently loads data from the database and does heavy calculations on it. I want to cache this loaded and prepared data in a central cache that can be accessed by every user and computer who uses the application.

Simple use-case:

User 1 accesses webpage, cache is empty, data is loaded/calculated, data is cached
User 2 accesses webpage, cache contains data, data loaded from cache
User 3 accesses webpage, cache contains data, data loaded from cache
User 1 reloads webpage, cache contains data, data loaded from cache
Cache expires
User 3 refreshes webpage, cache is empty, data is loaded/calculated, data is cached

I know that ASP.Net has a built-in cache mechanism. What I don't know is whether it can be shared between different users accessing the site on different computer at the same time. I would also like to know how the system behaves in a web farm environment.

View 3 Replies

Architecture :: Execute The Unix Command Through C#?

Jul 18, 2010

how to make a remote shell connection to execute the unix commands from asp.net

View 3 Replies

Architecture :: Accessing EXE On The Web Client?

Jun 14, 2010

I am looking for a way to integrate a web application with a client application that will sit on the users desktop. Our scenario looks like this user will click a link in the client server application that will launch an .ASPX and pass various parameters via a querystring. User will make form inputs on ASPX page and on that input, I need to be able to execute a .EXE on the client machine that will refresh the window in the client server application.

I have looked at some tutorials for using ActiveX for this, but they all seem out of date and the ones that I have been able run prompt the user with the Activex warning dialog, which I would like to avoid.

View 4 Replies

Architecture :: Clicking A Button On A Webform Invokes A Command Line Program

Oct 17, 2010

I'm trying to create a webpage, that on clicking a button on a webform invokes a command line program like

ProcessStartInfo startInfo = new ProcessStartInfo(@"program.exe");
startInfo.Arguments = @"parameters";
Process.Start(startInfo);
morestuff();

The program takes about 3 secs or more to complete it's process running via command prompt. This creates a file that is then read by the next method morestuff(); My problem is that after Process.Start() it moves over to the method morestuff and the file is still not created and throws an error - file does not exist. How do I make sure that the process.start is complete before executing the method morestuff()?

View 2 Replies

Architecture :: Accessing Different Database Based On The Username

Dec 1, 2010

I am working on a website where when the user logs in, I select their database based on their username. Currently I have a list of all databases in the web.config and I select the Database ID from the username and then read the database string from web.config. What is the most optimal way to implement this scenario?

currently I:

- store the Database ID in the session object

- the Session object expires after like 5 minutes so i have to read the Database ID from the online database based on the username and regenerate the Session["DatabaseID"] again.

- there are some security issues with the Session ID, so I started clearing the Session in !(Page.IsPostBack) and I generate the Database string again.

Where shall I store the DatabaseID and the database connection string so I can easily reuse it once the user has logged in?

View 8 Replies

Architecture :: Invalid_Viewstate - While Accessing The Web Site On Load Balancer

Dec 3, 2010

we have an web site access on PRODTEST Environment . We are facing an issue site works fine when we try to access the site using the Individual Server names (with Ip address).

View 2 Replies

Architecture :: Creating, Populating And Accessing Multidimensional Arrays?

Nov 14, 2010

I've created 2 multi dimensional arrays (2 dimensions each), I want to feed them both into a function, and I would like the function to spit out an array or list containing both of them as arrays, so I can use them as they were before they went into the function.

The way I've done it at the moment is probably very inifficient and I'm having trouble accessing it properly.

What follows is my attempt to put the 2 arrays (attackerarmy and defenderarmy) into a new array called armyresults and adding an additional dimension to tell me if the record belongs to the attacker or defender:

[Code]....

Since I've already got the 2 arrays I want in the function, I've rather not inefficiently force them into a new array, only to try to re build them again when they come out of the function.

how to out 2 arrays of unknown size into an array of arrays for the return statement of my function, and then how I can access those individual arrays so I can easily copy them back out into their original form?

View 1 Replies

Architecture :: Accessing A Different Class Depending On The Database Type?

Mar 25, 2010

I need to make a webservice in .net (I know how this works) but then I need to get data out of a database. But my company wants to make it in a way that you can use the system with multiple databases.

So my option was make multiple abstract classes which contains the folowing code (depending on the database type, this would be a SQL database)

public abstract class AbstractDAO<T, Tid>

View 5 Replies

SQL Server :: Create & Manage A Database Which Is In Computer With Sql Server Management Studio

Jul 28, 2010

I have a mdf database in my computer. And I have sql management studio 2005 installed. I would like to mange the mdf database with this program and I do not know how.

View 3 Replies

How To View A Web Page Served From One Computer From Another Computer

Jan 31, 2011

I am running a website from IIS on one computer and I want to view the web page on another computer. the only way I can do this is by using the ipaddress of the computer with IIS on it but would rather have a url. How can I generate a url or use a domain name from [URL]. I signed up for an account on that website but dont know how to use it. I dont know how to configure it.

View 2 Replies

Web Forms :: Upload A File From Local Computer Through A Web Server To A Different Server?

Nov 16, 2010

what is wrong with this line of code?

uploadFile.PostedFile.SaveAs("\ddg3584GraphicsWater lilies.jpg")

View 2 Replies

Configuration :: How To Deploy Website Having SQL Server On IIS Server On Different Computer.

Sep 1, 2010

how to deploy ASP.net Website having SQL Server on IIS server on Different Computer..

View 2 Replies

C# - Write The Client Ip And Computer Name On Server?

Jan 15, 2011

Is there any way to write the client IP and computer name on my server running ASP.NET?

View 4 Replies

SQL Server :: Copy Database From Computer To Another?

Dec 10, 2010

I have a SQLServer database, Can I take a copy of this database with all tables and stored procedures and all data in tables ?

and if I can create this copy, how to add it to SQL Server in the new PC ?

View 6 Replies

Web Forms :: Prompt User To Save An Image File On Web Server?

Jan 19, 2011

I'm trying to write code that will allow a user to click a button and be prompted to save an image file that resides on the web server. I'm using the following code, but I get an error that says "Error: Could not complete the operation due to error c00ce514.".

[Code]....

I have verified that the file exists. Is there another method for prompting users to save a file to their local machine?

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved