Turns out it was!
Here is what I did: (Run powershell as administrator)
#Setting IExplorer settings Write-Verbose "Now configuring IE"
Now you have all your settings indicated as values. The trick is to find the right values ββfor each setting. In my case, I found the values ββat: http://support.microsoft.com/KB/182569 (a bit halfway on the page)
Now we need to know what are the preferred values. In my case, I found that the value 0 is enabled, 1 is disabled, and 3 is (if supported).
Further it is quite simple.
-ActiveX controls and plugins: Allow ActiveX filtering = Enable (2702)
new-itemproperty . -Name 2702 -Value 0 -Type DWORD -Force
-ActiveX-controls and plugins: allow the launch of previously unused ActiveX controls without prompt = Enable (1208)
new-itemproperty . -Name 1208 -Value 0 -Type DWORD -Force
-ActiveX controls and plugins: Allow Scriptlets = Enable (1208)
new-itemproperty . -Name 1209 -Value 0 -Type DWORD -Force
-ActiveX-controls and plugins: automatic prompt for ActiveX controls = disable (2201)
new-itemproperty . -Name 2201 -Value 3 -Type DWORD -Force
-ActiveX controls and plugins: Binary and script behaviors = Enable (2000)
new-itemproperty . -Name 2000 -Value 0 -Type DWORD -Force
-Disable video and animation on a web page that does not use an external media player = Enable (120A)
new-itemproperty . -Name 120A -Value 0 -Type DWORD -Force
-ActiveX controls and plugins: Download signed ActiveX controls = Enable (1001)
new-itemproperty . -Name 1001 -Value 0 -Type DWORD -Force
-ActiveX controls and plugins: Download unsigned ActiveX controls = Enable (1004)
new-itemproperty . -Name 1004 -Value 0 -Type DWORD -Force
-ActiveX controls and plugins: Initialize and script ActiveX controls are not marked as script-safe = Enable (1201)
new-itemproperty . -Name 1201 -Value 0 -Type DWORD -Force
- allow allowed domains to use ActiveX without invitation = disable (120B)
new-itemproperty . -Name 120B -Value 3 -Type DWORD -Force
-ActiveX controls and plugins: Launch ActiveX controls and plugins = Enable (1200)
new-itemproperty . -Name 1200 -Value 0 -Type DWORD -Force
-ActiveX controls and plugins: script ActiveX controls marked as safe for scripts = Enable (1405)
new-itemproperty . -Name 1405 -Value 0 -Type DWORD -Force cls