search
HomeDatabaseMysql TutorialCould not open key: ***** Verify that you have sufficient ac

安装MSI类型的软件,提示这个错误,很是头疼: 1、找到上面错误提示对应的那个注册表项: 在HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Installer\UserData\ Components 红色Components子键下面哪些序列,就是上面的提示错误子键所在的位置,查找到以后

安装MSI类型的软件,提示这个错误,很是头疼:

Could not open key: ***** Verify that you have sufficient ac

1、找到上面错误提示对应的那个注册表项:

在HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Installer\UserData\Components


红色Components子键下面哪些序列,就是上面的提示错误子键所在的位置,查找到以后,点右键(提示错误不要紧,继续点右键,权限,弹出提示框,点确定继续)



2、权限->高级->所有者->将所有者更改为(选中***\Administrators那一样,点应用,再点确定):



3、点添加->高级->立即查找,在找到的列表中,选中***\Administrators那一行,然后点确定



4、勾选下图所示的位置,然后点应用,确定,至此完成注册表项的权限更改,再次安装就不会提示以上的错误了。

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
SQL中的identity属性是什么意思?SQL中的identity属性是什么意思?Feb 19, 2024 am 11:24 AM

SQL中的Identity是什么,需要具体代码示例在SQL中,Identity是一种用于生成自增数字的特殊数据类型,它常用于唯一标识表中的每一行数据。Identity列通常与主键列配合使用,可以确保每条记录都有一个独一无二的标识符。本文将详细介绍Identity的使用方式以及一些实际的代码示例。Identity的基本使用方式在创建表时,可以使用Identit

SpringBoot怎么监听redis Key变化事件SpringBoot怎么监听redis Key变化事件May 26, 2023 pm 01:55 PM

一、功能概览键空间通知使得客户端可以通过订阅频道或模式,来接收那些以某种方式改动了Rediskey变化的事件。所有修改key键的命令。所有接收到LPUSHkeyvalue[value…]命令的键。db数据库中所有已过期的键。事件通过Redis的订阅与发布功能(pub/sub)来进行分发,因此所有支持订阅与发布功能的客户端都可以在无须做任何修改的情况下,直接使用键空间通知功能。因为Redis目前的订阅与发布功能采取的是发送即忘(fireandforget)策略,所以如果你的程

Unpatchable Yubico two-factor authentication key vulnerability breaks the security of most Yubikey 5, Security Key, and YubiHSM 2FA devicesUnpatchable Yubico two-factor authentication key vulnerability breaks the security of most Yubikey 5, Security Key, and YubiHSM 2FA devicesSep 04, 2024 pm 06:32 PM

An unpatchable Yubico two-factor authentication key vulnerability has broken the security of most Yubikey 5, Security Key, and YubiHSM 2FA devices. The Feitian A22 JavaCard and other devices using Infineon SLB96xx series TPMs are also vulnerable.All

redis批量删除key值的问题怎么解决redis批量删除key值的问题怎么解决May 31, 2023 am 08:59 AM

遇到的问题:在开发过程中,会遇到要批量删除某种规则的key,例如login_logID(ID为变量),现在需要删除"login_log*"这一类的数据,但是redis本身只有批量查询一类key值的命令keys,但是没有批量删除某一个类的命令。解决办法:先查询,在删除,使用xargs传参(xargs可以将管道或标准输入(stdin)数据转换成命令行参数),先执行查询语句,在将查询出来的key值,当初del的参数去删除。redis-cliKEYSkey*(查找条件)|xargsr

OPEN是什么币?OPEN是什么币?Feb 21, 2024 pm 04:31 PM

OPEN是什么币?OPEN是一种采用区块链技术的加密数字货币,旨在为开放式金融网络提供支持和服务。OPEN这个名字不仅代表着其开放性和透明性,也在区块链行业中备受瞩目。OPEN的特点OPEN利用区块链技术实现了去中心化,没有中心化的机构或个人控制其发行和交易。任何人都可以自由参与OPEN的交易和开发。OPEN的交易记录被公开记录在区块链上,这种透明性使得任何人都可以查看和验证交易的真实性,从而提高了交易的安全性和可信度。OPEN采用了先进的区块链技术,确保了交易的快速确认。此外,OPEN的交易费

如何在Java中判断JSONObject是否包含某个键(key)?如何在Java中判断JSONObject是否包含某个键(key)?May 08, 2023 pm 12:25 PM

判断JSONObject是否存在某个KeyJSONObjectjsonObj=newJSONObject();jsonObj.put("version","1.0.0");//版本号jsonObj.put("encoding","UTF-8");//编码方式判断jsonObject是否存在vesion属性jsonObj.has("version");//返回true检查json字符串中是否存在该k

Redis批量删除key的命令怎么使用Redis批量删除key的命令怎么使用May 26, 2023 pm 05:09 PM

redis中没有直接根据正则表达式删除key的命令,只有delkey1key2...命令但是redis中有通过正则表达式获取key的命令:keys"正则表达式"可以借助于xargs命令实现批量删除key,把查出来的key值当做参数传给delredis-clikeys"mailspec*"|xargsdel完整命令:[root@localhostredis7001]#redis-cli-h192.169.1.71-p7001-a123456keysem*|x

redis怎么获取所有keyredis怎么获取所有keyMay 28, 2023 pm 03:40 PM

keys:全量遍历键,用来列出所有满足特定正则字符串规则的key,假设redis此时正在生产环境下,使用该命令就会造成隐患,当redis数据量比较大时:keys会一次性返回所有符合条件的key,所以会造成redis的卡顿。SCAN是一个基于游标的迭代器,需要基于上一次的游标延续之前的迭代过程。SCAN以0作为游标,开始一次新的迭代,直到命令返回游标0完成一次遍历。此命令并不保证每次执行都返回某个给定数量的元素,甚至会返回0个元素,但只要游标不是0,程序都不会认为SCAN命令结束,但是返回的元素数

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function