Quote:
Originally Posted by dansgalaxy
sounds interesting... so what the hell is .hta??
Someone explain in detail
Dan
|
HTA = Hyper text Application
Its basically a technique to allow you to create an application using HTML/VBScript/Javascript. It requires a minimum of IE4 to be installed.
When creating one, script in your page basically can do almost anything a regular executable could. Most heavy lifting is done by communication with ActiveX controls built into the system.
So, you could use an HTA to launch a borderless window, that uses javascript to read/write files, you can read/edit the registry, open sockets, all kinds of fun things. You can even customize the icon for the window and of the HTA icon itself.
Think of it like (*nix) shell scripting for windows.
HTA's use the IE engine with the security turned off. The assumption is that if the file is on your drive vs "the internet" that its ok.
|