WiX is the best Windows Installer based system that I've used. The learning curve is a little steeper than the Visual Studios install builder, but you get a lot more control of the final product. Wix provides access to all of the Windows Installer feature, most of which are hidden when using Visual Studios. It's also easy to generate wix definition files on the fly--the source is all xml. Build integration is also simple since the tools are all command line driven.
I'd discourage using a script based installer, or a windows installer one which relies too much on custom actions. One of the big advantages Windows Installer provides is a transactional approach to installation. Losing these rollback facilities by using xcopy, or trying to roll your own transaction system, is a bad idea.
To get started with Wix, download the package from the source forge page. It comes with a couple basic tutorials to get you started, but I would recommend working through tramontana's tutorial
