Using Psexec.exe From PsTools To Send A Command To A Remote System To Fire A Command

Mar 17, 2010

I am currently using psexec.exe from PsTools to send a command to a remote system to fire a command through a command prompt however I am finding that the shell I am doing does not seem to like the spaces in the path.

[Code]...

View 3 Replies


ADVERTISEMENT

Send A Command To A Command Line And Then Submit The Command?

Apr 30, 2010

First let me say that I am not sure whether or not this should go in this section or the API section, and if it needs to be moved I apologize. My issue is fairly straight forward, but for some reason I cannot get it to work.

I am trying to send a command to a command line and then submit the command. I have been trying without success to get this to work in v2008 Express and v2010 Express, Here is the code I am trying to us:

Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" ( _
ByVal lpClassName As String, _
ByVal lpWindowName As String _

[Code].....

View 6 Replies

Executing Psexec Command From VB [VS 2010]

Jul 11, 2010

I am using VS 2010 (.NET 4.0). I am trying to use the psexec command in VB to get a response back from the server. I am able to do this with other commands, however, psexec doesn't seem to send the output back, the program just hangs.

Code:
Dim Proc As New System.Diagnostics.Process
Proc.StartInfo = New ProcessStartInfo("cmd")
Proc.StartInfo.Arguments = "/k psexec \SERVER cmd /k iisapp"

[Code].....

View 6 Replies

Connect Linux Remote System And Run A Command Using .net?

Jun 13, 2011

I want connect my linux remote system using ip address and port through .net. and want run a command to run a file inside the remote system

View 5 Replies

Send Command To Command Line From Windows Form Application?

Mar 11, 2010

I am trying to send a command to the external command line (cmd.exe) from the Windows form application that I'm writing in VB.NET (using VS2008).

I can only access the external program thru the command line (its not my program) and I must do so from a form app.

I am trying to use the following code. I am able to call a cmd.exe window, but I can't pass the command line my command.

Using mp As New Process
With mp.StartInfo
.FileName = "cmd.exe"

[Code].....

View 8 Replies

C# - Send Command To A Application In The System Tray To Launch A Form For Input

Apr 26, 2010

This is what I'm trying to accomplish: I have a Point of Sale application that integrates with a credit card processesor. I wan't to remove any user interfacing logic in regards to the credit card processor in the point of sale and add it to a application that sits in the background or system tray. I want to be able to send a command to the background app to popup a form for user input.

For example: User in the Point of Sale clicks a button "Credit Card" at this point it will send a command to the background app say "ProcessCC" which will pass a transactionid and an amount , this will open a form for the user to enter in the credit card information and submit the payment to the credit card proccessor.

Reason: I need to get a padss certification and don't want to submit the point of sale to do it. Rather send the simple background app that will control any credit card processing functionality such as encryption , storing etc. I know it can be done using sockets but was hopping for an alternative solution.

View 1 Replies

DOS Net Send Command Use In VB?

Oct 18, 2011

I use below code to run DOS command Net send through VB code but not work I need help to solve this problem Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

[Code]...

View 1 Replies

Send The Command In Hex?

May 24, 2010

I am new to programming and VB.. so go easy my buffer is about full :) I am trying to talk to a box with serial port and only need to send the command in hex. here is the protocol for the device and my code below it to turn on the box. I am not calculating/sending the correct checksum because if I sniff the string being sent to the box from another piece of software that comes with it I get 04 1C 01 DF (spaces put in for clarity) and it works. my code produces 04 1C 01 21..

View 17 Replies

Execute A Program On A Remote Machine - Psexec Doesn't Work

Jan 29, 2009

I'm trying to execute a program on a remote machine using this code

Dim objProcess As New System.Diagnostics.Process
objProcess.StartInfo.FileName = "cmd.exe"
objProcess.StartInfo.Arguments = " /c PSExec /accepteula \NTAPPMTMIGL01 -u $AdminUsrLocal -p tjdsi44 c:winntMicrosoft.NETFrameworkv2.0.50727gacutil.exe"

[code]....

If I use it, it works since I'm an admin but if someone else use it, I got "The system cannot find the file specified."Is there any other program I can use that can impersonate, I've already tried xcmd.exe but it doesm't work either.

View 2 Replies

File I/O And Registry :: FTP - Remote Server Returned Error (Command Unrecognized)

Sep 25, 2008

Does My.Computer.Network.DownloadFile work with FTP? When I attempt to use it, I get the exception: "The remote server returned an error: (500) Syntax error, command unrecognized."

