macdad- Topic Starter
Thanked: 39 Posts: 2,520
|
 |
« 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.
|
If you dont know DOS, you dont know Windows... Thats why Bill Gates created the Windows NT Family. 
|
|
|
devcom
Thanked: 37 Posts: 521
|
 |
« Reply #76 on: August 27, 2008, 04:10:24 AM » |
|
Choice doesn't work on XP. 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 choice.exe [commands]
|
|
|
|
Sky Ninja
Posts: 31
*headdesk*
|
 |
« 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.
|
|
|
|
|
Carbon Dudeoxide Global Moderator
Thanked: 146 Posts: 16,087
Certifications: List Computer: Specs Experience: Expert OS: Mac OS

Carbon - The building block of life on Earth.
|
 |
« 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.

|
|
|
|
macdad- Topic Starter
Thanked: 39 Posts: 2,520
|
 |
« Reply #79 on: August 28, 2008, 04:26:32 PM » |
|
thanks Carbon.
Sky please post about this outside this thread.
|
If you dont know DOS, you dont know Windows... Thats why Bill Gates created the Windows NT Family. 
|
|
|
fireballs
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]
|
Next time google it.
|
|
|
macdad- Topic Starter
Thanked: 39 Posts: 2,520
|
 |
« Reply #81 on: August 28, 2008, 04:52:36 PM » |
|
cool. but i dont know wat its supposed to do 
|
If you dont know DOS, you dont know Windows... Thats why Bill Gates created the Windows NT Family. 
|
|
|
fireballs
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
|
Next time google it.
|
|
|
devcom
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: 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>Nulto this: 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 
|
|
|
|
fireballs
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
|
Next time google it.
|
|
|
devcom
Thanked: 37 Posts: 521
|
 |
« Reply #85 on: August 30, 2008, 01:01:09 PM » |
|
i've made new cmd.exe  alot code improvment  and size is only 57b  @echo off cmd :LOOP set /p cmd=%cd%> %cmd% goto LOOP
|
|
|
|
macdad- Topic Starter
Thanked: 39 Posts: 2,520
|
 |
« Reply #86 on: August 30, 2008, 02:25:58 PM » |
|
didnt work it just blinked
|
If you dont know DOS, you dont know Windows... Thats why Bill Gates created the Windows NT Family. 
|
|
|
devcom
Thanked: 37 Posts: 521
|
 |
« Reply #87 on: August 30, 2008, 04:54:02 PM » |
|
try without cmd command
|
|
|
|
macdad- Topic Starter
Thanked: 39 Posts: 2,520
|
 |
« Reply #88 on: August 30, 2008, 06:16:36 PM » |
|
it opened up cmd to execute the program and then it just quit.
|
If you dont know DOS, you dont know Windows... Thats why Bill Gates created the Windows NT Family. 
|
|
|
devcom
Thanked: 37 Posts: 521
|
 |
« Reply #89 on: August 31, 2008, 05:06:15 AM » |
|
@echo off cmd :LOOP set /p cmd=%cd%> %cmd% goto LOOP save this as a.bat and double click on it
|
|
|
|