I downloaded the source and binaries from http://sourceforge.net/projects/console/files/

In the binaries help file it makes reference to a setup file but there is none.

The list of files included in the Console-2.00b145-Beta.zip is:

  • Microsoft.VC90.CRT (folder)
  • console.chm
  • Console.exe
  • console.xml
  • ConsoleHook.dll
  • FreeImage.dll
  • FreeImagePlus.dll

How do I setup or place the files for Console2 on Windows 7?

link|improve this question
feedback

3 Answers

up vote 19 down vote accepted

Here's what I did

  1. Download Console2 from SourceForge (get _32bit.zip or _64bit.zip version depending on your OS)
  2. Download Console2 src just to get the .ico file
  3. Copy the Console2 folder to C:\Program Files
  4. Copy Console.ico file from the Console Source downloads to the folder above
  5. Open Console2 and edit your settings for font or better read Scott Hanselman's blog post on his Console2 setup

To add a Context Menu that will open Console2 on a specific directory update the registry as follows (Windows7):

[HKEY_CLASSES_ROOT\Directory\shell\open_console]
@=Open Console2 Here
Icon=C:\Program Files\Console2\Console.ico

[HKEY_CLASSES_ROOT\Directory\shell\open_console\Command]
@=C:\Program Files\Console2\Console.exe -d "%v"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\Background\shell\open_console]
@=Open Console2 Here
Icon=C:\Program Files\Console2\Console.ico

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\Background\shell\open_console\Command]
@=C:\Program Files\Console2\Console.exe -d "%v"

The first registry entry for HKCR adds a "Open Console2 Here" context menu item when you are in a folder and clicking the background.

The second registry entry for HKLM adds a "Open Console2 Here" context menu item when you are clicking ON a folder.

link|improve this answer
any reason why you added the background keys to HKLM instead of HKCR – Jon Erickson Apr 8 '10 at 18:59
Yes. The first one adds a context menu to a Folder background and the second adds a context menu item "Open Console2 Here" to a Folder icon. – Brian Boatright Nov 15 '11 at 4:49
feedback

which error you'd found when you run console.exe ? .dll not found ? take a look here. hope this helps.

link|improve this answer
no error. it just mentioned a setup file in the help chm and I didn't see it. – Brian Boatright Mar 21 '10 at 16:03
feedback

I have Console2 running on Windows 7 64bit and resolved it much easier. While having the C drive for programs, I use the D drive for tools and other data.

Installation Path: D:\Tools\Console2

Now you just have to edit your system variable "PATH" and add the installation path to it:

Key: PATH

Value: {other paths};D:\Tools\Console2 (no semicolon required at the end)

Now you can just type "console" (since the file name is "console.exe") to the run command (Windows + R) and Console2 will start right away.

Tip: In combination with "Total Commander", you can just toggle the command bar. So when you place yourself on a specific path and just start typing "console" it will start Console2 with that specific path. That avoids thousands of "cd" commands to get where you want to.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.