Here's the code I'm using:
Dim UpdateAddress As String = "ftp://xxx.xxx.xxx.xxx" & lbDownload.Items(X).ToString
My.Computer.Network.DownloadFile(UpdateAddress, BasicPath & lbDownload.Items(X).ToString, "", "", True, 10000, False, FileIO.UICancelOption.ThrowException)
The FTP server is IIS6.

View 1 Replies

VS 2008 BindingSource.Position - Event To Fire Only Once After The Position Command

Dec 5, 2010

I am using the following code to populate data in Textbox1:

[Code]...

I have few functions assigned in TextBox1_TextChanged event. The problem i am facing is this event is fired twice, once after the Fill command and another after the Position command whereas i want the event to fire only once after the Position command. What should i do?

View 6 Replies

ExecuteReader Requires Command To Have Transaction When Connection Assigned To Command Is In Pending Local Trans?

Nov 8, 2007

Any ideas on how I handle the following error thrown in the SqlDataAdapter.Fill as a result of the BeginTrans in the callee?

System.InvalidOperationException = {"ExecuteReader requires the command to have a transaction when the connection assigned to the command is in a pending local transaction.The Transaction property of the command has not been initialized."}

[code].....

View 7 Replies

IDE :: ExecuteReader Requires Command To Have Transaction When Connection Assigned To Command Is In Pending Local Trans?

Jun 30, 2010

Public Sub ExecuteTransaction(ByVal connectionString As String) Using connection As New OleDbConnection(connectionString)

Dim command
As New OleDbCommand()
Dim transaction
As OleDbTransaction

[Code]...

View 1 Replies

AT Command To Send Scheduled SMS?

May 25, 2012

Is there any AT Command to send Scheduled SMS from PC via GSM Modem?

View 1 Replies

Can't Send Command Using Pop3?

Jun 3, 2012

my problem is i can't send command using pop3 in vb.net every time i try to send its nothing happen but i can connect in tcp client server and server reply +ok when i connect

View 10 Replies

Send A Command To A Server?

Jul 28, 2009

how to creat a client and a server and pass text between them (like a messenger), and it works just fine

so my question is : how do I send a command to the server, for example, open a program (like notpad) or do tasks or search the remote pc or even shutt it down??

note that am not trying to make a trojan or anything like that, I have two pcs and I was just wondering how to do it ?

View 3 Replies

VS 2008 Send Key's Command?

Mar 17, 2009

i have a textbox that my mouse double click's on so it highlight's the text and i need it to copy that text

sendkeys.send({^+C})

i know it's something like that but it's not working for me i just need to send ctrl+c to copy it and i dont know the code's

EDIT> k someone gave me the code it's
System.Windows.Forms.SendKeys.Send("^c")

now i need the space key what is the code for it i tried this and it dident work

SendKeys.Send("{SPACE}")

View 7 Replies

Command Line Switches - Keeping Command Window Open?

Feb 24, 2010

I am using the following code to run defrag and to analyze if the C: drive requires defragmentation:

Dim analyze As Process = System.Diagnostics.Process.Start("C:WindowsSystem32defrag.exe", "C: /a /h /u /v")

This process runs through analyzing, runs it in normal mode & prints the progress to the command window.

My problem is that as soon as the process is complete the command window closes. I need it to stay open so that I can read the results.

View 3 Replies

Delay The Execution Of The Send Key Command?

Apr 16, 2012

I am trying to delay the execution of the send key command. In VB script, it was relatively easy:

obj.sendkeys "{enter}"
wscript.sleep 1000
obj.sendkeys "{tab} {tab}"

When I do it via VB express, it is clumping the code together. For example

Threading.Thread.Sleep(5000)
SendKeys.Send("enter was entered ")
Threading.Thread.Sleep(5000)
SendKeys.Send("double tab was input ")

Instead of pausing for 5 seconds, typing the keys then pausing for another 5 seconds, it pauses for 10 seconds and then immediately types the input. I tested this on notepad.

How do I replicate the sleep feature in VB script into VB? There appears not to be a sleep feature in VB Express 2010

View 5 Replies

Send A Command To Another Instance Of My Program In Net?

Jan 12, 2010

I have a program that needs to see if it is already running and if so bring the other instance to the front and then close itself. Now I figured out how to see if another instance of the program is already running using GetCurrentProcess, but how do I tell the first instance to "BringToFront" from the second instance?[code]...

View 3 Replies

Send Commands To CMD ( Command Prompt )?

Jun 24, 2011

In my application I have only one button . That button will open CMD then it will send a command into cmd , now after that command it requires an "enter key" to continue the process .I tried the shell command in order to access the command but then I couldn't press enter in cmd using my application

