In my opinion, the best solution is (using the example of html5shim):
$html5shim = create_function( '', 'echo \'<!--[if lt IE 9]><script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->\';' );
add_action( 'wp_head', $html5shim );
Having PHP code inside a string is difficult to read, which is why I split the create_function out into it’s own line, but it’s necessary for PHP < 5.3 compatibility. If, however, you are using PHP 5.3+, you can use this far more readable version:
add_action( 'wp_head', function() {
echo '<!--[if lt IE 9]><script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->';
} );
The solution provided by Mikael Korpela is great in theory (ideal even), but it doesn’t actually work. It turns out that adding conditional comments is only implemented for the WP_Styles class, not for WP_Scripts. I found this out when trying that solution and being surprised to find that it didn’t wrap the script element in any conditional comments. So I researched it and found this answer on the WP stackexchange and this ticket in WP trac. Unfortunately for our purposes, that patch now seems unlikely to make it into core based on the comment thread. Another proposed solution is a script_loader_tag filter like the already existing style_loader_tag, but that ticket has been languishing in WP trac for 6 months.
So, long story short, the only two (reasonable) solutions available to you are server-side browser sniffing, as suggested by Trinh Hoang Nhu, and manually generating the script element with conditional elements yourself on the wp_head action or within your theme’s header.php file. As others have mentioned, server-side browser sniffing is a bad idea, both practically (it is unreliable) and theoretically (browser detection is very much a client-side issue).
Which leaves using the wp_head action. When specified as an anonymous function, as in my example in the beginning of the answer, you can include your conditional scripts at the same time as enqueueing your other scripts in your functions.php file. Perhaps it will eventually be possible through wp_register_script and wp_enqueue_script, which would definitely be better, but considering that conditional comments are a backwards-facing technology and have been removed from IE 10, I wouldn’t count on it.