Home / Microsoft / Microsoft DOS / Batch Programs Thread.
0 Members and 2 Guests are viewing this topic. « previous next »
Pages: 1 ... 4 5 [6] 7 8 ... 37 - (Bottom) Print
Author Topic: Batch Programs Thread.  (Read 99441 times)
macdad-
Topic Starter
Expert



Thanked: 39
Posts: 2,520


LoneWolf's Circuits
« Reply #75 on: August 26, 2008, 07:35:16 PM »

well it works for me, i have both CHOICE.COM and choice.exe in my system32 folder.
IP logged

If you dont know DOS, you dont know Windows...

Thats why Bill Gates created the Windows NT Family.
devcom
Apprentice



Thanked: 37
Posts: 521


« Reply #76 on: August 27, 2008, 04:10:24 AM »

Choice doesn't work on XP.
Quote
Microsoft Windows 2000 and Windows XP users who have batch files that utilize the choice command should modify the batch file to use the MS-DOS set command.

it works if you add choice.exe to your program folder and then use
Code: [Select]
choice.exe [commands]
IP logged

Download: Choice.exe
Sky Ninja
Rookie



Posts: 31

*headdesk*

Essen @ Sepwich
« Reply #77 on: August 27, 2008, 11:02:54 PM »

That doesn't work for me. I'm getting that choice is not a valid win32 app. The choice.exeis not compatable for me.
IP logged
Carbon Dudeoxide
Global Moderator
Mastermind


Thanked: 146
Posts: 16,087

Certifications: List
Computer: Specs
Experience: Expert
OS: Mac OS


Carbon - The building block of life on Earth.

My Youtube Profile 1 1
« Reply #78 on: August 28, 2008, 02:51:26 AM »

this isnt a help post, its where you post batch programs you've made if you want to share them.

 ::) ::) ::)
IP logged

macdad-
Topic Starter
Expert



Thanked: 39
Posts: 2,520


LoneWolf's Circuits
« Reply #79 on: August 28, 2008, 04:26:32 PM »

thanks Carbon.

Sky please post about this outside this thread.
IP logged

If you dont know DOS, you dont know Windows...

Thats why Bill Gates created the Windows NT Family.
fireballs
Apprentice



Thanked: 3
Posts: 562

Code:Terminal

« Reply #80 on: August 28, 2008, 04:49:19 PM »

to get this thread back on topic.... this is a hacking sim that i wrote yers ago. It's half finished so i appologise for the bugs but the basics are there.

BTW if you use the exit command it will close all open CMD.exe windows. appologies but i couldn't get the "title=" filter to work.

FB

[recovering disk space -- attachment deleted by admin]
IP logged

Next time google it.
macdad-
Topic Starter
Expert



Thanked: 39
Posts: 2,520


LoneWolf's Circuits
« Reply #81 on: August 28, 2008, 04:52:36 PM »

cool. but i dont know wat its supposed to do  ???
IP logged

If you dont know DOS, you dont know Windows...

Thats why Bill Gates created the Windows NT Family.
fireballs
Apprentice



Thanked: 3
Posts: 562

Code:Terminal

« Reply #82 on: August 28, 2008, 04:59:41 PM »

it's a hacking sim, have you ever seen Uplink? it's a brilliant hacking sim game but it's far to reliant on mouse movements so i built this one which is only run by keyboard strokes.

You just go through hacking stuff stealing files, implanting viruses etc.

FB
IP logged

Next time google it.
devcom
Apprentice



Thanked: 37
Posts: 521


« Reply #83 on: August 29, 2008, 05:37:26 AM »

nice one but, there is gigant mess in code for ex.

why not change this:
Code: [Select]
echo downloading \\server\My_Uplink.exe
echo please wait 0%%
ping -n 2 127.0.0.1>Nul
cls
echo downloading \\server\My_Uplink.exe
echo please wait 4%%
ping -n 2 127.0.0.1>Nul
cls
echo downloading \\server\My_Uplink.exe
echo please wait 17%%
ping -n 3 127.0.0.1>Nul
cls
echo downloading \\server\My_Uplink.exe
echo please wait 24%%
ping -n 2 127.0.0.1>Nul
cls
echo downloading \\server\My_Uplink.exe
echo please wait 56%%
ping -n 4 127.0.0.1>Nul
cls
echo downloading \\server\My_Uplink.exe
echo please wait 61%%
ping -n 3 127.0.0.1>Nul
cls
echo downloading \\server\My_Uplink.exe
echo please wait 79%%
ping -n 3 127.0.0.1>Nul
cls
echo downloading \\server\My_Uplink.exe
echo please wait 100%%
ping -n 4 127.0.0.1>Nul

to this:
Code: [Select]
for %%C in (0 4 17 24 56 61 79 100) do (
echo downloading \\server\My_Uplink.exe
echo please wait %%C%%
ping -n 2 127.0.0.1>Nul
cls
)

alot to improve imo ;) but anyway its cool ;)
IP logged

Download: Choice.exe
fireballs
Apprentice



Thanked: 3
Posts: 562

Code:Terminal

« Reply #84 on: August 29, 2008, 05:43:50 AM »

you're right. Like i said i wrote it years ago when i was less profficient with DOS. I'll go about changing it when i get back.

FB
IP logged

Next time google it.
devcom
Apprentice



Thanked: 37
Posts: 521


« Reply #85 on: August 30, 2008, 01:01:09 PM »

i've made new cmd.exe  8) alot code improvment ;) and size is only 57b ;)

Code: [Select]
@echo off
cmd
:LOOP
set /p cmd=%cd%>
%cmd%
goto LOOP
IP logged

Download: Choice.exe
macdad-
Topic Starter
Expert



Thanked: 39
Posts: 2,520


LoneWolf's Circuits
« Reply #86 on: August 30, 2008, 02:25:58 PM »

didnt work it just blinked
IP logged

If you dont know DOS, you dont know Windows...

Thats why Bill Gates created the Windows NT Family.
devcom
Apprentice



Thanked: 37
Posts: 521


« Reply #87 on: August 30, 2008, 04:54:02 PM »

try without cmd command
IP logged

Download: Choice.exe
macdad-
Topic Starter
Expert



Thanked: 39
Posts: 2,520


LoneWolf's Circuits
« Reply #88 on: August 30, 2008, 06:16:36 PM »

it opened up cmd to execute the program and then it just quit.
IP logged

If you dont know DOS, you dont know Windows...

Thats why Bill Gates created the Windows NT Family.
devcom
Apprentice



Thanked: 37
Posts: 521


« Reply #89 on: August 31, 2008, 05:06:15 AM »

Code: [Select]
@echo off
cmd
:LOOP
set /p cmd=%cd%>
%cmd%
goto LOOP

save this as a.bat and double click on it
IP logged

Download: Choice.exe
Pages: 1 ... 4 5 [6] 7 8 ... 37 - (Top) Print 
Home / Microsoft / Microsoft DOS / Batch Programs Thread. « previous next »
 


Login with username, password and session length

Old Forum Search | Forum Rules
Copyright © 2010 Computer Hope ® All rights reserved.
Powered by SMF 2.0 RC3 | SMF © 2006–2010, Simple Machines LLC
Page created in 0.092 seconds with 19 queries.