I'm working on an HTML Application for Windows 8.1, and, as our office soon will use Windows 10, I'm wondering if MS Edge and Windows 10 still support HTA.
Will Microsoft Edge and Windows 10 support HTA?
18.3k views Asked by Simon D At
2
There are 2 answers
0
user11116047
On
Late post but after testing, yes, HTA are fully support by Windows 10 and IE/Edge Browser. After declaring the doc type (important) at the top of your hta file (), set the meta tag in the head dom-node. Something like :
<meta http-equiv="x-ua-compatible" content="ie=9" /><meta http-equiv="x-ua-compatible" content="ie=10" /><meta http-equiv="x-ua-compatible" content="ie=11" /><meta http-equiv="x-ua-compatible" content="ie=edge" />
JScript run on 4 versions, VBS run on 9 and 10.
Please refer to this site for more detail (keyword : compatible) : -https://www.robvanderwoude.com/vbstech_hta.php#Quirks
Related Questions in VBSCRIPT
- use vbScript to detect whether the laptop is connecting the power supply
- Error Code 800A03EC in VBS when pasting formula into Excel
- Why is the WMI win32_Process commandline property is giving null for only some processes of non-admin users?
- Group By value to store as a Variable
- 0014 W3602 : Error 0 on line 19, column 1: : will trying to get value from table
- error "800A004C" with too long path with recursive folder serarch
- timer is not working for message box in vb script
- Comparing numeric values not as expected (VBScript)
- Received Script that is a possible virus. What does it do?
- Excel VBA Macro after M365 migration "Runtime error '380': A script engine for the specified language can not be created"
- Can I skip PDF form fields from being filled in an FDF?
- run VBScripts in DosBox-X
- Can I run a program and interfere with its interface using VBS? Possibly with sendkey/click?
- Varchar(max) causing other other accesses of the record set to return null
- Fixing roman numerals with regex and VBScript
Related Questions in HTA
- Get the path of a directory in HTA
- Display cmd data into HTA and the command prompt window
- Why is HTA with VB Script vs. CSS not working?
- Modification GIF Folder Preview Script
- BAT/HTA hybrid - How do I escape percent signs in the HTML section?
- HTA VBScript: dynamically create function at runtime from a string or variable that contains a string as in JavaScript with new Function() constructor
- Why does my video not show up in a modal dialog window in my VBS HTA app?
- Problem with Window.event.keyCode and .dat memory read VBS hta
- New Connection String with Office 365
- Relative path on WshShell
- use a part of html tag src from script in a Hta (html application)
- How to run an HTA dialog with a UAC prompt and wait for a return value
- How to properly navigate a li tag to build a OBJECT in a HTA
- How to pass HTA Form data (as months and years) to an external Vbscipt file
- javascript class in hta
Related Questions in WINDOWS-10
- How to immediately apply DISPLAYCONFIG_SCALING display scaling mode with SetDisplayConfig and DISPLAYCONFIG_PATH_TARGET_INFO
- Spring @Scheduled cron fixed time doesn't work with OS suspension
- Swapping a healthy and unallocated partition in Windows 10
- Installing Docker on Windows 10
- Unexpected OS Shutdown
- Segfault GTK4 on windows 10
- FileSystemWatcher works reliably, unless I write to a log file
- IDT Audio Codec and Driver
- How can I use System.Security.Cryptography.ChaCha20Poly1305 on Windows 10?
- $WinREAgent folder keeps to automatically appear
- Powershell's InvokeVerb("delete") freezes after 22H2 update
- sdkmanager --list Exception in thread "main"
- Batch file wont run in Task Scheduler in Windows 10
- STM32 Not recognized by Windows 10
- C# X509Certificate2 private key disappear when GC occurs
Related Questions in MICROSOFT-EDGE
- couldn't sign in visual studio code
- Could not start a new session. Response code 500
- C# --headless print-to-pdf with Microsoft edge(chromium) won't work using ProcessStartInfo
- Building a web application for microsoft edge sidebar
- How to access Microsoft Edge browser and login into website via VBA
- Testcases failing in azure pipeline giving error edge driver exception
- Have values for edge driver changed
- DevTools not evaluating `$0` eagerly
- Native Messaging "Specified native messaging host not found" debugging
- @angular/cdk drag and drop dropzone likes to be outside of the original position when dropping in chrome browser but works fine in edge
- Start MS-Edge from command with save-as enabled
- img tag not loading dynamic image url in different browser except chrome
- How to restore the Microsoft extension user data to another pc?
- chrome.downloads.download on MS Edge: windows update this week added a bug. Work-around?
- Several issues with scroll snap in HTML/CSS
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
No. However, you can still run legacy HTAs in IE9 mode. For new development using web technologies, Microsoft is recommending a switch to Windows Store Apps.
Here's what Microsoft had to say about HTA support in IE10 and later:
I suspect that an HTA would work in Windows 10, but only in IE9 mode.(EDIT: It does!) It would be a major shift if Microsoft built Edge with HTA support.