Advertisement
2_2002-2004 Registry #129878

Bypass the Screensaver password

When compiled this code makes a change in the registry to make the screensaver NOT use a password

AI

KI-Zusammenfassung: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Quellcode
original-source
uses registry;
procedure TForm1.Create;
Var
	Reg:=Tresitry.Create;
	Reg.Rootkey:=HKEY_CURRENT_USER;
	If Reg.Openkey('Control Panel\Desktop', True);
	Then
		Reg.WriteBool('ScreenSaveUsePassword', False);
		Reg.Free;
	Halt;
end;

Upload
Upload
Originalkommentare (3)
Wiederhergestellt von der Wayback Machine