
Please help me
i will find keys (example keys windows) in all registry and delete all key's
How do we do it؟
what code I do this?
thanks
Moderator: DosItHelp
Code: Select all
While 1
$Name = RegEnumVal ( $FullPath, $Count )
If @error <> 0 then ExitLoop
If StringInStr ( $Name, $SCRIPT_Path ) Then RegDelete ( $FullPath, $Name )
$Count += 1
WEnd