View 4 Replies

Send Commands To Command Prompt

Dec 13, 2011

I am trying to send commands to Command prompt.The following code should open the text file I specified.However it opens several instances of the cmd window and also several copies of the text file. Sometimes the text file is not opened and if the file path is long, part of the file path gets inserted into my text file.[code]

View 1 Replies

Send Keys To Command Prompt?

May 25, 2009

I have an application that will open a command prompt (cmd.exe), and then types "ipconfig/renew". How do I send the enter key, to execute the command?

View 3 Replies

Add New Sql Command To DataSet's Command Collection And Fill DataTable?

Jan 16, 2010

I want to add a new select command to my dataset. To do that, I have added a new partial class to my project. Because we have to use partial class if we want to extend generated dataset codes. [code]...

View 3 Replies

Command Line Program To End Before Moving Onto The Next Command In Loop?

Feb 4, 2011

I am using a CheckedListBox that is populated with Filenames (full path, i.e. C:TestTest.jpg)When I have the files that I want in the CheckedListBox I wish to click a Start Button which will process the list one at a time using an exe program that runs on the Command Line. There are arguments that need to pass to the command line as well as the file location in order for the program to process.I currently have it working but the issue is the loop finishes quickly and it is left up to the CMD.exe to finish the process. What I would like is for the LOOP to wait until each file completes processing before passing the command for the next file in the CheckedListBox.There some reasons I wish for it to work this way.

1) I would like to have a button that can Pause/Restart the Loop.

2) I would like to have a button that can Stop the Loop so the whole process can end.

3) I would like to have the Loop remove each file one by one from the CheckedListBox after it has been processed.

4) I would like to display a Message once all the files have been processed.

5) And if it were possible I would like to report the status either by text or a progress bar showing where it is at in the process.

6) And the ability to add some error handling if possible.

Since the Loop finishes so quickly as it just passes the command to the command line using the & as a seperator it is the command line that is handling the rest of the process. Because of this there is not control over it in the GUI.The code I am using allows the Command Line text to display in the Form so it won't open up a seperate window to run CMD.exe. This is the desired affect as I would like everything to appear to run from within the Form itself.

[Code]...

View 6 Replies

Insert Command Not Functional After Clear Command In Vb Report

Aug 21, 2011

User need to select their prefferable data to show in report. What i did is i have a clear command first to delete the temporary table. The temporary table is basically a table to stored user selection parameter data. After the clear command, i have
a insert command to insert user selection data into the temporary table. What happened now is when i run the program exe, first run of the report is work fined, but not the second and the following times of execution. It will return null or blank report. The weird thing is when i execute it from development environment, it seem like the report is able to pick up user selection parameter and run the report for the first times and the subsequent execution.

View 3 Replies

Preset A Command And Have The Command Called On Different Option Clicks?

May 18, 2009

i have seen this in many codes, just not sure where to start and how to call the command. what i'm talking about is having code as such (this is for save file dialog):

[Code]...

View 3 Replies

How To Send A Command To A Running Application Via Commandline

Nov 10, 2011

I want to exit my GUI application (vb.net 4) using a commandline parameter.I should send thive! from the commandline:

myapplication.exe quit and an already running instance of the application should exit.

Now, I have a mutex detection in place so that I can only have one instance of the application running at a time. It seems that if I send a commandline, it won't work on an already running application; it will only work on one that is launching.

View 3 Replies

Send Command To Device Connected To COM1?

Feb 3, 2012

I want to send a simple command, such as "v20" followed by a carriage control character, to a heating/cooling block connected to a desktop computer running Windows XP. I am able to get the commands to work within a terminal emulator. I want to compile a simple program that will be executed by software used to control a liquid handling robot.I've looked at the how to send strings to serial ports in visual basic page and modified that code ever so slightly to send the data that I want. However, it does not work and my heating/cooling block is not changing temperatures.

Here's what I have written:

Sub SendSerialData(ByVal data As String)
data = "n65"
' Send strings to a serial port.

[code]....

View 3 Replies

Command Prompt 'Copy' Command Equivalent

Apr 24, 2011

In the Windows Shell, there is a command that looks like this: copy /b fileA.zip + fileB.jpg fileC.jpg..Is there any equivalent function in VB.NET? I already know this works: [code] But I would much rather have a built-in function to work with. Here is what I am trying to do: url...Also, this doesn't just work for pictures. It works for any binary file. Is there any way in VB.NET to tell if a file is binary or text?

View 3 Replies







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