zoukankan      html  css  js  c++  java
  • Vivado的安装程序没反应怎么办

    在Windows操作系统上,在安装Vivado的时候会遇到双击xsetup.exe没有反应的情况,即使是用管理员权限再加上设置兼容模式也没有任何效果,且此问题有可能在多个版本上都存在,包括最新的2016.02。
    打开解压后的Vivado安装包的bin目录下,可以看到xsetup.exe本质上是调用xsetup.bat (个别版本是xsetup2.bat)这个批处理文件。
    接下来我们可以尝试用管理员模式运行命令行启动程序cmd.exe,切换到bin目录再运行xsetup.bat,此时会发现提示“Administrative permissions are not available. Please restart the command line shell as Administrator.”可是我们已经明明使用了管理员权限来运行安装程序了啊?
    这个有可能是因为未知的微软系统权限原因(或者与未知的软件冲突),此时我们只要先备份xsetup.bat,然后用记事本打开xsetup.bat,找到如下代码:

    把这几行代码全部删除,然后保存xsetup.bat并关闭,再在xsetup.bat上点击右键选择管理员权限运行就可
    %SYSTEMROOT%System32
    et session >nul 2>&1
    if NOT %errorLevel% == 0 (
    echo ERROR: Administrative permissions are not available. Please restart the command line shell as Administrator.
    set EXITCODE=1
    goto :end
    )

    启动Vivado的安装了。
    转载请保留原文链接及作者
    本文标题:
    文章作者: LepeCoder
    发布时间:
    原始链接:
  • 相关阅读:
    PHP多条件模糊查询
    纯干货!一款APP从设计稿到切图过程全方位揭秘(转)
    0532. K-diff Pairs in an Array (M)
    0933. Number of Recent Calls (E)
    0139. Word Break (M)
    0713. Subarray Product Less Than K (M)
    0399. Evaluate Division (M)
    0495. Teemo Attacking (M)
    0179. Largest Number (M)
    0389. Find the Difference (E)
  • 原文地址:https://www.cnblogs.com/lepeCoder/p/7230563.html
Copyright © 2011-2022 走看看