Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Batch Programs Thread.  (Read 655503 times)

0 Members and 1 Guest are viewing this topic.

macdad-

    Topic Starter


    Expert

    Thanked: 40
    Re: Batch Programs Thread.
    « 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



      Apprentice

      Thanked: 37
      Re: Batch Programs Thread.
      « 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]
      Download: Choice.exe

      Sky Ninja



        Rookie

      • *headdesk*
        Re: Batch Programs Thread.
        « 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

        • Mastermind
        • Thanked: 169
          • Yes
          • Yes
          • Yes
        • Certifications: List
        • Experience: Guru
        • OS: Mac OS
        Re: Batch Programs Thread.
        « 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


          Expert

          Thanked: 40
          Re: Batch Programs Thread.
          « 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



            Apprentice

          • Code:Terminal
          • Thanked: 3
            Re: Batch Programs Thread.
            « 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


              Expert

              Thanked: 40
              Re: Batch Programs Thread.
              « 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



                Apprentice

              • Code:Terminal
              • Thanked: 3
                Re: Batch Programs Thread.
                « 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



                  Apprentice

                  Thanked: 37
                  Re: Batch Programs Thread.
                  « 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 ;)
                  Download: Choice.exe

                  fireballs



                    Apprentice

                  • Code:Terminal
                  • Thanked: 3
                    Re: Batch Programs Thread.
                    « 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



                      Apprentice

                      Thanked: 37
                      Re: Batch Programs Thread.
                      « 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
                      Download: Choice.exe

                      macdad-

                        Topic Starter


                        Expert

                        Thanked: 40
                        Re: Batch Programs Thread.
                        « 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



                          Apprentice

                          Thanked: 37
                          Re: Batch Programs Thread.
                          « Reply #87 on: August 30, 2008, 04:54:02 PM »
                          try without cmd command
                          Download: Choice.exe

                          macdad-

                            Topic Starter


                            Expert

                            Thanked: 40
                            Re: Batch Programs Thread.
                            « 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



                              Apprentice

                              Thanked: 37
                              Re: Batch Programs Thread.
                              « 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
                              Download: Choice.exe