Skip to content

Commit e999f2a

Browse files
author
0xfab1
committed
docs: enhance Windows 11 installation instructions by adding detailed steps for account setup and registry modifications
1 parent 809f106 commit e999f2a

File tree

1 file changed

+43
-2
lines changed

1 file changed

+43
-2
lines changed

docs/tech/scripts/os/windows.md

Lines changed: 43 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,54 @@
22

33
## Windows 11
44

5-
Old Contect Menu
5+
Install without account:
6+
7+
On the first setup screen press Shift + F10 (CMD will open)
8+
9+
```cmd
10+
net user yourusername/add
11+
net localgroup administrators yourusername /add
12+
net user yourusername/active:yes
13+
net user yourusername/expires:never
14+
net user administrator /active:no
15+
net user defaultUser0 /delete
16+
```
17+
18+
Next opens registry editor
19+
20+
```cmd
21+
regedit
22+
```
23+
24+
and navigate to
25+
26+
```reg
27+
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE
28+
```
29+
30+
an delete:
31+
32+
```txt
33+
DefaultAccountAction
34+
DefaultAccountSAMName
35+
DefaultAccountSID
36+
```
37+
38+
Right click on `LaunchUserOOBE` and rename it to `SkipMachineOOBE` and the value is set to 1.
39+
40+
Close registry editor and reboot computer:
41+
42+
```cmd
43+
shutdown /r /t 0
44+
```
45+
46+
Get old contect menu
647

748
```cmd
849
reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
950
```
1051

11-
Old Explorer View
52+
Get old explorer view
1253

1354
```reg
1455
Windows Registry Editor Version 5.00

0 commit comments

Comments
 (0)