Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Question
Wednesday, January 24, 2018 7:16 PM
hello - our main app does not run under Edge so our users use IE on Win 10.
I am pushing down Active X files to Win 7 clients at "C:\Windows\Downloaded Program Files\ and then registering them and this works as expected. The program works as expected in IE.
Now comes along Win 10 with both IE and Edge.
However in Win 10 the "C:\Windows\Downloaded Program Files\ file is empty and can't be written to. I have started the service and set IE to run X and scripts etc. (plus its intranet traffic)
How do I support ActiveX on Window's 10 IE?
ManyThanks
All replies (3)
Thursday, January 25, 2018 6:49 AM ✅Answered
Hi,
Please take following steps to see if it can work.
1. Open Command Prompt (as administrator)
2. Type following command to remove the system file attribute.
**attrib "C:\windows\Downloaded Program Files" -S **(press Enter)
3. Copy ActiveX files in the folder.
4. Type following command to set the system file attribute.
**attrib "C:\windows\Downloaded Program Files" +S ** (press Enter)
5. Re-register them to see if it can work.
Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact [email protected].
Wednesday, January 24, 2018 8:11 PM
try this
https://support.microsoft.com/en-us/help/17469/windows-internet-explorer-use-activex-controls
Thursday, January 25, 2018 1:01 PM
Thank you Vera, that did the trick.