Markir 0 Posted February 25, 2005 Hello together, how one can select Registry key, I know and can these on process. Now a question to a somewhat more complex topic: Is it to be scanned possible, if into the Registry Key under the following key "HKEY_LOCAL_MACHINE\SOFTWARE\PP COM\MRS\IsdnApl\Protocols" are several "Ordner" like "01, 02, 03... 20", these successively for a certain value and be handed over then to an input field? For example: I want to search for the value "Xpressions-PhoneMail-Skript", if this will be found, then read out the following key "da=397 ga=398 ca=399 -officepro tbd=120". I hope that is possible and understandably! Thank you for helping! Share this post Link to post Share on other sites
Andre 0 Posted February 25, 2005 RegenumKey ? What about Windows without using AutoIt ?It would be the same as driving a car without an steering Wheel! Share this post Link to post Share on other sites
Markir 0 Posted February 25, 2005 Hm okay,here is a screenshot of the registry:ScreenshotIf the value "Description" = "Xpressions-PhoneMail-Skript" thenread the value "ParamBlock".The value "ParamBlock" can also been in the "Ordner" 01 or "02" and so on. Share this post Link to post Share on other sites
Andre 0 Posted February 25, 2005 how many paramblocks are there ? Fixed ? andre What about Windows without using AutoIt ?It would be the same as driving a car without an steering Wheel! Share this post Link to post Share on other sites
Markir 0 Posted February 26, 2005 Ok, thanks, another question: I want to have the code, so: If the Description value = "Xpressions-PhoneMail-Skript", then Messagebox "Yes" and the code should be ending, else the code should be search so long, until this script find "Xpressions-PhoneMail-Skript". Can you help me? $i = 1 While 1 $key = RegEnumKey("HKLM\SOFTWARE\PP-COM\MRS\IsdnApl\Protocols",$i) If @error Then ExitLoop $str = RegRead("HKLM\SOFTWARE\PP-COM\MRS\IsdnApl\Protocols\" & $key,"Description") MsgBox(4096,"",$str) $i = $i + 1 If $str = ("Xpressions-PhoneMail-Skript") Then Msgbox(0,"Hallo Welt","Dies ist der richtige Key") EndIf WEnd Share this post Link to post Share on other sites
Markir 0 Posted February 27, 2005 @Larry Has you any idea? Share this post Link to post Share on other sites