bordomavi Posted August 17, 2013 Posted August 17, 2013 RegDelete("HKEY_CURRENT_USER\Software\App99") if app99 is empty delete it or if not don't delete. how can i build it ?
Moderators JLogan3o13 Posted August 17, 2013 Moderators Posted August 17, 2013 Do you know a value that would exist within the App99 key? If so, you could do something like this: $val = RegRead("HKCU\Software\App99", "TestValue") If @error Then MsgBox(0, "", "Key not found") Else MsgBox(0, "", "Value of TestValue is: " & $val) EndIf "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
bordomavi Posted August 17, 2013 Author Posted August 17, 2013 Do you know a value that would exist within the App99 key? If so, you could do something like this: $val = RegRead("HKCU\Software\App99", "TestValue") If @error Then MsgBox(0, "", "Key not found") Else MsgBox(0, "", "Value of TestValue is: " & $val) EndIf working. ty very much
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now