运行对话框 显示运行对话框内保存的命令历史的vbs
人气:0想了解显示运行对话框内保存的命令历史的vbs的相关内容吗,在本文为您仔细讲解运行对话框的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:运行对话框,命令历史,vbs,下面大家一起来学习吧。
复制代码 代码如下:
Const HKEY_CURRENT_USER = &H80000001
strComputer = "."
Set objRegistry = GetObject("winmgmts:\\" & strComputer & "\root\default:StdRegProv")
strKeyPath = "Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU"
objRegistry.EnumValues HKEY_CURRENT_USER, strKeyPath, arrValueNames, arrValueTypes
For Each strValue in arrValueNames
If Len(strValue) = 1 Then
objRegistry.GetStringValue HKEY_CURRENT_USER,strKeyPath,strValue,strRunCommand
intLength = Len(strRunCommand)
strRunCommand = Left(strRunCommand, intLength - 2)
Wscript.Echo strRunCommand
End If
Next
加载全部内容