0
votes
2answers
21 views

Batch start command not opening program

When I enter the following from a command prompt: start myprog.exe It opens the program in a command window, but it doesn't start the actual program itself. Does anyone know what I'm doing wrong ...
-3
votes
2answers
72 views

Using C# to execute CMD commands

Here's the thing , i have a python interpreter and i want to run sqlmap using cmd with C# . Now the thing is i know how to run a normal cmd command from c# , if i run the following command on cmd ...
0
votes
1answer
41 views

Basic on using artisan command line in Laravel

So I have been seeing a lot of this command line stuff to install/update frameworks/modules over the internet but never actually tried to use it. I would just manually copy files. I am starting to ...
2
votes
1answer
98 views

How can I get hardware ids/serial numbers through command prompt?

Eventually I'm going to be using this in Java Applet for extra security to the user. I know it's possible because I remember doing it before, I just can't remember the line that gets the correct ...
0
votes
0answers
29 views

Unexpected behavior from an exe while running from command line

I have a setup.exe that actually installs one .msi file (present in the same directory as setup.exe). However, if i try to run this setup.exe from command prompt, it gives me an error saying .msi ...
0
votes
1answer
56 views

Getting error in the windows 2008 r2 server while calling exe file with an argument in the command prompt

I am calling .exe file with giving a directory. This directory includes three files and my .exe is executing these three files. Everything works perfect in my computer in the command prompt. The ...
0
votes
1answer
62 views

How to get the memory used of a .exe using command prompt

Using the command prompt, how can i get the memory used when executing a .exe. For example, to find the time taken i can use a .bat file as follows: @echo off time < nul Function.exe time < nul ...
4
votes
2answers
161 views

Python: Respond to Command Line Prompts

I am trying to use Python to interact with another program via the command line. The main problem I am having is a specific call that has multiple follow-up prompts. Initially the command line call ...
1
vote
1answer
26 views

Rhyme or reason to history buffer in Windows command interpreter?

When I am in a shell like bash, if I use the up arrow to go through the command-line-history buffer, it behaves in a predictable way: hitting up goes to the command I executed most recently. In the ...
0
votes
1answer
113 views

How to use Windows Command Line Regular Expressions

I am having trouble finding how to execute regular expressions in Windows Command Line. I would want to use regular expressions for a number of situations, but basically now all I want to do is open a ...
1
vote
2answers
70 views

Linux - Calculate session duration and add it to your prompt

Is there a way to calculate what is the session duration or the length of the session for the current user? I know using last command we can get the login and idle times of the user but is there a ...
0
votes
3answers
180 views

How to delete first 7 characters of folder name by using batch script?

I did do research but I could not figure out, sorry! Google can only help me to add characters but not delete characters... say under the dir E:\Movies\2011\ there are several folders e.g. [0603] ...
-2
votes
1answer
61 views

Renaming a recently created file using command prompt

i want to rename a recently created file using command prompt.Is it possible??
0
votes
2answers
301 views

Command Prompt making a Username and Password

i have tried this, but it keeps returning an error saying the syntax of the command is incorrect. Here is the code i tried: @echo off echo Enter Username and Password to view files set /p user=Enter ...
1
vote
1answer
88 views

How to start jenkins on different port rather than 8080 using command prompt in Windows?

I have jenkins.war and I started it from command prompt in Windows as: java -jar jenkins.war It was started well and easily browsed as http://localhost:8080 I want to start on 9090 port. How can I ...
0
votes
0answers
22 views

How to prevent a stored procedure from going too long on command promt?

I have this code DROP PROCEDURE IF EXISTS search; DELIMITER ;; create procedure search ( IN startTime datetime, IN endTime datetime, IN searchString varchar(255) ) BEGIN ...
0
votes
1answer
179 views

How to stop a windows service, check if its been stopped, and start it up again using Cmd Line?

I have a rather simple task to achieve but am a total noob at command line scripts. I have googled around and found some of the basic commands to interact with the services on a windows machine but ...
0
votes
0answers
56 views

