I have a properties file (my.File.properties) that contains the lines … my.webSphere.directory= my.webSphere.profile= … The user will fill those parameter say … my.webSphere.directory=D:\IBM\WebSphere\AppServer\profiles\AppSrv01\bin my.webSphere.profile=AppSrv01 … Now, I want to create a batch file that gets the parameter my.webSphere.directory and my.webSphere.profile from my.File.properties Thanks!!!
Computing.net: Question & Answers Forum Latest Questions
Hi, Ok i have two .BAT files. The first one i set up so it ask for a password, if that password is wrong it loops round asking for it again. Once the correct password is entered it triggers the second ...
I am looking to write a batch file that I can execute on all files within a folder, which will create subfolders from the “date taken” property of each file (some of these files are photos) in the format “yyyy-mm-dd”. ...
Please help me with the source code for adding and that for subtraction hexadecimal values. The source codes should be for C
var a,b,d,c,r,n : integer; BEGIN writeln(‘vuvedi 4islo’); readln(a); writeln(‘vuvedi 4islo’); readln(b); writeln(‘vuvedi 4islo’); readln(c); n:=(a*a)-(4*b*c); r:=(-b+sqrt(n))/(2*a); d:=(-b-sqrt(n))/(2*a); writeln(‘rezultata e ‘, r , d); readln; END. that is on pascal and here are the errors: 9 / 19 untitl~1.pas Error: Incompatible types: got “S80REAL” ...
Batch Spaces in Input?? Help! does anyone know how to make it possible to add spaces in input? for example echo oh no a troll appeared! set /p input= if /i %input%==hit troll with axe goto GAMEOVER if i type “hit troll ...
I have spent several Days writing my new Batch cleaning script with the aim to help some friends of mine who run Windows Vista who are always getting bogged down with clutter and virus’s, times are getting tough for people ...
Hi. I created c:\x.bat for testing purposes with following lines: echo start c:\monday.html >> c:\test.bat echo del 0% >> c:\test.bat but when opening test.bat second line is del “C:\x.bat” not del 0% what’s wrong with the syntax? thanks
Hello all, I have scoured the internet and haven’t found a code I understand for this. What I want is real simple.. a VB code to open outlook (no address or subject necessary), attach a file and that’s it. This code ...
Here is some code I made 🙂 @echo off set source=”R:\Contracts\” set destination=”R:\Contracts\Sites\” ROBOCOPY %source% %destination% *.srt *.pdf *.mp4 *.jpg /COPYALL /R:0 /S for /r %source in (*) do @copy “%destination” . R:\Contracts\ is full of folders which have files in them. I ...