开发者

Force iexplore (from command line) to 32-bit mode

开发者 https://www.devze.com 2023-01-19 12:10 出处:网络
We have an online movie that displays full-screen. Instead of the now-standard flash-based fullscreen, which was not available when the movie was originally written, an ActiveX control is used to lau

We have an online movie that displays full-screen.

Instead of the now-standard flash-based fullscreen, which was not available when the movie was originally written, an ActiveX control is used to launch iexplore.exe in kiosk mode.

A rewrite of the movie to fix this glaring problem is scheduled for Q1 next year.

In the mean time, I need to try to find a stopgap for our 64-bit users, as the ActiveX control is currently launching IE's 64-bit version, which obviously can't play our flash-based movie.

We launch IE with the command line command:

"C:\Program Files\Internet Explorer\iexplore.exe" -k <url>

Other than replacing the path with the path to the 32-bit v开发者_如何学Goersion (which would then fail on 32-bit systems) is there anything we can do for our 64-bit users?


Further study and investigation has lead to no way to make this work. We will either need to advise our users to use 32 bit systems or to use XP mode while working with this.

It is suboptimal, but all we can do without rewriting the ActiveX (using code similar to dcfoster's) or Adobe pushing a flash player for 64-bit.


Here is the text for a batch file to do it, the first "if" is if it is 32-bit, the second is 64-bit ... just fill in the path to IE and the webpage that you want to open, save as a .bat file and double click to run.

@echo off
Set RegQry=HKLM\Hardware\Description\System\CentralProcessor\0
REG.exe Query %RegQry% > checkOS.txt
Find /i "x86" < CheckOS.txt > StringCheck.txt
If %ERRORLEVEL% == 0 (
Echo "This is 32 Bit Operating system"
start /d /b "C:\Program Files\Internet Explorer\" iexplore.exe -k www.google.com
) ELSE (
Echo "This is 64 Bit Operating System"
start /d /b "C:\Program Files\Internet Explorer\" iexplore.exe -k www.google.com
)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号