How to create low integrity process from a cmd.exe (running with administrator privileges)?

I am runnnig a win 7 machine . I opened command prompt (as administrator). Now I want to launch any application (say notepad.exe) with low integrity using this command prompt. I've tried method ...
1
vote
1answer
786 views

Start/Stop and Restart Jenkins service on Windows

I have downloaded "jenkins-1.501.zip" from http://jenkins-ci.org/content/thank-you-downloading-windows-installer . I have extracted zip file and installed Jenkins on Windows 7 successfully. Jenkins ...
0
votes
1answer
355 views

How can i maximize a specific window through cmd?(windows)

I just wanna make a simple notepad .bat file that would maximize a specific process window. Is that possible?
0
votes
1answer
77 views

How to write an msdeploy runcommand command that contains strings

Hi I'm trying to write an msdeploy command that contains two strings within the runcommand part of the command. msdeploy.exe -verb:sync -source:runCommand="^"c:\opensesame\opensesame.cmd^" ...
2
votes
1answer
30 views

Windows command “where arg” in xp? [closed]

The command "where" works for windows 2003 server and later version. How can I do the same functionality it provides in windows XP. Is there a similar command ?
0
votes
2answers
601 views

Run command prompt as Administrator

I am developing a small shutdown scheduler project in which i have to put the computer in "Stand By" mode. The command that i am using is Runtime.getRuntime().exec("cmd /c ...
0
votes
1answer
323 views

Open Com port and send Hexadecimal Bytes from windows Command Prompt

I need to write a batch file to open a com port and send decimal or hexadecimal commands to a com port. I can write this file if I know the commands and formats for windows command prompt to open the ...
1
vote
2answers
185 views

Window's CMD simple program to rename files doesn't work with spaces

Hello everyone and thanks for your help! I currently have this program that renames a single file to lowercase: This file is Lowercase.bat set LC1=%~nx1 set LC1=%LC1:"=% set LC1=%LC1:A=a% set ...
0
votes
1answer
68 views

Not getting output from For /F - command promt

I need to extract the service name only(basically display name) . I tried to use the following command but the command prompt is not showing any thing. Am i missing something? FOR /F "delims= " %A ...
-1
votes
1answer
33 views

How to Request the User's Personal Internet IP Address Through the Command Line Tool? [closed]

The Question: Is there a command to request the User's Personal internet IP address through the command line tool? More specifically, the IP address which gets assigned by the ISP when dialing in ...
0
votes
2answers
556 views

How to get all windows service name starting with a common word?

There are some windows servies hosted whose Display Name starts with a common name(here NATION) Eg: NATION-CITY NATION-STATE NATION-Village . please suggest me some command to get all the ...
2
votes
1answer
313 views

How to run java code from command line that has source code in 2 different packages?

So I want to run a class called WordFrequencyCounter which is nested in the folder: C:\Users\Mike\Documents\Computer Science\AI\Machine Learning\175\Assignment 2\src\ir\assignments\two\b but when I ...
2
votes
2answers
104 views

Windows command prompt start from certain directory

I have a .bat file and in the file something like this d: cd Doc cd bestFolder The problem is when I start the bat file with double click the console is prompted but in just few moments it is gone ...
0
votes
0answers
22 views

using a Data in a excel to define a variable used in a iteration in a bat file

I am trying to use data in a Excel for looping in bat file. For ex - excel has APC JkL Aro Now i want this above values to be taken individually & perform some work in Winscp(FTP) & then ...
1
vote
3answers
316 views

Command prompt does not show wide MySQL tables

I have came across strange issue with Windows Command Prompt and MySQL. Somehow command prompt does not show wide table correctly. I have simple table: ...
0
votes
3answers
91 views

return to command line when program output is done

Wrote a multi-thread program to print out odd and even numbers in sequence untill the sequence reached 30. import java.util.concurrent.Executor; import java.util.concurrent.Executors; import ...
0
votes
2answers
291 views

How can We find no of fixed hard disk in system excluding removable disk if any

How can We find no of fixed hard disk in system excluding removable disk if any. I used Msinfo32 and diskpart and found problem with both. Diskpart detects removable disk as a fixed disk while ...
0
votes
0answers
62 views

Client asks for command-line utility written in php [closed]

For an exercise I need to write a command line utility. But I never ever used something like this other than writing php files, uploading them and testing them online. Can I write something like ...
2
votes
2answers
4k views

Messages Using Command prompt in window 7

How to send message over network using command prompt in windows 7 ?
1
vote
2answers
1k views

how to generate apk file using a command line?

please tell me how to build apk files of a project without the use of ECLIPSE ide. i found some infos about using a batch file but i don't know how to remake it. echo on SET PREV_PATH=%CD% cd /d ...
0
votes
1answer
95 views

vb script to check file owner by comparing list with possible owners

I am bad/new in scripting and I did not find any script that does the following: I have an "allowed.txt" file with names of people who are allowed to change/modify files. i.e. administrator ...
2
votes
1answer
72 views

Ruby libraries for command-prompt-based applications

I'm looking to create a Ruby application with a command-prompt-based interface. By "command-prompt-interface," I mean something similar to irb, but note that I do not mean actually executing Ruby ...
0
votes
1answer
2k views

Remote access to windows 7 command prompt

I would like to gain access to a remote windows machine's command prompt from my mac, and in specific from the mac's terminal, the windows machine does not have remote desktop connection at as it is a ...
0
votes
4answers
236 views

Echo literal string?

I have an SQL procedure that calls the command shell to write an SQL dump to a file. Take this redacted file for example: VALUES( @SomeVar ,1 ) The procedure calls: echo VALUES(>> ...
1
vote
2answers
96 views

if you have a perl script ready (in windows), what's the best way to run it from command line 100 times say and collect the data it produces?

I have written a perl script in Windows, which produces a line or two of output. I'd like to be able to run the script n=100 times over, say, from the command line without doing more coding in the ...
2
votes
1answer
2k views

How to run TestNG from DOS Prompt

How exactly do I run a .java TestNG project from a DOS command line? I have read through the TestNG documentation, and tried the following to no avail: C:\projectfred> java org.testng.TestNG ...
0
votes
1answer
572 views

How to print current directory name via MS-DOS commands

I need to print current directory name after CD command. Is it possible to do? Thanks! echo off echo. echo This batch program deletes some files echo. pause cd "D:\Folder1\" pause
0
votes
2answers
603 views

using @FILE in forfiles not working

I am trying to build a batch file that deletes all excel files older than 30 days. So far I have the command: forfiles -p"N:\QC\ATR's" -s -m*.xls* -d-30 -c"CMD /C del /f /q @FILE" The only problem ...
-6
votes
1answer
199 views

Linux equivalent of windows pipeline [closed]

First question is, what would pipeline (|) mean in windows cmd? Second question is, what would be the linux equivalent of windows pipeline?
2
votes
1answer
3k views

How to get the most recent file using a batch script in windows

I have a list of zip files with date and time appended like yyyymmdd_hhmmss_Demos.zip. Now how to get the most recently added zip file in the source dir. I need to copy this file in the target using ...
1
vote
2answers
123 views

How to run python programs from command promt on windows?

Ok so I got python to run in command prompt I just can't figure out the syntax to call scripts from it. So my file is in c:\python\script so I've been calling like this; "C:\Python\Script" but it ...
-2
votes
4answers
537 views

can not run java program from command line which resides in package

See following code with resides in fillowing directory mypack.pack1 package mypack.pack1; public class myclass { public static void main(String args[]) { ...
0
votes
1answer
212 views

What is wrong with this .command file?

This is my script to automate the git push of my static blog. When I run each command one by one in the Terminal, it works. Do I need to add delays, maybe it's going too fast. The pelican command ...

1 2 3