Page 3 of 3 FirstFirst 123
Results 21 to 27 of 27

Thread: DOS Commands (Advanced)

  1. #21
    Usefull stuff, keep it up guys.

    The FACT that people ignore FACTS
    doesnt mean that FACTS are not FACTS

  2. #22
    Senior Member
    Join Date
    Oct 2003
    Posts
    107
    informative.........but kinda....well it is gr8 to know this

  3. #23
    Senior Member
    Join Date
    Sep 2003
    Posts
    279
    slarty:

    Specify what commands to be run when opening a command prompt
    When opening a command prompt it checks the following STRING values in the registry to see if any commands should be executed :
    [HKEY_CURRENT_USER \SOFTWARE \Microsoft \Command Processor]
    [HKEY_LOCAL_MACHINE \SOFTWARE \Microsoft \Command Processor]
    Autorun = "prompt [%computername%]$S$P$G && COLOR 0A"
    Note the commands above will change the command prompt and color.

    Note to specify several commands seperate them with &&, or use a batch file.

    Note the cmd has a switch to disable the execution of the Autorun :
    cmd /d
    Actually i do mention a little registry in the tut.
    AntiOnline Quick Forum Version 2b Click Here
    10010101000000110010001100111

  4. #24

  5. #25

    Cool

    Great...thanks for the info.....Here's another that I find useful

    You can have a console window available, in any directory, from Explorer.

    First Create a cmd script StartCon.cmd

    @echo off
    cd /d %1
    Title %~f1

    Put this script somewhere where you will always be able to find it - in
    your path. (for example c:\winnt)

    Now open explorer and select View-->Options from the menu, select the File
    Types tab and select the 'Folder' Icon from the 'Registered Files Types'
    list.
    Press the Edit button, and in the 'Edit File Type' dialog press the New...
    button.


    In the New Action Dialog type "New Console from here" in the Action Field, and

    cmd.exe /a /k c:\winnt\StartCon "%l"

    in the 'Application used...' field.
    Press okay, close, close to come out of the dialogs.

    Now select a folder in explorer, and right click your mouse, you will see a
    new entry 'New Console from Here' on the context menu, if you select it you will get
    a new console window, with the directory you selected as the current
    directory.

    okay - so it's not going to change your life, but it saves having to drap&drop from explorer to a cmd shell to quickly get a path...


  6. #26
    Junior Member
    Join Date
    Aug 2003
    Posts
    10
    Who wrote this thing? He's a genius...

  7. #27
    Senior Member
    Join Date
    Sep 2003
    Posts
    279
    LOL, i posted this, but i also already knew most of it. That links has a few more tips from the guy i got this from.
    AntiOnline Quick Forum Version 2b Click Here
    10010101000000110010001100111

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •