系统:windows 2012 R2 Datacenter版
打开IE提示错误:无法使用内置管理员帐户打开Internet Explorer。请使用其他帐户登录,然后再试一次。
解决办法:
1.打开控制面板,依次选择“网络和internet”,
2.打开“internet 选项”,
3.选择“程序”,勾选“IE磁贴用于打开桌面上的Internet Explorer”。
simple-local-avatars
domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init
action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /www/wwwroot/tangjiankang.top/wp-includes/functions.php on line 6121系统:windows 2012 R2 Datacenter版
打开IE提示错误:无法使用内置管理员帐户打开Internet Explorer。请使用其他帐户登录,然后再试一次。
解决办法:
1.打开控制面板,依次选择“网络和internet”,
2.打开“internet 选项”,
3.选择“程序”,勾选“IE磁贴用于打开桌面上的Internet Explorer”。
查看wim文件中包含几个安装版本:
dism /get-wiminfo /wimfile:D:\install.wim
选择需要加载驱动的版本号:
dism /mount-wim /wimfile:D:\install.wim /index:3 /mountdir:D:\temp
导入驱动:
dism /image:D:\temp /add-driver /driver:D:\win08r2 /recurse /forceunsigned
写入install.wim:
dism /unmount-wim /mountdir:D:\temp /commit
打补丁:
dism /image:D:\temp /add-package /packagepath:D:\windowupload2008
替换原版install.wim/boot.wim文件即可生成新的iso文件
(清理失败的挂载:Dism /Cleanup-Wim)
ps:需要用“管理员”身份打开命令提示符
D:\temp为提取iso中windows对应的.wim存放位置
D:\win08r2为驱动存放位置
D:\windowupload2008为补丁存放位置