Search found 12 matches

by mm@muellermario.de
17 Feb 2016 21:22
Forum: DOS Batch Forum
Topic: Call BAT-File (which uses as properties.csv ) from JAVASCript/HTML
Replies: 9
Views: 11400

Re: Call BAT-File (which uses as properties.csv ) from JAVASCript/HTML

@julesverne:

Your link is unfortunately not working.


https://msdn.microsoft.com/en-us/librar ... 96(v=vs.85).aspx

I would appreciate if you correct ist.

Regards
Mario
by mm@muellermario.de
16 Feb 2016 23:54
Forum: DOS Batch Forum
Topic: Call BAT-File (which uses as properties.csv ) from JAVASCript/HTML
Replies: 9
Views: 11400

Re: Call BAT-File (which uses as properties.csv ) from JAVASCript/HTML

Hi all, @foxidrive: Yes, ist is possible to start. example: <head> </head> <body> <input type="button" value="Name of the batch file" onclick="window.open('file:///G:/../.../THIS_IS_A_BAT_FILE.bat')"/> </body> @kwsiebert Good answer! Can I anyhow invstigate on which wor...
by mm@muellermario.de
16 Feb 2016 07:37
Forum: DOS Batch Forum
Topic: Call BAT-File (which uses as properties.csv ) from JAVASCript/HTML
Replies: 9
Views: 11400

Call BAT-File (which uses as properties.csv ) from JAVASCript/HTML

HI all, i wrote a BAT, which reads a customizing/properties CSV-File. When I start the BAT via clicking in the windows explorer or via Windows-Button > R (un) enerything is fine. Now I want to start the BAT via HTML. The BAT echos an ERROR <Could not find "Customizing.csv"> Could anybody p...
by mm@muellermario.de
23 Feb 2015 05:00
Forum: DOS Batch Forum
Topic: Get JAVA system.out.println in bat?
Replies: 17
Views: 12851

Re: Get JAVA system.out.println in bat?

Hi ShadowThief,

Problem solved.
You are my hero!

Many, many thanks!
Regards
Mario
by mm@muellermario.de
23 Feb 2015 02:56
Forum: DOS Batch Forum
Topic: Get JAVA system.out.println in bat?
Replies: 17
Views: 12851

Re: Get JAVA system.out.println in bat?

Hi ShadowThief, I am not sure, what is missing now. Could you please see whats wrong in the script? @echo off set CLASSPATH=decoder.jar FOR /F "delims=" %%G in ('java decode.decoder "dGhpc0lzTXlQVw=="') DO { echo set myvariable=%%G pause echo %G% pause } The Console-Output is: se...
by mm@muellermario.de
22 Feb 2015 03:05
Forum: DOS Batch Forum
Topic: Get JAVA system.out.println in bat?
Replies: 17
Views: 12851

Re: Get JAVA system.out.println in bat?

This might be confusing.
Concerning the screenshot: I saw that the request its wrong:
I has to be

"Bitte das verschlüsselte Password zum Entschlüsseln eingeben"

In english: pls give the encrypted password for decryption.
by mm@muellermario.de
22 Feb 2015 02:51
Forum: DOS Batch Forum
Topic: Get JAVA system.out.println in bat?
Replies: 17
Views: 12851

Re: Get JAVA system.out.println in bat?

Hi ShadowThief,

sorry I donut understand your question.
The screenshot - as you can see- is decrypting the PW <password>
Now I need to enhance the script, that <password> is passed into a variable.

Thats the problem.


Regards
Mario
by mm@muellermario.de
21 Feb 2015 06:41
Forum: DOS Batch Forum
Topic: Get JAVA system.out.println in bat?
Replies: 17
Views: 12851

Re: Get JAVA system.out.println in bat?

hi foxidrive,

I forgot. I uploaded it on google drive. But I need your mailadress. Does dropbox net need a mailadress also?
Regards MM
by mm@muellermario.de
21 Feb 2015 06:33
Forum: DOS Batch Forum
Topic: Get JAVA system.out.println in bat?
Replies: 17
Views: 12851

Re: Get JAVA system.out.println in bat?

hi foxidrive,

not at all. I got the coding at work. at home I only got a mac :| Regards, Mario
by mm@muellermario.de
20 Feb 2015 10:51
Forum: DOS Batch Forum
Topic: Get JAVA system.out.println in bat?
Replies: 17
Views: 12851

Re: Get JAVA system.out.println in bat?

HI Squashman, thx for the reply. If you want I can send you all -> The jar-files. It took me a lot of work. I got one batch to decode passwords. The decoded pw is the output in the cmd window and also set to the clipboard. The user should than copy the decoded PW in an another bat; called decode.bat...
by mm@muellermario.de
20 Feb 2015 08:36
Forum: DOS Batch Forum
Topic: Get JAVA system.out.println in bat?
Replies: 17
Views: 12851

Get JAVA system.out.println in bat?

Hi everybody, I wrote a JAVA wich I am calling from a bat. java myPackage.MyLitteJAVAPRogramm The JAVA writes system.out.println(myVariable). How can I access the value of myVariable in my bat? I can the the value of myVariable in the cmd-Window!!! But how can I write into a batch-variable? I am goo...