在控制面板的程序和功能中手动添加exe
Manually add an exe to Programs and Features in control panel
我目前正在开发一个用 Microsoft Visual Basic 编写的程序。我为它制作了一个自定义安装程序,但是,它没有向程序和功能列表中添加任何内容。
我试图弄清楚我需要使用 regedit 手动编辑哪些键,这样我就知道我需要添加到代码中的内容。
您需要在Software\Microsoft\Windows\CurrentVersion\Uninstall\YourAppnameOrGuid
下写入值
DisplayName
和 UninstallString
是必需的,the others are optional.
我目前正在开发一个用 Microsoft Visual Basic 编写的程序。我为它制作了一个自定义安装程序,但是,它没有向程序和功能列表中添加任何内容。
我试图弄清楚我需要使用 regedit 手动编辑哪些键,这样我就知道我需要添加到代码中的内容。
您需要在Software\Microsoft\Windows\CurrentVersion\Uninstall\YourAppnameOrGuid
DisplayName
和 UninstallString
是必需的,the others are optional.