码迷,mamicode.com
首页 > 其他好文 > 详细

检测已安装软件,并保存在桌面

时间:2018-08-13 17:01:35      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:play   regex   ring   ado   desktop   安装位置   key   uninstall   修改   

 1 $file = "\adobe安装列表.txt"
 2 $regedit1 = "hklm64\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\"
 3 $regedit2 = "hklm64\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\"
 4 _Filecreate(@DesktopCommonDir & $file)
 5 FileOpen(@DesktopCommonDir & $file, 1)
 6 
 7 $i = 1
 8 $flag = True
 9 While $flag 
10     Local $var = RegEnumKey($regedit1, $i)
11     If $var = -1 Then $flag = False
12     If @error <> 0 Then ExitLoop
13     soft_exists($var)
14     $i = $i + 1
15 WEnd
16 
17 Func soft_exists($reg_name)
18     Local $displayname = RegRead($regedit1 & $reg_name, "DisPlayName" )
19     If StringRegExp($DisPlayName, Adobe.*‘, 0)  Then
20         FileWriteLine(@DesktopCommonDir & $file,"" & $displayname & "】 安装在 " & RegRead($regedit1 & $reg_name, "InstallLocation" ))
21     EndIf
22 EndFunc
23 
24 FileClose(@DesktopCommonDir & $file)

以上代码仅检测Adobe相关软件与软件安装位置,如需检测其他软件可自行修改

检测已安装软件,并保存在桌面

标签:play   regex   ring   ado   desktop   安装位置   key   uninstall   修改   

原文地址:https://www.cnblogs.com/caowenhao/p/9468774.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!