今天在用vs打开以前老代码的时候报如下问题,无法打开工程了,从提示来不大可能是因为vs的版本引起的,本身我用的是最新版的vs. 网上查了下解决方法如下:找到你电脑中的如下路径"C:\Windows\System32\inetsrv",双击该文件夹里的文件夹的时候会弹出如下对话框点击continue即可,所有的文件夹都点下如果能正常打开就ok,如果也弹下图中的提示那点击continue即可. 完成以上操作后再去打开工程就正常,那或者不做以上操作以管理员身份点开工程文件也可以,只是上述的方…
这几天重装系统,装了win10,居然用vs2013打开项目出现下面这个提示错误,搞了很久才知道原因: Even though I am an administrator on the machine, Visual Studio is not running as administrator so it does not have permission to the IIS metabase files.  One solution is to run Visual Studio as admi…
https://stackoverflow.com/questions/12859891/error-unable-to-access-the-iis-metabase 解决方法1 On Windows 8 Pro: %systemroot%\inetsrv\config On Windows 7 and 8.1 and 10 %systemroot%\System32\inetsrv\config (Where %systemroot% is usually C:\Windows) Navig…
原因:IIS没有注册解决办法:在CMD中进入目录C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727,运行aspnet_regiis1.aspnet_regiis -ga administrator(administrator为当前用户)2.aspnet_regiis -i (注册IIS)3.iisreset /noforce (重启IIS)操作详细: C:\Documents and Settings\Administrator>cd c:\\window…
paip.解决问题Unable to access jarfile E:\resin-4.0.22\lib\resin.jar 作者Attilax  艾龙,  EMAIL:1466519819@qq.com 来源:attilax的专栏 地址:http://blog.csdn.net/attilax 执行指令 set resin_home=E:\resin-4.0.22 echo  %resin_home% E:\resin-4.0.22\resin.exe 提示Unable to access…
SourceTree不出现用户登录窗口,提示错误fatal: unable to access'...'; error setting certificate verify locations; ...\Git\mingw64\libexec\ssl\certs 去查看这个这个目录下的文件是否存在,不存在则放到对应的地方即可.…
使用github出了些问题?fatal: unable to access;Failed connect to github.com:8087; No error 我今天使用git push origin master的时候,提示我fatal: unable to access 'https://XXXX@github.com/XXX/XXX' Failed connect to github.com:8087; No error在谷歌上查了很多办法都没有解决,有的方法是https连接模式改成s…
Jmeter是纯Java开发的, 能够运行Java程序的系统一般都可以运行Jmeter, 如:Windows. Linux. mac等. 由于是由Java开发,所以自然需要jdk环境. Windows下安装步骤如下: 第一步: 安装JDK, 必须JDK1.7以上, 推荐1.8版本 jdk下载地址:http://www.oracle.com/technetwork/java/javase/downloads/index.html JDK一键安装,无需多讲,默认安装路径即可 环境配置:计算机>属性>…
Error msg: $ git push remote: Permission to xxx/Code.git denied to xxxxxx. fatal: unable to access 'https://github.com/xxx/Code.git/': The requested URL returned error: 403 原因: 账号切换, git安全机制导致 解决: git remote set-url origin git@github.com:用户名/仓库名.git…
在cmd中运行java -jar xxx.jar出现如下错误: Error: Unable to access xxx.jar 解决方法: 使用绝对路径:java -jar D:\Program Files (x86)\xxx.jar 此时依然报错: Error: Unable to access jarfile D:\Program 添加双引号:java -jar "D:\Program Files (x86)\xxx.jar"…