14

I have PHPunit installed on a Windows machine. But I don't get nice output on my command line. With the green colours. Someone on the PHPunit mailing list told me I need the ansi.sys driver.

Can someone tell me how to do it so that PHPunit will use the driver?

I tried to add

device=%SystemRoot%\System32\ansi.sys

to my config.nt, but that doesn't give me the desired output. Any ideas?

studiohack
  • 13,477
sanders
  • 189

3 Answers3

17

enter image description here

ANSI Command Line Colors under Windows (Nov 2010 by SOFTKUBE s.a.r.l.)

Please remember that the download link in the article does not lead to the files with binaries. Please follow this to get source / binary packages.

Brandon
  • 186
  • 2
2

Windows Console does not use MS-DOS drivers and does not read config.nt. (Those are purely for NTVDM.)

If you need an ANSI-compatible terminal, check out mintty.

grawity
  • 501,077
-1

By far the easiest way I've found of getting a nice-looking terminal in Windows is to use Cmder.

It gives you full control over the palette, has transparency, allows saving of themes, etc, and is a portable app, so no messing with the registry or installing drivers is required (I found it after realising that ANSICON, which I'd been using before, was causing a number of commands to crash every time on my machine).

Before using Cmder, I was using mintty to run PHPUnit (because my other terminal was messing up the colours), and then Git Bash for everything else (because mintty didn't seem to get the colours right for, eg. git status). Cmder works both with PHPUnit and other instances (git commands, etc) where terminal output is coloured, and it's also configurable without needing to mess with drivers, registry, etc.

Nick F
  • 324