Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Something Useful? Got Any Tips?

Something Useful? Got Any Tips?

Scheduled Pinned Locked Moved The Lounge
questionc++comlinuxtools
37 Posts 20 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C code frog 0

    Okay, so a while back I posted this brilliant (NOT!) question about how to save the contents of a search in windows XP File Search / Windows XP...[^] Taka Muraoka responded with a very simple command line tip. DIR xfile.cpp /s /b >results.txt Now I find myself using this command all the time. I love this thing. Very handy. So my question is this. Do you have any cool WINDOWS BASED (no Linux) shortcuts or commands that you use all the time, something you just could not function without it? Hotkeys, commands, free tools, etc... If you have a favorite or several post em back here. I will compile a complete list and post it back here for people (if I get enough responses). C'mon RESPOND!!! It will up your post count. ;P


    "Back to school, back to school; to prove to dad I'm not a fool." - Billy Madison (Adam Sandler) Rex Winn

    L Offline
    L Offline
    Luca Leonardo Scorcia
    wrote on last edited by
    #7

    C:\mp3>dir *.mp3 /B /O:N /S > mp3_list.txt

    Guess what it does ;P :-D Luca Leonardo Scorcia http://zip.to/kojak (only in Italian)

    1 Reply Last reply
    0
    • Z Zyxil

      i'm always surprised that people don't know that the "windows" key is actually used for something (you know that key, lower left and right of the keyboard, next to the Alt key): - Win-M : Minimize all windows on screen (same as ShowDesktop icon) - Win-R : Run dialog (win-r, cmd, enter = command line) - Win-E : Windows Explorer open to MyDocuments there are prolly others, but these are the ones that i use -John

      D Offline
      D Offline
      dandy72
      wrote on last edited by
      #8

      Get DirKey[^], which lets you assign (among other things) Windows key combos to apps and what-not. Launching IE with Win-I is pretty nifty.

      J 1 Reply Last reply
      0
      • C code frog 0

        Okay, so a while back I posted this brilliant (NOT!) question about how to save the contents of a search in windows XP File Search / Windows XP...[^] Taka Muraoka responded with a very simple command line tip. DIR xfile.cpp /s /b >results.txt Now I find myself using this command all the time. I love this thing. Very handy. So my question is this. Do you have any cool WINDOWS BASED (no Linux) shortcuts or commands that you use all the time, something you just could not function without it? Hotkeys, commands, free tools, etc... If you have a favorite or several post em back here. I will compile a complete list and post it back here for people (if I get enough responses). C'mon RESPOND!!! It will up your post count. ;P


        "Back to school, back to school; to prove to dad I'm not a fool." - Billy Madison (Adam Sandler) Rex Winn

        B Offline
        B Offline
        Brad Sokol
        wrote on last edited by
        #9

        I'm a command line guy. I find the mouse too slow when I'm really on a roll. One of the things I can't live without is command line completion for directory and file names. The registry value is HKEY_CURRENT_USER\Software\Microsoft\Command Processor\CompletionChar. Set this to an ASCII value. I prefer 9 for the tab key. Then, in a command window, when you type the first few characters of a file or directory name and press the configured key, Windows will complete the name for you. Repeat to cycle to the next candidate name. Shift and the key (e.g. shift-tab) cycles in reverse order.

        N 1 Reply Last reply
        0
        • C code frog 0

          Okay, so a while back I posted this brilliant (NOT!) question about how to save the contents of a search in windows XP File Search / Windows XP...[^] Taka Muraoka responded with a very simple command line tip. DIR xfile.cpp /s /b >results.txt Now I find myself using this command all the time. I love this thing. Very handy. So my question is this. Do you have any cool WINDOWS BASED (no Linux) shortcuts or commands that you use all the time, something you just could not function without it? Hotkeys, commands, free tools, etc... If you have a favorite or several post em back here. I will compile a complete list and post it back here for people (if I get enough responses). C'mon RESPOND!!! It will up your post count. ;P


          "Back to school, back to school; to prove to dad I'm not a fool." - Billy Madison (Adam Sandler) Rex Winn

          P Offline
          P Offline
          peterchen
          wrote on last edited by
          #10

          dailybuild *.*.*.+


          "Der Geist des Kriegers ist erwacht / Ich hab die Macht" StS
          sighist | Agile Programming | doxygen

          J 1 Reply Last reply
          0
          • D dandy72

            Get DirKey[^], which lets you assign (among other things) Windows key combos to apps and what-not. Launching IE with Win-I is pretty nifty.

            J Offline
            J Offline
            J Dunlap
            wrote on last edited by
            #11

            Winkey[^] does this, too. I'd be using it myself, except that I need every scrap of system resources I can get.

            "Blessed are the peacemakers, for they shall be called sons of God." - Jesus
            "You must be the change you wish to see in the world." - Mahatma Gandhi

            D 1 Reply Last reply
            0
            • Z Zyxil

              i'm always surprised that people don't know that the "windows" key is actually used for something (you know that key, lower left and right of the keyboard, next to the Alt key): - Win-M : Minimize all windows on screen (same as ShowDesktop icon) - Win-R : Run dialog (win-r, cmd, enter = command line) - Win-E : Windows Explorer open to MyDocuments there are prolly others, but these are the ones that i use -John

              M Offline
              M Offline
              Member 96
              wrote on last edited by
              #12

              What the....? Hey, that's cool! So that's why they put that key there! I honestly never used it before for anything and I've been keyboarding since before Al Gore invented the internet so I should be up on keyboard shortcuts. ------------

              1 Reply Last reply
              0
              • C code frog 0

                Okay, so a while back I posted this brilliant (NOT!) question about how to save the contents of a search in windows XP File Search / Windows XP...[^] Taka Muraoka responded with a very simple command line tip. DIR xfile.cpp /s /b >results.txt Now I find myself using this command all the time. I love this thing. Very handy. So my question is this. Do you have any cool WINDOWS BASED (no Linux) shortcuts or commands that you use all the time, something you just could not function without it? Hotkeys, commands, free tools, etc... If you have a favorite or several post em back here. I will compile a complete list and post it back here for people (if I get enough responses). C'mon RESPOND!!! It will up your post count. ;P


                "Back to school, back to school; to prove to dad I'm not a fool." - Billy Madison (Adam Sandler) Rex Winn

                S Offline
                S Offline
                Shog9 0
                wrote on last edited by
                #13

                for %a in (*.dll;*.ocx) do regsvr32 /s %a

                Shog9

                Give me a Leonard Cohen afterworld So I can sigh enternally...

                J 1 Reply Last reply
                0
                • Z Zyxil

                  i'm always surprised that people don't know that the "windows" key is actually used for something (you know that key, lower left and right of the keyboard, next to the Alt key): - Win-M : Minimize all windows on screen (same as ShowDesktop icon) - Win-R : Run dialog (win-r, cmd, enter = command line) - Win-E : Windows Explorer open to MyDocuments there are prolly others, but these are the ones that i use -John

                  D Offline
                  D Offline
                  David Wulff
                  wrote on last edited by
                  #14

                  John Morales wrote: Win-M : Minimize all windows on screen (same as ShowDesktop icon) WIN+D combo was the toggle desktop one - Win+M and WIN+SHIFT+M are just either side of it. WIN+R I use all the time - I use that more than I use the start menu. WIN+E I never use as the only time I ever use Windows Explorer is to view the thumbnails in my 'My Pictures' folder. I navigate the machine/network from a little 'My Computer' chevron next to the Start button. WIN+F is useful if you aren't in a location where you can press F3 to bring up the search (okay, so I occasinally use Explorer for that too). WIN+V (only if you have that Windows XP mutli-desktop addon) let's me see all my four desktops at once. WIN+BREAK shows the system properties - very useful if you need to check or change something. And of course WIN+TAB for moving between taskbar buttons. Have I missed any? I'm pretty certain that I only use a small subset of the ones available.


                  David Wulff

                  Build: 1 succeeded, 0 failed, 0 skipped

                  J J 2 Replies Last reply
                  0
                  • C code frog 0

                    Okay, so a while back I posted this brilliant (NOT!) question about how to save the contents of a search in windows XP File Search / Windows XP...[^] Taka Muraoka responded with a very simple command line tip. DIR xfile.cpp /s /b >results.txt Now I find myself using this command all the time. I love this thing. Very handy. So my question is this. Do you have any cool WINDOWS BASED (no Linux) shortcuts or commands that you use all the time, something you just could not function without it? Hotkeys, commands, free tools, etc... If you have a favorite or several post em back here. I will compile a complete list and post it back here for people (if I get enough responses). C'mon RESPOND!!! It will up your post count. ;P


                    "Back to school, back to school; to prove to dad I'm not a fool." - Billy Madison (Adam Sandler) Rex Winn

                    N Offline
                    N Offline
                    Navin
                    wrote on last edited by
                    #15

                    format c: :-D "When a man sits with a pretty girl for an hour, it seems like a minute. But let him sit on a hot stove for a minute and it's longer than any hour. That's relativity." - Albert Einstein

                    1 Reply Last reply
                    0
                    • B Brad Sokol

                      I'm a command line guy. I find the mouse too slow when I'm really on a roll. One of the things I can't live without is command line completion for directory and file names. The registry value is HKEY_CURRENT_USER\Software\Microsoft\Command Processor\CompletionChar. Set this to an ASCII value. I prefer 9 for the tab key. Then, in a command window, when you type the first few characters of a file or directory name and press the configured key, Windows will complete the name for you. Repeat to cycle to the next candidate name. Shift and the key (e.g. shift-tab) cycles in reverse order.

                      N Offline
                      N Offline
                      Navin
                      wrote on last edited by
                      #16

                      This is quite handy. Fortunately, it appears that in XP there is some default for command line completion without having to hack this registry value. "When a man sits with a pretty girl for an hour, it seems like a minute. But let him sit on a hot stove for a minute and it's longer than any hour. That's relativity." - Albert Einstein

                      1 Reply Last reply
                      0
                      • D David Wulff

                        John Morales wrote: Win-M : Minimize all windows on screen (same as ShowDesktop icon) WIN+D combo was the toggle desktop one - Win+M and WIN+SHIFT+M are just either side of it. WIN+R I use all the time - I use that more than I use the start menu. WIN+E I never use as the only time I ever use Windows Explorer is to view the thumbnails in my 'My Pictures' folder. I navigate the machine/network from a little 'My Computer' chevron next to the Start button. WIN+F is useful if you aren't in a location where you can press F3 to bring up the search (okay, so I occasinally use Explorer for that too). WIN+V (only if you have that Windows XP mutli-desktop addon) let's me see all my four desktops at once. WIN+BREAK shows the system properties - very useful if you need to check or change something. And of course WIN+TAB for moving between taskbar buttons. Have I missed any? I'm pretty certain that I only use a small subset of the ones available.


                        David Wulff

                        Build: 1 succeeded, 0 failed, 0 skipped

                        J Offline
                        J Offline
                        Jorgen Sigvardsson
                        wrote on last edited by
                        #17

                        WIN+TAB is really handy! Thanks! :) -- It's better to listen to others than to speak, because I already know what I'm going to say anyway. -- Friend of mine

                        M 1 Reply Last reply
                        0
                        • R Roger Wright

                          Ctrl-Alt-Del

                          "The Lion shall lie down with the Lamb;
                          but the Lamb will not get much sleep..."
                          Lazarus Long

                          J Offline
                          J Offline
                          Jorgen Sigvardsson
                          wrote on last edited by
                          #18

                          Heh, some people don't get humor. :) When a newbie asks me something on IRC regarding computer related function, I always try "Press ALT+F4 and see what happens".

                          * XXX has quit IRC (Connection closed by client)

                          :-D -- It's better to listen to others than to speak, because I already know what I'm going to say anyway. -- Friend of mine

                          D R M 3 Replies Last reply
                          0
                          • P peterchen

                            dailybuild *.*.*.+


                            "Der Geist des Kriegers ist erwacht / Ich hab die Macht" StS
                            sighist | Agile Programming | doxygen

                            J Offline
                            J Offline
                            Jorgen Sigvardsson
                            wrote on last edited by
                            #19

                            Que? -- It's better to listen to others than to speak, because I already know what I'm going to say anyway. -- Friend of mine

                            P 1 Reply Last reply
                            0
                            • S Shog9 0

                              for %a in (*.dll;*.ocx) do regsvr32 /s %a

                              Shog9

                              Give me a Leonard Cohen afterworld So I can sigh enternally...

                              J Offline
                              J Offline
                              Jorgen Sigvardsson
                              wrote on last edited by
                              #20

                              ldsoconfig or export LD_LIBRARY_PATH=$SOME_PATH but this one's the best export LD_PRELOAD=$SOME_SHARED_OBJECT :) -- It's better to listen to others than to speak, because I already know what I'm going to say anyway. -- Friend of mine

                              1 Reply Last reply
                              0
                              • J Jorgen Sigvardsson

                                Heh, some people don't get humor. :) When a newbie asks me something on IRC regarding computer related function, I always try "Press ALT+F4 and see what happens".

                                * XXX has quit IRC (Connection closed by client)

                                :-D -- It's better to listen to others than to speak, because I already know what I'm going to say anyway. -- Friend of mine

                                D Offline
                                D Offline
                                Daniel Turini
                                wrote on last edited by
                                #21

                                Jörgen Sigvardsson wrote: When a newbie asks me something on IRC regarding computer related function, I always try "Press ALT+F4 and see what happens". Not to mention on Web support forums, you can always say to people press Ctrl-W on their browsers. ORACLE One Real A$#h%le Called Lary Ellison

                                J 1 Reply Last reply
                                0
                                • D Daniel Turini

                                  Jörgen Sigvardsson wrote: When a newbie asks me something on IRC regarding computer related function, I always try "Press ALT+F4 and see what happens". Not to mention on Web support forums, you can always say to people press Ctrl-W on their browsers. ORACLE One Real A$#h%le Called Lary Ellison

                                  J Offline
                                  J Offline
                                  Jorgen Sigvardsson
                                  wrote on last edited by
                                  #22

                                  :snicker: -- It's better to listen to others than to speak, because I already know what I'm going to say anyway. -- Friend of mine

                                  1 Reply Last reply
                                  0
                                  • J Jorgen Sigvardsson

                                    Heh, some people don't get humor. :) When a newbie asks me something on IRC regarding computer related function, I always try "Press ALT+F4 and see what happens".

                                    * XXX has quit IRC (Connection closed by client)

                                    :-D -- It's better to listen to others than to speak, because I already know what I'm going to say anyway. -- Friend of mine

                                    R Offline
                                    R Offline
                                    Roger Wright
                                    wrote on last edited by
                                    #23

                                    LOL!!! Thanks for that tip - I'll try it on someone soon.:-D

                                    "The Lion shall lie down with the Lamb;
                                    but the Lamb will not get much sleep..."
                                    Lazarus Long

                                    1 Reply Last reply
                                    0
                                    • D David Wulff

                                      John Morales wrote: Win-M : Minimize all windows on screen (same as ShowDesktop icon) WIN+D combo was the toggle desktop one - Win+M and WIN+SHIFT+M are just either side of it. WIN+R I use all the time - I use that more than I use the start menu. WIN+E I never use as the only time I ever use Windows Explorer is to view the thumbnails in my 'My Pictures' folder. I navigate the machine/network from a little 'My Computer' chevron next to the Start button. WIN+F is useful if you aren't in a location where you can press F3 to bring up the search (okay, so I occasinally use Explorer for that too). WIN+V (only if you have that Windows XP mutli-desktop addon) let's me see all my four desktops at once. WIN+BREAK shows the system properties - very useful if you need to check or change something. And of course WIN+TAB for moving between taskbar buttons. Have I missed any? I'm pretty certain that I only use a small subset of the ones available.


                                      David Wulff

                                      Build: 1 succeeded, 0 failed, 0 skipped

                                      J Offline
                                      J Offline
                                      Joao Vaz
                                      wrote on last edited by
                                      #24

                                      Damn, I didn't known of WIN+TAB, thanks a lot !!!! Cheers,Joao Vaz One protocol to rule them all One protocol to find them One protocol to bring them all And in the darkness, bind them In the land of mordor.net, where the shadowed fibers lie

                                      1 Reply Last reply
                                      0
                                      • J Jorgen Sigvardsson

                                        Que? -- It's better to listen to others than to speak, because I already know what I'm going to say anyway. -- Friend of mine

                                        P Offline
                                        P Offline
                                        peterchen
                                        wrote on last edited by
                                        #25

                                        Well... it takes my sources from sourcesafe, labels the last version digit up by one, checks back the .rc files with the resource,s archives the sources, builds the sources (release and debug), archives the binaries and the pdb's. Doesn't work on all boxes, though ;)


                                        "Der Geist des Kriegers ist erwacht / Ich hab die Macht" StS
                                        sighist | Agile Programming | doxygen

                                        J 1 Reply Last reply
                                        0
                                        • C code frog 0

                                          Okay, so a while back I posted this brilliant (NOT!) question about how to save the contents of a search in windows XP File Search / Windows XP...[^] Taka Muraoka responded with a very simple command line tip. DIR xfile.cpp /s /b >results.txt Now I find myself using this command all the time. I love this thing. Very handy. So my question is this. Do you have any cool WINDOWS BASED (no Linux) shortcuts or commands that you use all the time, something you just could not function without it? Hotkeys, commands, free tools, etc... If you have a favorite or several post em back here. I will compile a complete list and post it back here for people (if I get enough responses). C'mon RESPOND!!! It will up your post count. ;P


                                          "Back to school, back to school; to prove to dad I'm not a fool." - Billy Madison (Adam Sandler) Rex Winn

                                          P Offline
                                          P Offline
                                          Phil Martin
                                          wrote on last edited by
                                          #26

                                          I'm an incessant commnad line user. Things I use: ZTreeWin (XTree clone for windows). Man I couldn't live without this. http://www.ztree.com/html/ztreewin.htm [^]. My ONLY gribe is that the text viewer doesn't optionally have line numbers. Annoying when discussing code over the phone. Other than that, just the best tool in the universe. at the command line:

                                          • 'start .' or 'start e:\phillip\code\aztec\' to open up explorer windows to do some stuff.
                                          • for loops all the time in batch files. I just couldn't reliably update my various lots of source code without it. If explorer hits an error, it stops the operation, at least with this, I can make it keep going, or keep a list of things done, or someting!
                                          • ctrl+shift+esc for the task manager
                                          • Hitting esc twice to get rid of the output window in VC6 (Last I tried VC.NET, it didn't do this, and it was really frustrating!)
                                          • And my favourite one is del emacs*.exe /s to get rid of the worst virus on the planet. VC Users unite! ;P
                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups