Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Windows 10系統教程 >> 關於Windows10系統教程 >> Win10系統下如何運行Modern版IE浏覽器

Win10系統下如何運行Modern版IE浏覽器

日期:2017/1/24 10:20:38      編輯:關於Windows10系統教程

用上Win10技術預覽版的用戶是不是都有一個疑問,Modern版IE浏覽器(也就是為觸摸屏設計的IE浏覽器)去哪了呢?目前來看是被微軟拿掉了,不過我們還是有辦法把它找回來,來看看具體怎麼做。

 Win10系統下如何運行Modern版IE浏覽器

首先,需要復制一段國外用戶編寫的PowerShell腳本代碼,之後在桌面新建一個文本文檔,然後將其後綴名改為“ps1”;在這個文件上單擊鼠標右鍵,選擇編輯;再把這部分代碼粘貼進去,並點擊“文件”“另存為”保存起來就可以了。

代碼如下:

$code = @"

using System;

using System.Runtime.CompilerServices;

using System.Runtime.InteropServices;

namespace Win8 {

[ComImport, Guid("2e941141-7f97-4756-ba1d-9decde894a3d"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]

interface IApplicationActivationManager

{

IntPtr ActivateApplication([In] String appUserModelId, [In] String arguments, [In] UInt32 options, [Out] out UInt32 processId);

}

[ComImport, Guid("45BA127D-10A8-46EA-8AB7-56EA9078943C")]//Application Activation Manager

public class ApplicationActivationManager : IApplicationActivationManager

{

[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)/*, PreserveSig*/]

public extern IntPtr ActivateApplication([In] String appUserModelId, [In] String arguments, [In] UInt32 options, [Out] out UInt32 processId);

}

}

"@

add-type -TypeDefinition $code

$appman = new-object Win8.ApplicationActivationManager

$appman.ActivateApplication("DefaultBrowser_NOPUBLISHERID!Microsoft.InternetExplorer.Default",$null,0,[ref]0)

最後,在這個文件上單擊鼠標右鍵,在菜單中選擇“使用PowerShell運行”就可以了。

操作完後,看看Modern版本的IE浏覽器有沒有啟動?沒有的話,可能是你沒有將IE浏覽器設為默認浏覽器,設為默認就好了。

Copyright © Windows教程網 All Rights Reserved