Jump to content
Sign In to follow this  
greener07

Other Websites to Download .Bat's

15 posts in this topic Last Reply

Highlighted Posts

Posted:
Last Online:  
 

As you mention that specific website, look here for their list of download sites.

Share this post


Link to post
Share on other sites
Posted:
Last Online:  
 

And don't miss Simpeg.

  • Yes 1

Beware: Emancipated user.  No Windoze for me.
The teacher opens the door but the student must enter himself. - Ancient Chinese Saying

Every minute of hate in which one indulges oneself is sixty seconds of happiness lost.
Music expresses that which cannot be put into words and that which cannot remain silent. -- Victor Hugo
If you always do what you've always done, you'll mostly get what you've always got.
JohnNewSig.gif
"We have met the enemy, and he is us" - Walt Kelly

Come join us at the Moose Factory

Share this post


Link to post
Share on other sites
Posted:
Last Online:  
 

Haha don't download any .bat you see, they are CMD files :)


The city lay red...
Flaming and broken...

Then he exited to region, reloaded, and it was fine.
"Don't be responsible, someone else will clean it up." Republican Proverb

Share this post


Link to post
Share on other sites
  • Original Poster
  • Posted:
    Last Online:  
     

    Haha don't download any .bat you see, they are CMD files :)

     

    Sorry, I didn't got you...

    What are CMD files?

    Share this post


    Link to post
    Share on other sites
    Posted:
    Last Online:  
     

     

    Haha don't download any .bat you see, they are CMD files :)

     

    Sorry, I didn't got you...

    What are CMD files?

     

    That was a joke, probably only understood by the older people here. He was referring to old DOS command files, which had the ending .bat. Don't think too hard about it. He probably made it because you put a dot in front of "BAT" in the thread title.

    • Like 1

    Share this post


    Link to post
    Share on other sites
    Posted:
    Last Online:  
     

    Actually .bat files haven't been called CMD files all that long.  The .bat extension is derived from the word batch which is the same as an unattended script designed to run several commands without intervention usually in an alternate copy of the console.  Here is an example:

     

    #!/bin/bash
    if test $1;
    then lsb_release -rd;apt-cache policy $1;
    else echo "You forgot the package parameter";
    fi
     

    FYI, I use this one when reporting bugs to the distributor of my version of Linux.


    Beware: Emancipated user.  No Windoze for me.
    The teacher opens the door but the student must enter himself. - Ancient Chinese Saying

    Every minute of hate in which one indulges oneself is sixty seconds of happiness lost.
    Music expresses that which cannot be put into words and that which cannot remain silent. -- Victor Hugo
    If you always do what you've always done, you'll mostly get what you've always got.
    JohnNewSig.gif
    "We have met the enemy, and he is us" - Walt Kelly

    Come join us at the Moose Factory

    Share this post


    Link to post
    Share on other sites
    Posted:
    Last Online:  
     

    Actually .bat files haven't been called CMD files all that long. 

     

    It's a bit of a shortcut. I still remember when one of our Mac guys was forced to use Windows the first time, with a fresh install. His final step was "to clean up all this mess the installation left in the root directory". And gone were command.com and autoexec.bat :D.

    Share this post


    Link to post
    Share on other sites
    Posted:
    Last Online:  
     

    Well, I feel for people like that.  I've used so many different operating systems that I always proceed with caution (ever since I typed rm * in the root of a UNIX system I was setting up).  The first machines I used didn't even have a between job monitor let alone an operating system.  You sat at the console and toggled in the program.  There wasn't even an assembly program.

     

    The command line processor in Linux is called a 'shell' and the console program (one of them) is called Xterm.  There are several shells and several terminal programs.  Xterm pretends to be a serial monitor.  You need to be careful on any *nix O/S because you are dealing with a Swiss army knife, and the unwary can get badly cut.


    Beware: Emancipated user.  No Windoze for me.
    The teacher opens the door but the student must enter himself. - Ancient Chinese Saying

    Every minute of hate in which one indulges oneself is sixty seconds of happiness lost.
    Music expresses that which cannot be put into words and that which cannot remain silent. -- Victor Hugo
    If you always do what you've always done, you'll mostly get what you've always got.
    JohnNewSig.gif
    "We have met the enemy, and he is us" - Walt Kelly

    Come join us at the Moose Factory

    Share this post


    Link to post
    Share on other sites
    Posted:
    Last Online:  
     

     

    Actually .bat files haven't been called CMD files all that long. 

     

    It's a bit of a shortcut. I still remember when one of our Mac guys was forced to use Windows the first time, with a fresh install. His final step was "to clean up all this mess the installation left in the root directory". And gone were command.com and autoexec.bat :D.

     

     

    Ahhhh, the good old days, when you needed a well put together autoexec.bat file or you wouldn't have enough ram to start a game, or would not be able to have sound...  :ohyes:

    Share this post


    Link to post
    Share on other sites
    Posted:
    Last Online:  
     

     

    <snip>

    Ahhhh, the good old days, when you needed a well put together autoexec.bat file or you wouldn't have enough ram to start a game, or would not be able to have sound...  :ohyes:

     

    The first machine I ever programmed seriously had exactly 10,000 words (12-bits each) with a decimal addressed memory.  Believe it or not we had a COBOL-61 extended compiler for that beast, and Fortrash as well.  We did most of our work in assembler.  No operating system, just a between job monitor.  This machine (NCR 315) was the main processor for a Canadian chartered bank.  It ran clearing of over 1,000,000 cheques a day, and there was no Internet in existence at the time, so communications was pretty much non-existent.  You got to write your own device drivers.  The vendor provided magnetic media drivers (only) and some rather weak examples of the rest.


    Beware: Emancipated user.  No Windoze for me.
    The teacher opens the door but the student must enter himself. - Ancient Chinese Saying

    Every minute of hate in which one indulges oneself is sixty seconds of happiness lost.
    Music expresses that which cannot be put into words and that which cannot remain silent. -- Victor Hugo
    If you always do what you've always done, you'll mostly get what you've always got.
    JohnNewSig.gif
    "We have met the enemy, and he is us" - Walt Kelly

    Come join us at the Moose Factory

    Share this post


    Link to post
    Share on other sites
    Posted:
    Last Online:  
     

     

     

    <snip>

    Ahhhh, the good old days, when you needed a well put together autoexec.bat file or you wouldn't have enough ram to start a game, or would not be able to have sound...  :ohyes:

     

    The first machine I ever programmed seriously had exactly 10,000 words (12-bits each) with a decimal addressed memory.  Believe it or not we had a COBOL-61 extended compiler for that beast, and Fortrash as well.  We did most of our work in assembler.  No operating system, just a between job monitor.  This machine (NCR 315) was the main processor for a Canadian chartered bank.  It ran clearing of over 1,000,000 cheques a day, and there was no Internet in existence at the time, so communications was pretty much non-existent.  You got to write your own device drivers.  The vendor provided magnetic media drivers (only) and some rather weak examples of the rest.

     

     

    sounds like fun  :rofl:

    Share this post


    Link to post
    Share on other sites

    Sign In or register to comment...

    To comment in reply, you must be a community member

    Sign In  

    Already have an account? Sign in here.

    Sign In Now

    Create an Account  

    Sign up to join our friendly community. It's easy!  

    Register a New Account

    Sign In to follow this  

    • Recently Browsing   0 members

      No registered users viewing this page.

    ×

    Thank You for the Continued Support!

    Simtropolis depends on donations to fund site maintenance costs.
    Without your support, we just would not be in our 24th year online!  You really help make this a great community. *:thumb:

    But we still need your support to stay online. If you're able to, please consider a donation to help us stay up and running. This helps sustain a platform where we can share our community creations for years to come.

    Make a Donation, Get a Gift!

    Expand your city with the best from the Simtropolis Exchange.
    Make a Donation and get one or all three discs today!

    STEX Collections

    By way of a "Thank You" gift, we'd like to send you our STEX Collector's DVD. It's some of the best buildings, lots, maps and mods collected for you over the years. Check out the STEX Collections for more info.

    Each donation helps keep Simtropolis online, open and free!

    Thank you for reading and enjoy the site!

    More About STEX Collections