-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScreenLockBuilderPremium.html
More file actions
1001 lines (925 loc) · 57.1 KB
/
Copy pathScreenLockBuilderPremium.html
File metadata and controls
1001 lines (925 loc) · 57.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" itemscope itemtype="https://schema.org/WebPage">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Screen Lock Builder Premium: Screen Lock for Windows PC</title>
<meta name="description"
content="Premium screenlocker for Windows PC, Save/Load configs, folder lock, website blocking, scheduled auto-start, UI themes, AES-256-GCM encryption. Professional screen lock software.">
<meta name="author" content="OffCrypt">
<meta name="last-modified" content="2026-07-19">
<meta name="keywords"
content="windows screen lock premium, screen locker for windows premium, screenlocker, screen locker for pc, pc screen locker, screen lock for windows pc, advanced windows lock, folder lock windows, website blocker, scheduled lock screen, professional screen lock, windows security tool, screen lock builder premium, custom windows locker">
<meta name="robots" content="index, follow">
<meta property="og:type" content="website">
<meta property="og:locale" content="en_US">
<meta property="og:url" content="https://www.dev-offcode.com/ScreenLockBuilderPremium.html">
<meta property="og:title" content="Screen Lock Builder Premium: Screen Lock for Windows PC">
<meta property="og:description"
content="Premium screenlocker for Windows PC with advanced features - Save/Load configs, folder lock, website blocking, scheduled auto-start, UI themes, AES-256-GCM encryption.">
<meta property="og:image" content="https://www.dev-offcode.com/Premium1.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="Premium screen lock Windows builder interface">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@OffCryptAndroid">
<meta name="twitter:creator" content="@OffCryptAndroid">
<meta name="twitter:url" content="https://www.dev-offcode.com/ScreenLockBuilderPremium.html">
<meta name="twitter:title" content="Screen Lock Builder Premium: Screen Lock for Windows PC">
<meta name="twitter:description"
content="Premium screenlocker for Windows PC with Save/Load configs, folder lock, website blocking, UI themes, and AES-256-GCM encryption.">
<meta name="twitter:image" content="https://www.dev-offcode.com/Premium1.png">
<!-- Social Media Links -->
<meta property="og:see_also" content="https://www.instagram.com/off.crypt86/">
<meta property="og:see_also" content="https://www.youtube.com/@OffCrypt">
<meta name="instagram:site" content="@off.crypt86">
<meta name="youtube:channel" content="@OffCrypt">
<link rel="canonical" href="https://www.dev-offcode.com/ScreenLockBuilderPremium.html">
<link rel="alternate" hreflang="en" href="https://www.dev-offcode.com/ScreenLockBuilderPremium.html">
<link rel="alternate" hreflang="x-default" href="https://www.dev-offcode.com/ScreenLockBuilderPremium.html">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<!-- Preload critical resources -->
<link rel="preload" href="styles.css?v=2.8.0" as="style">
<link rel="preload" href="gallery-simple.css?v=2.8.0" as="style">
<link rel="preload" href="Premium1.png" as="image">
<!-- Core Web Vitals optimization -->
<meta name="theme-color" content="#00ff88">
<meta name="msapplication-TileColor" content="#00ff88">
<!-- Security Headers -->
<!-- Structured Data Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Windows Screen Lock Builder Premium",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Windows",
"description": "Windows screen lock utility (screen locker for Windows) to generate portable .exe files that lock user screens with custom messages, AES-256-GCM encryption, and advanced security features",
"url": "https://www.dev-offcode.com/ScreenLockBuilderPremium.html",
"image": "https://www.dev-offcode.com/Premium1.png",
"screenshot": [
"https://www.dev-offcode.com/Premium1.png",
"https://www.dev-offcode.com/PremiumLockFiles.png",
"https://www.dev-offcode.com/PremiumSelect.png",
"https://www.dev-offcode.com/PremiumSettings.png",
"https://www.dev-offcode.com/PremiumConfigs.png",
"https://www.dev-offcode.com/PremiumTheme.png"
],
"offers": {
"@type": "Offer",
"price": "55",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock"
},
"downloadUrl": "https://www.dev-offcode.com/ScreenLockBuilderPremium.html",
"inLanguage": ["en"],
"author": {
"@type": "Person",
"@id": "https://www.dev-offcode.com/#author",
"name": "EmptyCode0x86",
"url": "https://www.dev-offcode.com",
"sameAs": [
"https://twitter.com/OffCryptAndroid",
"https://www.instagram.com/off.crypt86/",
"https://www.youtube.com/@OffCrypt",
"https://github.com/emptycode0x86",
"https://bsky.app/profile/off-crypt86.bsky.social",
"https://www.linkedin.com/in/off-crypt-b94175382/"
]
},
"publisher": {
"@type": "Organization",
"@id": "https://www.dev-offcode.com/#organization",
"name": "OffCrypt",
"url": "https://www.dev-offcode.com",
"logo": {
"@type": "ImageObject",
"url": "https://www.dev-offcode.com/Premium1.png"
},
"sameAs": [
"https://twitter.com/OffCryptAndroid",
"https://www.instagram.com/off.crypt86/",
"https://www.youtube.com/@OffCrypt",
"https://bsky.app/profile/off-crypt86.bsky.social",
"https://www.linkedin.com/in/off-crypt-b94175382/"
]
},
"softwareVersion": "2.1",
"releaseNotes": "Modernized version with AES-256-GCM encryption and advanced features",
"datePublished": "2025-01-01",
"dateModified": "2025-11-06"
}
</script>
<!-- Breadcrumbs Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://www.dev-offcode.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Windows Screen Lock Builder Premium",
"item": "https://www.dev-offcode.com/ScreenLockBuilderPremium.html"
}
]
}
</script>
<!-- FAQ Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Is this software safe to use?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes! Screen Lock Builder uses AES-256-GCM encryption to protect your password."
}
},
{
"@type": "Question",
"name": "Will this work on my Windows version?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Screen Lock Builder works on Windows 7, 8, 10, and 11. The generated .exe files are portable and don't require installation on the target computer."
}
},
{
"@type": "Question",
"name": "What happens if I forget my password?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Unfortunately, if you forget your password, there's no way to recover it due to the strong encryption. We recommend writing down your password in a secure location or using a password manager."
}
},
{
"@type": "Question",
"name": "Is the generated .exe file detectable by antivirus?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Some antivirus programs may flag the .exe file as suspicious due to its screen locking behavior. This is normal for security software. You can add an exception or whitelist the file if needed."
}
},
{
"@type": "Question",
"name": "How do I create a Windows screen lock with a custom message?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Open Windows Screen Lock Builder, add your custom message, set a password, and click Build to generate a portable screen locker for Windows."
}
}
]
}
</script>
<!-- HowTo Schema for Windows Screen Lock -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "HowTo",
"name": "How to create a Windows screen lock with a custom message",
"description": "Use Windows Screen Lock Builder to create a portable screen locker for Windows with your own message and password.",
"step": [
{"@type": "HowToStep", "name": "Open the builder", "text": "Download and open Windows Screen Lock Builder."},
{"@type": "HowToStep", "name": "Write the message", "text": "Enter your custom lock screen message."},
{"@type": "HowToStep", "name": "Set password", "text": "Choose a strong password (AES-256-GCM protected)."},
{"@type": "HowToStep", "name": "Choose options", "text": "Optionally enable Task Manager disable, auto-start, or auto-close timer."},
{"@type": "HowToStep", "name": "Build the .exe", "text": "Click Build to generate your Windows screen lock executable."}
]
}
</script>
<!-- Video Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Windows Screen Lock Builder - Free Version Demo",
"description": "Watch how Windows Screen Lock Builder works (Free version) - demonstration of creating custom screen lock executables for Windows.",
"thumbnailUrl": "https://img.youtube.com/vi/bHJDuHsxq3w/maxresdefault.jpg",
"uploadDate": "2024-01-01",
"embedUrl": "https://www.youtube.com/embed/bHJDuHsxq3w",
"contentUrl": "https://www.youtube.com/watch?v=bHJDuHsxq3w"
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Windows Screen Lock Builder Premium - Website Lock Feature",
"description": "Premium version website lock feature showcase - demonstrates blocking access to specific websites using the Premium Windows screen lock builder.",
"thumbnailUrl": "https://img.youtube.com/vi/FGmIlO_DfKI/maxresdefault.jpg",
"uploadDate": "2024-01-01",
"embedUrl": "https://www.youtube.com/embed/FGmIlO_DfKI",
"contentUrl": "https://www.youtube.com/watch?v=FGmIlO_DfKI"
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Windows Screen Lock Builder Premium - Folder Lock Feature",
"description": "Premium version folder lock feature showcase - demonstrates protecting folders and files with password protection using the Premium Windows screen lock builder.",
"thumbnailUrl": "https://img.youtube.com/vi/OeFw8-4aOaA/maxresdefault.jpg",
"uploadDate": "2024-01-01",
"embedUrl": "https://www.youtube.com/embed/OeFw8-4aOaA",
"contentUrl": "https://www.youtube.com/watch?v=OeFw8-4aOaA"
}
</script>
<link rel="stylesheet" href="styles.css?v=2.8.0">
<link rel="stylesheet" href="gallery-simple.css?v=2.8.0">
</head>
<body>
<!-- Sidebar Navigation -->
<aside class="sidebar">
<div class="sidebar-header">
<div class="sidebar-title">OffCode</div>
</div>
<nav class="sidebar-nav">
<ul class="sidebar-menu">
<li class="menu-item">
<a href="index.html" class="menu-link">
<span class="menu-icon">📱</span>
<span class="menu-text">Android App</span>
</a>
</li>
<li class="menu-item">
<a href="OffCryptDesktop.html" class="menu-link">
<span class="menu-icon">💻</span>
<span class="menu-text">Desktop App</span>
</a>
</li>
<li class="menu-item">
<a href="ScreenLockBuilder.html" class="menu-link">
<span class="menu-icon">🔒</span>
<span class="menu-text">Screen Lock Builder</span>
</a>
</li>
<li class="menu-item active">
<a href="ScreenLockBuilderPremium.html" class="menu-link">
<span class="menu-icon">⭐</span>
<span class="menu-text">Premium Builder</span>
</a>
</li>
<li class="menu-item">
<a href="AutomationTool.html" class="menu-link">
<span class="menu-icon">🤖</span>
<span class="menu-text">Automation Tool</span>
</a>
</li>
<li class="menu-item">
<a href="RemoteControl.html" class="menu-link">
<span class="menu-icon">🌐</span>
<span class="menu-text">Web Remote Control</span>
</a>
</li>
<li class="menu-item">
<a href="TorChatPage.html" class="menu-link">
<span class="menu-icon">🧅</span>
<span class="menu-text">Tor Chat</span>
</a>
</li>
<li class="menu-item">
<a href="https://ko-fi.com/emptyc0de" class="menu-link" target="_blank" rel="noopener noreferrer">
<span class="menu-icon">💝</span>
<span class="menu-text">Donate</span>
</a>
</li>
<li class="menu-item">
<a href="PrivacyPolicy.html" class="menu-link">
<span class="menu-icon">🔐</span>
<span class="menu-text">Privacy Policy</span>
</a>
</li>
</ul>
</nav>
<div class="sidebar-footer">
<p class="footer-text">Social media</p>
<div class="sidebar-social-divider"></div>
<div class="sidebar-social">
<a href="https://x.com/OffCryptAndroid" target="_blank" rel="noopener noreferrer"
aria-label="Follow OffCrypt on X">
<span class="sidebar-social-icon">🐦</span>
<span class="sidebar-social-label">X</span>
</a>
<a href="https://www.instagram.com/off.crypt86/" target="_blank" rel="noopener noreferrer"
aria-label="Follow OffCrypt on Instagram">
<span class="sidebar-social-icon">📸</span>
<span class="sidebar-social-label">Instagram</span>
</a>
<a href="https://www.tiktok.com/@offcrypt0" target="_blank" rel="noopener noreferrer"
aria-label="Follow OffCrypt on TikTok">
<span class="sidebar-social-icon">🎵</span>
<span class="sidebar-social-label">TikTok</span>
</a>
<a href="https://www.youtube.com/@OffCrypt" target="_blank" rel="noopener noreferrer"
aria-label="Follow OffCrypt on YouTube">
<span class="sidebar-social-icon">▶️</span>
<span class="sidebar-social-label">YouTube</span>
</a>
<a href="https://bsky.app/profile/off-crypt86.bsky.social" target="_blank" rel="noopener noreferrer"
aria-label="Follow OffCrypt on Bluesky">
<span class="sidebar-social-icon">🦋</span>
<span class="sidebar-social-label">Bluesky</span>
</a>
<a href="https://www.linkedin.com/in/off-crypt-b94175382/" target="_blank" rel="noopener noreferrer"
aria-label="Follow OffCrypt on LinkedIn">
<span class="sidebar-social-icon">💼</span>
<span class="sidebar-social-label">LinkedIn</span>
</a>
</div>
</div>
</aside>
<!-- Mobile Menu Toggle -->
<button class="mobile-menu-toggle" aria-label="Toggle Menu">
<span class="hamburger"></span>
</button>
<!-- Main Content Wrapper -->
<div class="main-wrapper">
<main>
<!-- App Description Section -->
<section class="intro-section">
<div class="intro-container">
<div class="intro-content">
<!-- Hero Header -->
<h1 class="hero-title">⭐ Screen Lock Builder</h1>
<p class="hero-subtitle">Screen Lock for Windows PC: Premium version</p>
<div class="hero-glow-divider"></div>
<p class="intro-description lead-text"><strong>Windows Screen Lock Builder Premium</strong>: an advanced screen lock for Windows PC with extra controls for day-to-day security.
This premium screenlocker for Windows creates portable executables with
folder protection, website blocking, program locking, and
scheduled startup. If you need a stronger screen lock for a Windows PC, this edition adds
the extras the free builder leaves out.</p>
<p class="intro-description">
Useful for families who want to limit computer time, small offices, or anyone managing a few
workstations. Whether you need to lock a Windows screen for parental control, a shared PC,
or a public terminal, the Premium build covers those cases without extra complexity.
</p>
<p class="intro-description">
The built-in blacklist protection (148+ words, 38 regex patterns) ensures that malicious
ransomware-style messages cannot be used, making it a safe and responsible tool for
legitimate screen locking purposes.
</p>
<p class="intro-description">
<strong>Premium Edition</strong> extends the core functionality with advanced features: save
and load your configurations for easy deployment, lock folders and programs, block specific
websites, schedule automatic startup, customize the UI with themes, protect the builder
itself with a password, remove branding, and receive all future updates.
</p>
<p class="intro-description">
This is a very old project. I originally built the first version back in 2015. I've decided
to revive it and completely modernize it.
</p>
<div class="intro-highlights">
<div class="highlight-item">
<span class="highlight-icon">💾</span>
<span class="highlight-text">Save/Load Configurations</span>
</div>
<div class="highlight-item">
<span class="highlight-icon">📁</span>
<span class="highlight-text">Folder Lock</span>
</div>
<div class="highlight-item">
<span class="highlight-icon">🔒</span>
<span class="highlight-text">Program Lock</span>
</div>
<div class="highlight-item">
<span class="highlight-icon">🌐</span>
<span class="highlight-text">Website Blocking</span>
</div>
<div class="highlight-item">
<span class="highlight-icon">⏰</span>
<span class="highlight-text">Scheduled Auto Start</span>
</div>
<div class="highlight-item">
<span class="highlight-icon">🎨</span>
<span class="highlight-text">UI Themes & Customization</span>
</div>
<div class="highlight-item">
<span class="highlight-icon">✨</span>
<span class="highlight-text">No Branding + All Updates</span>
</div>
<div class="highlight-item">
<span class="highlight-icon">🔑</span>
<span class="highlight-text">AES-256-GCM Encryption</span>
</div>
</div>
</div>
</section>
<!-- Modern Horizontal Scrolling Gallery -->
<section id="pictures" class="image-gallery-container">
<div class="gallery-header">
<h2 class="gallery-title" style="color: white;">💻 Screenshots</h2>
<p class="gallery-subtitle">Explore the Screen Lock Builder interface • <span class="scroll-hint">👈
Scroll horizontally</span></p>
</div>
<div class="image-gallery">
<div class="image-card featured" data-image="Premium1.png"
data-title="Windows Screen Lock Builder Interface"
data-desc="Main interface showing message customization and settings">
<img src="Premium1.png"
alt="Premium screen lock Windows builder - advanced interface with folder lock, website blocking, and custom themes">
<div class="image-overlay">
<div class="zoom-icon">🔍</div>
</div>
</div>
<div class="image-card" data-image="LockScreen.png" data-title="Locked Screen Example"
data-desc="Example of locked Windows screen with custom message">
<img src="LockScreen.png"
alt="Screen lock Windows premium in action - locked screen with AES-256 encryption and custom branding">
<div class="image-overlay">
<div class="zoom-icon">🔍</div>
</div>
</div>
<div class="image-card" data-image="PremiumLockFiles.png"
data-title="Lock programs & folders & websites" data-desc="Lock programs & folders & websites">
<img src="PremiumLockFiles.png"
alt="Premium Windows screen lock - lock programs, folders, and websites for complete security control">
<div class="image-overlay">
<div class="zoom-icon">🔍</div>
</div>
</div>
<div class="image-card" data-image="PremiumSelect.png"
data-title="Select files & folders & websites to lock"
data-desc="Select files & folders & websites to lock">
<img src="PremiumSelect.png"
alt="Windows screen lock premium - select and manage files, folders, and websites to block">
<div class="image-overlay">
<div class="zoom-icon">🔍</div>
</div>
</div>
<div class="image-card" data-image="PremiumSettings.png" data-title="Builder settings"
data-desc="Builder settings">
<img src="PremiumSettings.png"
alt="Screen lock Windows premium settings - configure advanced security options and automation">
<div class="image-overlay">
<div class="zoom-icon">🔍</div>
</div>
</div>
<div class="image-card" data-image="PremiumTheme.png" data-title="Builder colors"
data-desc="Builder colors">
<img src="PremiumTheme.png"
alt="Windows screen locker premium - customize UI themes and colors for branded screen lock">
<div class="image-overlay">
<div class="zoom-icon">🔍</div>
</div>
</div>
<div class="image-card" data-image="PremiumConfigs.png" data-title="Save/load configs"
data-desc="Save/load configs">
<img src="PremiumConfigs.png"
alt="Screen lock Windows premium - save and load configurations for easy deployment">
<div class="image-overlay">
<div class="zoom-icon">🔍</div>
</div>
</div>
<div class="image-card" data-image="youtube-demo" data-title="Demo Video"
data-desc="Watch how Windows Screen Lock Builder works ( Free version )">
<div
style="position: relative; width: 100%; height: 280px; border-radius: 12px; overflow: hidden; background: #1a1a1a;">
<iframe src="https://www.youtube.com/embed/bHJDuHsxq3w"
style="width: 100%; height: 100%; border: none;"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="image-overlay">
<div class="zoom-icon">▶️</div>
</div>
</div>
<div class="image-card" data-image="youtube-demo" data-title="Demo Video"
data-desc="Premium version website lock feature showcase">
<div
style="position: relative; width: 100%; height: 280px; border-radius: 12px; overflow: hidden; background: #1a1a1a;">
<iframe src="https://www.youtube.com/embed/FGmIlO_DfKI"
style="width: 100%; height: 100%; border: none;"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="image-overlay">
<div class="zoom-icon">▶️</div>
</div>
</div>
<div class="image-card" data-image="youtube-demo" data-title="Demo Video"
data-desc="Premium version folder lock feature showcase">
<div
style="position: relative; width: 100%; height: 280px; border-radius: 12px; overflow: hidden; background: #1a1a1a;">
<iframe src="https://www.youtube.com/embed/OeFw8-4aOaA"
style="width: 100%; height: 100%; border: none;"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="image-overlay">
<div class="zoom-icon">▶️</div>
</div>
</div>
</div>
</section>
<!-- Custom Image Modal -->
<div id="imageModal" class="image-modal">
<div class="modal-content">
<span class="close">×</span>
<img id="modalImage" src="" alt="">
<div class="modal-info">
<h3 id="modalTitle"></h3>
<p id="modalDesc"></p>
</div>
</div>
</div>
<!-- Modern Section Divider -->
<div class="section-divider"></div>
<!-- Features Section -->
<section id="features" class="features-section">
<div class="features-container">
<h2 class="features-title">Screen Lock Builder Features</h2>
<p class="features-subtitle">Screen locking capabilities</p>
<div class="features-grid">
<!-- Core Functionality -->
<div class="feature-card">
<div class="feature-icon">💻</div>
<h3>Core Functionality</h3>
<p>Essential screen locking features</p>
<ul class="feature-list">
<li>🔒 Creates portable .exe files</li>
<li>🖥️ Locks user's screen</li>
<li>✏️ Customizable lock message</li>
<li>📝 Custom executable name</li>
</ul>
</div>
<!-- Security & Protection -->
<div class="feature-card">
<div class="feature-icon">🔐</div>
<h3>Security & Protection</h3>
<p>Advanced security mechanisms</p>
<ul class="feature-list">
<li>🔐 AES-256-GCM encryption</li>
<li>🛡️ Blacklist protection (148+ words)</li>
<li>🔍 38 regex patterns</li>
<li>🚫 Ransomware prevention</li>
<li>🚫 Disable Task Manager</li>
<li>⌨️ Block Command Prompt</li>
</ul>
</div>
<!-- Automation Features -->
<div class="feature-card">
<div class="feature-icon">⚙️</div>
<h3>Automation Features</h3>
<p>Smart automation tools</p>
<ul class="feature-list">
<li>🚀 Auto-startup capability</li>
<li>⏰ Scheduled Auto-close</li>
<li>📅 Configurable date/time</li>
<li>🔄 System boot integration</li>
</ul>
</div>
<!-- Premium Features -->
<div class="feature-card">
<div class="feature-icon">⭐</div>
<h3>Premium Features</h3>
<p>Advanced capabilities exclusive to Premium</p>
<ul class="feature-list">
<li>📁 Folder Locker feature</li>
<li>💻 Program Locker feature</li>
<li>🌐 Website blocking</li>
<li>🎨 UI themes & customization</li>
<li>🔒 Builder program lock</li>
<li>💾 Config System - Save/Load</li>
<li>📅 Scheduled Auto Start</li>
<li>✨ No Dev-offcode branding (Lock screen)</li>
<li>🚀 All future updates</li>
</ul>
</div>
</div>
</div>
</section>
</section>
<section class="features-section">
<div class="features-container">
<h2 class="features-title">Related pages for premium users</h2>
<p class="features-subtitle">These links help you compare versions, review the purchase flow, and
understand
how the upcoming remote-control features fit into the Premium direction.</p>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">🔓</div>
<h3>Start with the free builder</h3>
<p>Look at the free version first if you only need the core builder: a portable lock screen,
custom message, encrypted password protection, and the basic startup and timer options.
</p>
<a href="ScreenLockBuilder.html" class="button secondary-download">View the free version</a>
</div>
<div class="feature-card">
<div class="feature-icon">💳</div>
<h3>Purchase and activation</h3>
<p>When you are ready to buy, the purchase page explains instant delivery, activation, the
lifetime
license terms, and how to contact support if you need help after checkout.</p>
<a href="PurchasePremium.html" class="button secondary-download">Open purchase
instructions</a>
</div>
<div class="feature-card">
<div class="feature-icon">🌐</div>
<h3>Remote control roadmap</h3>
<p>The remote control page outlines the next step beyond local locking: browser-based lock
and
unlock actions, device status, screenshots, automation, and file transfer.</p>
<a href="RemoteControl.html" class="button secondary-download">See the remote control
system</a>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="pricing-section">
<div class="pricing-table">
<div class="pricing-header">
<h2>Pricing Plans</h2>
<p>Choose the plan that works best for you</p>
</div>
<div class="pricing-cards">
<!-- Free Plan -->
<div class="pricing-card">
<div class="plan-badge free-badge">Free Plan</div>
<h3>Free Plan</h3>
<div class="price-container">
<span class="price">$0</span>
<span class="price-period">forever</span>
</div>
<p class="plan-description">Perfect for basic screen locking needs</p>
<ul class="features-list">
<li><span class="feature-icon feature-included">✓</span><span>Basic screen lock
functionality</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Customizable lock screen
message</span></li>
<li><span class="feature-icon feature-included">✓</span><span>AES-256-GCM encrypted
password</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Blacklist protection (148+
words)</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Windows
Auto-startup</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Portable .exe
generation</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Basic auto-close (lock
screen)</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Dev-offcode branding (
lock screen )</span></li>
</ul>
<a href="ScreenLockBuilder.html" class="plan-button free-button">Get Started Free</a>
</div>
<!-- Premium Plan -->
<div class="pricing-card premium">
<div class="plan-badge premium-badge">Lifetime plan</div>
<h3>Premium Plan</h3>
<div class="price-container">
<span class="price"
style="text-decoration: line-through; opacity: 0.6; margin-right: 0.5rem;">$65</span>
<span class="price">$45</span>
<span class="price-period">Lifetime</span>
</div>
<!-- Price Increase Notice -->
<div
style="background: rgba(20, 20, 30, 0.9); padding: 12px 16px; border-radius: 8px; margin: 12px 0; text-align: center; border: 2px solid #ff6b35; box-shadow: 0 0 15px rgba(255, 107, 53, 0.5), 0 0 30px rgba(247, 147, 30, 0.3), inset 0 0 20px rgba(255, 107, 53, 0.1);">
<p style="margin: 0; color: #ff8c42; font-weight: 600; font-size: 0.85rem;">
📱 <strong>COMING SOON:</strong> Telegram Remote Control!
</p>
<p style="margin: 4px 0 0 0; color: rgba(255,255,255,0.85); font-size: 0.8rem;">
Price increases to <strong style="color: #ff6b35;">$65</strong> after release.<br>
⏰ Lock in <strong style="color: #00ff88;">$45</strong> price today!
</p>
</div>
<p class="plan-description">Advanced features</p>
<ul class="features-list">
<li><span class="feature-icon feature-included">✓</span><span>Basic screen lock
functionality</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Customizable lock screen
message</span></li>
<li><span class="feature-icon feature-included">✓</span><span>AES-256-GCM encrypted
password</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Enhanced blacklist
protection</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Portable .exe
generation</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Config System -
Save/Load</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Folder Locker
feature</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Program Locker
feature</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Website blocking</span>
</li>
<li><span class="feature-icon feature-included">✓</span><span>Scheduled Auto Start (Lock
screen)</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Windows
Auto-startup</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Service
auto-startup</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Safe Mode Support
(Auto-startup)</span></li>
<li><span class="feature-icon feature-included">✓</span><span>UI themes &
customization</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Builder program
lock</span></li>
<li data-disabled="true"><span
class="feature-icon feature-excluded">✗</span><span>Remote control
(web-based)</span></li>
<li data-disabled="true"><span
class="feature-icon feature-excluded">✗</span><span>Dev-offcode branding (Lock
screen)</span></li>
<li><span class="feature-icon feature-included">✓</span><span>All future updates</span>
</li>
</ul>
<a href="changelogPremium.html" class="plan-button"
style="background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); margin-bottom: 0.75rem; display: block; text-align: center; padding: 0.75rem 1.5rem; text-decoration: none; border-radius: 8px; color: white; font-weight: 600; transition: transform 0.2s ease, box-shadow 0.2s ease;"
onmouseover="this.style.transform='translateY(-2px)'; this.style.boxShadow='0 4px 12px rgba(102, 126, 234, 0.4)';"
onmouseout="this.style.transform='translateY(0)'; this.style.boxShadow='none';">
📝 View Changelog
</a>
<a href="PurchasePremium.html" class="plan-button premium-button">Purchase lifetime
license</a>
<div
style="margin-top: 1rem; color: var(--text-secondary); font-size: 0.9rem; text-align: center;">
<p style="margin-bottom: 0.5rem; color: #00ff88; font-weight: bold;">⚡ Instant Delivery
& Download</p>
<p style="margin-bottom: 0.5rem;"><strong>Payment Methods:</strong></p>
<p style="margin: 0.25rem 0;">💳 Stripe</p>
</div>
</div>
<!-- Remote Control Plan -->
<div class="pricing-card lifetime">
<div class="plan-badge lifetime-badge">Coming Soon</div>
<h3>Remote Control Plan</h3>
<div class="price-container">
<span class="price">TBA</span>
<span class="price-period">coming soon</span>
</div>
<p class="plan-description">Everything included, forever</p>
<ul class="features-list">
<li><span class="feature-icon feature-included">✓</span><span>Basic screen lock
functionality</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Customizable lock screen
message</span></li>
<li><span class="feature-icon feature-included">✓</span><span>AES-256-GCM encrypted
password</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Enhanced blacklist
protection</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Portable .exe
generation</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Config System -
Save/Load</span></li>
<li><span class="feature-icon feature-included">✓</span><span>File Locker feature</span>
</li>
<li><span class="feature-icon feature-included">✓</span><span>Website blocking</span>
</li>
<li><span class="feature-icon feature-included">✓</span><span>Scheduled Auto Start (Lock
screen)</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Windows
Auto-startup</span></li>
<li><span class="feature-icon feature-included">✓</span><span>UI themes &
customization</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Builder program
lock</span></li>
<li data-disabled="true"><span
class="feature-icon feature-excluded">✗</span><span>Dev-offcode branding ( lock
screen )</span></li>
<li><span class="feature-icon feature-included">✓</span><span>All future updates</span>
</li>
<li><span class="feature-icon feature-included">✓</span><span>Remote control
(web-based)</span></li>
<li><span class="feature-icon feature-included">✓</span><span>Priority support</span>
</li>
</ul>
<a href="disclaimer.html" class="plan-button lifetime-button disabled">Coming Soon</a>
</div>
</div>
<!-- FAQ Section -->
<div class="faq-section">
<h3>Frequently Asked Questions</h3>
<div class="faq-container">
<div class="faq-item">
<h4>Is this software safe to use?</h4>
<p>Yes! Screen Lock Builder uses AES-256-GCM encryption to protect your password.</p>
</div>
<div class="faq-item">
<h4>Will this work on my Windows version?</h4>
<p>Screen Lock Builder works on Windows 7, 8, 10, and 11. The generated .exe files are
portable and don't require installation on the target computer.</p>
</div>
<div class="faq-item">
<h4>What happens if I forget my password?</h4>
<p>Unfortunately, if you forget your password, there's no way to recover it due to the
strong encryption. We recommend writing down your password in a secure location or
using a password manager.</p>
</div>
<div class="faq-item">
<h4>Is the generated .exe file detectable by antivirus?</h4>
<p>Some antivirus programs may flag the .exe file as suspicious due to its screen
locking behavior. This is normal for security software. You can add an exception or
whitelist the file if needed.</p>
</div>
<div class="faq-item">
<h4>Is the license a one-time payment?</h4>
<p>Yes, the Premium license is a one-time payment for lifetime access. There are no
recurring monthly or yearly fees.</p>
</div>
<div class="faq-item">
<h4>What is the difference between Free and Premium version?</h4>
<p>Premium includes advanced features like folder and file locking, program blocking,
website blocking, save/load configurations, UI customization, removing branding, and
much more.</p>
</div>
<div class="faq-item">
<h4>Can I lock specific folders, programs, or websites?</h4>
<p>Yes! With Premium, you can select specific folders and files to protect, block access
to chosen programs (like web browsers), and prevent access to specific websites
while the screen is locked.</p>
</div>
<div class="faq-item">
<h4>Do I get future updates for free?</h4>
<p>Yes, your Premium license includes all future updates and new features at no extra
cost.</p>
</div>
<div class="faq-item">
<h4>Does the software collect any data?</h4>
<p>The application only collects your computer's Hardware ID (HWID) for license
verification purposes. No other personal data or usage information is
collected.</p>
</div>
<div class="faq-item">
<h4>What can I use this software for?</h4>
<p>Common use cases include:
<ul style="margin: 10px 0 10px 20px; color: var(--text-secondary);">
<li><strong>Enhanced Security:</strong> Protecting your workstation when unattended.
</li>
<li><strong>Parental Control:</strong> Limiting screen time and restricting access
to
specific websites.</li>
<li><strong>Productivity:</strong> Blocking distracting apps and sites to maintain
focus.</li>
<li><strong>Kiosk Mode:</strong> Restricting public computer access to specific
functions only.</li>
</ul>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div
style="display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: center; margin-top: 50px; margin-bottom: 50px;">
<!-- SaaS Hub Badge -->
<a href='https://www.saashub.com/dev-offcode-windows-screen-locker?utm_source=badge&utm_campaign=badge&utm_content=dev-offcode-windows-screen-locker&badge_variant=color&badge_kind=approved'
target='_blank' rel='noopener noreferrer'>
<img src="https://cdn-b.saashub.com/img/badges/approved-color.png?v=1"
alt="Dev-offcode Windows Screen Locker badge" style="max-width: 150px; display: block;" />
</a>
<!-- PeerPush Badge -->
<a href="https://peerpush.net/p/window-screen-lock-builder" target="_blank" rel="noopener noreferrer">
<img src="https://peerpush.net/p/window-screen-lock-builder/badge.png"
alt="Window screen lock builder badge" style="max-width: 150px; display: block;" />
</a>
<!-- Uneed Badge -->
<a href="https://www.uneed.best/tool/screen-lock-builder-for-windows" target="_blank" rel="noopener noreferrer">
<img src="https://www.uneed.best/EMBED2B.png" alt="Uneed Embed Badge"
style="max-width: 150px; display: block;" />
</a>
<!-- LaunchIgniter Badge -->
<a href="https://launchigniter.com/product/screen-lock-builder-premium-windows?ref=badge-screen-lock-builder-premium-windows"
target="_blank" rel="noopener noreferrer">
<img src="https://launchigniter.com/api/badge/screen-lock-builder-premium-windows?theme=dark"
alt="Featured on LaunchIgniter" width="212" height="55" />
</a>
<!-- Startup Fame Badge -->
<a href="https://startupfa.me/s/offcrypt?utm_source=www.dev-offcode.com" target="_blank"
rel="noopener noreferrer">
<img src="https://startupfa.me/badges/featured-badge-small.webp" alt="OffCrypt - Featured on Startup Fame"
width="224" height="36" />
</a>
</div>
</main>
</div>
<!-- External JS Libraries -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/11.0.5/swiper-bundle.min.js"
integrity="sha384-T6qkM4ANslBL/pKcwNUeB0bpsiI6pkXXzwrl7Avc6FXEC/UZaXAeBpZZ2zQ3Zbez" crossorigin="anonymous"
data-cfasync="false"></script>
<!-- Application JavaScript -->
<script src="script.js" defer></script>
<script src="gallery.js" defer></script>
<!-- Cookie Consent Banner -->
<link rel="stylesheet" href="cookie-consent.css">
<script src="cookie-consent.js" defer></script>
</body>