当win7系统用户在发布网站的时候,一般会用到IIS来进行发布,那么这时候就需要安装iis服务了,可以在你自己的电脑上配置网站服务器发布到网上,可是有win7 32位系统用户在安装iis的时候,提示“并非所有功能被成功更改”,该如何解决呢?下面随小编一起来看看具体的解决方法吧。
1、运行CMD,进入DOS命令,输入 C:\Windows\Microsoft.NET\Framework\v4.0.30319输入aspnet_regiis -i;
2、如果出错会提示查看安装日志
C:\Documents and Settings\Administrator\AppData\Local\ASPNETSetup_XXXXX.log
3、我的出现了Failure Installing WMI file:aspnet.mof: InstallMOF failed with HRESULT 80004005: '未指定的错误 '、这种情况可能是由于被损坏的wmi库造成的
4、在网上找到一个重建WMI库的批处理
http://blog.csdn.net/xuxc/article/details/2230277
5、把以下代码复制存成.bat文件
net stop winmgmtc:cd %systemroot%/system32/wbemrd /S /Q repository
regsvr32 /s %systemroot%/system32/scecli.dllregsvr32 /s %systemroot%/system32/userenv.dll
mofcomp cimwin32.mofmofcomp cimwin32.mflmofcomp rsop.mofmofcomp rsop.mflfor /f %%s in ('dir /b /s *.dll') do regsvr32 /s %%sfor /f %%s in ('dir /b *.mof') do mofcomp %%sfor /f %%s in ('dir /b *.mfl') do mofcomp %%secho DONE rebootpause
6、运行后重启,重新安装IIS中的ASP,正常运行!
经过上面的方法就可以帮助大家解决Win7系统安装iis提示“并非所有功能被成功更改”这个问题了,有碰到这样情况的用户们可以参照上面的方法步骤来进行解决吧。