Search found 22 matches

by RogerSmith
10 Dec 2012 10:29
Forum: DOS Batch Forum
Topic: IF command is true echo smoething
Replies: 2
Views: 3133

Re: IF command is true echo smoething

Hi why should the file not open? well if is realy the notepad that you want to open this code is not bullet proof ..... start notepad.exe tasklist | findstr "notepad.exe" || if not errorlevel 1 echo OK if is realy the notpad. the code can be bigger cause the user can be running other notep...
by RogerSmith
09 Dec 2012 03:56
Forum: DOS Batch Forum
Topic: [Undocumented] Expand.exe
Replies: 4
Views: 6722

Re: [Undocumented] Expand.exe

Hey hi!

Nice post!!!

Is NONE realy a compressing type? It seem to me that compressor just inject some bytes in to file... see in your example with "none compression" you get a file bigger than the original.
by RogerSmith
09 Dec 2012 03:36
Forum: DOS Batch Forum
Topic: Bat file to find a phrase on a website
Replies: 8
Views: 10203

Re: Bat file to find a phrase on a website

Any webhost that is dumb enough to have telnet open and runnin on their server won't be in business very long. What are you talking about? did you read the code? Do you know telnet? Have you used it for once in your life? It seem you dont. The telnet will connect to the website to port 80 making we...
by RogerSmith
08 Dec 2012 18:08
Forum: DOS Batch Forum
Topic: Bat file to find a phrase on a website
Replies: 8
Views: 10203

Re: Bat file to find a phrase on a website

hey what about using telnet? every one have one, or is so old that no one cares about it any more? Try this: First if using vista or 7 turn on telnet its easy... google search turn on telnet windows vista /7 then add some batch add some vbs add some magic powder and voila! @echo off :main Rem here w...
by RogerSmith
08 Dec 2012 12:52
Forum: DOS Batch Forum
Topic: Ms dos debuger in what situations...
Replies: 2
Views: 3086

Re: Ms dos debuger in what situations...

hi thanks for your reply and sorry my delay i have handle the situation giving up of my propose, but for instances it seem that debuger create a temp file in the temp folder if the the buger is fastly shutdown like taskkill and not q or close botton that temp file will remain in the temp folder and ...
by RogerSmith
06 Dec 2012 19:50
Forum: DOS Batch Forum
Topic: How to make a working exe file?
Replies: 10
Views: 8172

Re: How to make a working exe file?

Hey thanks for the replys , I can see clearly now!
by RogerSmith
06 Dec 2012 19:45
Forum: DOS Batch Forum
Topic: Ms dos debuger in what situations...
Replies: 2
Views: 3086

Ms dos debuger in what situations...

hi all , i have here a thing with the debuger... I came out with this comand echo d 0 1000 | debug c:\testefile.exe>c:\redirectedoutput.txt The thing is some times, most of the times it give me a slight diferent output to the same file... any one have a clue why it change some hex values from debug ...
by RogerSmith
26 Nov 2012 18:26
Forum: DOS Batch Forum
Topic: What code is this?
Replies: 3
Views: 3605

Re: What code is this?

Hi!

Thanks for all the replys , i can see clearly now.


regards
by RogerSmith
26 Nov 2012 04:52
Forum: DOS Batch Forum
Topic: What code is this?
Replies: 3
Views: 3605

What code is this?

hi all , sorry my ignorance

in a previous post i find this code:
This is from the sokobam game

"7D04A17CF1AB8CE4368FF54B635B7B937899E01B5D2ACA52CBB8CA00F02EED8C175C7D"
"AFE3717E67C738E2B4A30C6D38D10327F47FACE9710030"

What is this? is it hex? what is it , any one know?
by RogerSmith
21 Nov 2012 11:02
Forum: DOS Batch Forum
Topic: How to make a working exe file?
Replies: 10
Views: 8172

Re: How to make a working exe file?

oh i see, thanks for your reply, you may be right , im looking for so long and i cant find a way. i just saw somewere that was possible. Any way i will keep searching with not much hop
I can code a litle bit in c i have to finish read the book :P
And make my exe's
Regards
by RogerSmith
21 Nov 2012 10:32
Forum: DOS Batch Forum
Topic: Batch File Search
Replies: 9
Views: 7011

Re: Batch File Search

using foxi code @echo off for /f "tokens=1,2 delims=:" %%a in (file.txt) do echo %%a - %%b | findstr /l /i "DOMAIN_CHANGE_THIS_" its all one line except @echo off that is in the first line If you want something with user input @echo off :a echo Enter Domain set /p dom= for /f &qu...
by RogerSmith
21 Nov 2012 07:03
Forum: DOS Batch Forum
Topic: How to make a working exe file?
Replies: 10
Views: 8172

Re: How to make a working exe file?

hey hi thanks for the reply

yes i have done that already, i was looking to learn how to do it myself, i dont like to use other scripts, i just know that is possible to convert .bat in to .exe, i will keep searchig. Any way Thanks for the reply. Regards
by RogerSmith
21 Nov 2012 05:12
Forum: DOS Batch Forum
Topic: How to make a working exe file?
Replies: 10
Views: 8172

How to make a working exe file?

hey hi.

Im googling this for so many months, maybe here any one knows, how can i convert for example

Code: Select all

@echo off
echo hello dostips world
pause>nul


in to a working exe, is that possible?

Regards
by RogerSmith
20 Nov 2012 18:17
Forum: DOS Batch Forum
Topic: [BatchGame] SokoBox
Replies: 9
Views: 12394

Re: [BatchGame] SokoBox

wow
the game very addictive

the code:
GodLike!!