HTML Applications (HTAs) are DHTML pages that have full local privileges. They've been around for a long time, but a colleague recently inquired so it was worth remembering. They're frequently used for splash screens on CD autoruns or as frontends to Windows Scripting Host (WSH) scripts.
HTAs are suited to many uses, whether you are prototyping, making wizards, or building full-scale applications. Whatever DHTML and script deliver nowforms, multimedia, Web applications, HTML editors, and browsers so can HTAs...and then some (from MSDN)
Creating them is super easy, just create an HTML page and give it the extension .hta It will run with full privileges on the local machine which lets you tap into the local object store (such as Office automation) and common Script Runtime objects like FileSystemObject. You also get more refined control how the browser appears to the user.
For more powerful and modern scripting, check out JPSoft's 4NT, PowerShell, or IronPython. But I must say, for simplicity and cross-PC support, it's still hard to beet the effective simplicity of HTAs.