Tagged Questions
0
votes
0answers
36 views
How to print file from web
i have a question about how to print a generated file from a web server to local printer.
The script will be based on exec(); php.
The printer is not an open_printer, and use an own soft to send the ...
0
votes
1answer
52 views
Cannot run 'cmd' command with parameters 'sc sdshow w32time'
I am trying to run an external process in Java and I have no idea why my code isn't working. It works for any other 'cmd' command (for example /c dir). If I replace cmd sc sdshow w32time with cmd /c ...
1
vote
0answers
23 views
Finding Win CMD columns (gives result+error)
I have problem with following script:
$ exec('mode con /status', $tmp); print_r($tmp);
It runs the command and gives me result, but also I get every time error message too:
The system cannot find ...
0
votes
0answers
34 views
Detecting PDF Page Info
I want to detect each pdf page's info, such as cover pages, main pages, posterior pages and introduction pages by command prompt or a php class.
For example: in some PDF files on viewers such as ...
0
votes
1answer
76 views
Openssl return status in cmd
I am using openssl command for creating certificate using PHP.I am using exec.When I give exec the command ,the return status is 1,I echoed whatever i insert in exec(OpenSSL statement) and try it ...
10
votes
3answers
224 views
using cmd with in responsive mode in c++ or java
I am using OpenSSL in my c++ app, The problem is if I use exec("Open ssl command")
Then it will execute that particular command , but actually this command is repsonsive,I mean it further asks you ...
1
vote
1answer
331 views
php exec() in unicode mode?
I need to execute command line commands and tools that accept ut8 as input or generate an ut8 output.
So i use cmd an it works, but when i try this from php with exec it doesn't work.
To make it ...
5
votes
3answers
2k views
Windows CMD.exe “The system cannot find the path specified.”
Solved by restoring Windows to previous state
The message (The system cannot find the path specified.) shows...
1) When i open new CMD (Win+R => cmd). It starts with introduction. (on line 3)
...
0
votes
1answer
70 views
forfiles with exec() and spaces in the path
I'm trying to recursively delete only sql files in a directory using forfiles in exec().
This is what I have:
$dir = date('D jS, M Y \a\t H-i a') ;
exec('forfiles /p "E:\Database Dump\\'.$dir.'\" ...
0
votes
1answer
93 views
change the path of input in exec() PHP
I want that the path from which the file is uploaded C:\\xampp\\htdocs\\cmd is coming from
dirname(__FILE__), but when i do that the script throws an error.
Working code
exec( ...
0
votes
2answers
123 views
Eclipse gives different output than cmd using runtime exec
So here is my code:
System.out.print("hellow");
try {
int x;
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec("java CPU/memory");
BufferedReader in = new ...
0
votes
1answer
64 views
Executig lots of batch files on windows using TCL
Here I wrote a script that should execute all files in current directory. They are batch fils.
set path [pwd]
append path "/"
set files [glob *]
foreach file $files {
exec cmd.exe /c ...
0
votes
1answer
702 views
`exec': string contains null byte (ArgumentError)
cmd = "snv co #{rep} --username #{svn_user} --password #{pxs}"
puts cmd # this code wotks and prints all vars values normally
exec(cmd)
xpto.rb:69:in `exec': string contains null byte ...
0
votes
1answer
154 views
Php-cgi cmd.exe NAME NOT FOUND Desired Access:
I can't seems to get php exec(), system()... Etc, running under IIS 7 and Windows 2008. The commands return a warning message like "unable to fork" and procmon from sysinternals noted the following.
...
0
votes
1answer
91 views
Running a command line not working in browser
i'm running WAMP.
When I do:
1. run cmd
2. cd c:\wamp\bin\php\php5.3.5\
3. press enter
4. php c:\wamp\www\cmdtest\index.php
5. press enter
I got the expected output.
But when I do it in the ...
1
vote
2answers
6k views
I need execute a command line in a Visual Basic Script
I need to execute the command "ver" in my vbs to see the version of my Operating System, and i don't know how make it.
I tried this, but dont work:
Function ExecuteWithTerminalOutput(cmd)
Set shell ...
1
vote
1answer
123 views
PHP exec not giving the same result as cmd
exec ("C:/Lame/sox \"C:/1/2.wav\" -t wav \"C:/1/2.rev\" reverse");
Using that code to use an audio post processing tool to reverse a sound file. There is an output but the file is about 1/5th the ...
0
votes
1answer
434 views
Execute command prompt's command from java to create jar file
I tried to create jar file using command line that I inserted into java code, but it didn't work. The java code was like this:
try {
Runtime a = Runtime.getRuntime();
a.exec("cmd cd E:/My ...
0
votes
1answer
306 views
php command line exec() multiple execution and directories?
I am trying to Execute a multiple commands in php using exec() and shell_exec but i am getting a null value back which i shouldn't and nothing is happening (if i copy and paste the strings below in ...
1
vote
3answers
233 views
Java - Exec console
I want to create a full cross-plateform console in Java.
The problem I have is when I use the cd command, the path is reset. For example, if I do cd bin, then cd ../, I will execute the first one ...
1
vote
2answers
186 views
running a console application with arguments using exec()
I am able to call the following exe using windows command line, but using the exec() function, it doesn't work.
I have to pass a directory as an argument to that exe file.
UPDATE:
$command = ...
4
votes
1answer
571 views
php exec() responding differently from windows 8 metro app
I wanted to change the tile icons for desktop applications in the new windows 8 start menu.
So they would fit in with the other metro apps.
I made a simple metro app that calls a simple localhost php ...
1
vote
1answer
505 views
In the ant task Exec why is <arg value=“/c”/> provided for executable=“cmd” ? what are the other possible executables?
In the ant task Exec why is <arg value="/c"/> provided for executable="cmd"?
What are the other possible executables?
Could anyone please explain this ?
1
vote
1answer
353 views
PHP exec to change Windows password with IIS
is there anyway to allow PHP to run "exec ("net user Jason 123") on Windows 7 with IIS? I have made the appPool that is running my site run with the Admin user, and the site is setup to use the Admin ...
-1
votes
2answers
349 views
Ant's exec returns an error on copy
I need to concatenate two files. I use Ant's exec for this purpose, but I get the following error.
production:
[exec] Current OS is Windows 7
[exec] Executing 'cmd' with arguments:
[exec] 'copy /B ...
4
votes
1answer
668 views
How to do os.execv() in Python in Windows without detaching from the console?
I'm using Python 2.6 on Windows 7. I have Windows .cmd file which invokes Python to run the CherryPy Web server (version 3.1.2). I start this .cmd file by executing it at the prompt in a Windows CMD ...
1
vote
3answers
1k views
help with exec command via PHP
I'm trying to run a PHP exec command. It runs like a charm in my CMD but it doesn't do anything when I try it via PHP. Can someone see what I'm doing wrong here.
Thanks.
<?php
//Command line ...
4
votes
4answers
1k views
Trying compile a C Code with PHP
I have a file named gcc.exe and I have a php page...
I want to use:
gcc test.c
And, if there's some compilation error, I want to show it on the php page...
But I can't.
What happens is: If the file ...
2
votes
2answers
945 views
How to log the output from cmd tree command using Apache Ant exec task?
I am trying to log the output from cmd tree command using ant with the following:
<exec dir="${basedir}" executable="cmd" output="output.txt">
<arg value="tree" />
...
0
votes
1answer
1k views
Setting permission for PHP (or I_USER [I'm not sure here…]) to connect to iisweb.vbs
I have been trying to figure out a way to manage our domains at work and easily created a SimpleDNS class, but now I'm on the IIS Server Administration side of it and I'm just lost on what is going ...
