打开解压后的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的安装了。