Skip to content

Commit 5982e57

Browse files
committed
added and fixed Recommended registry changes
1 parent cebfe78 commit 5982e57

2 files changed

Lines changed: 38 additions & 1 deletion

File tree

docs/getting-started/system-requirements.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ System requirements for optimal performance:
3030

3131
### Optional components
3232

33-
- Recommended registry changes #link must be updated
33+
- [Recommended registry changes](/misc/recommended-registry-changes)
3434
- A MySQL database located on the same server is recommended for best performance. [Mysql](https://dev.mysql.com/downloads/mysql/) **(TCAdmin Supports MySQL 8 Password Encryption for Authentication)**
3535
#### Required by almost all games
3636
- [Microsoft Visual c++ **(x64)**](https://aka.ms/vs/17/release/vc_redist.x64.exe) 2015 to 2022
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
sidebar_position: 7
3+
sidebar_label: Recommended Registry Changes
4+
---
5+
6+
# Recommended Registry Changes
7+
8+
These registry changes adjust the memory available for desktop heaps created by non-interactive services. This resolves start errors that may happen on some servers a few days after a reboot.
9+
10+
## Windows 2008/2012/2016/2019/2022
11+
12+
Open the Registry (regedit.exe) and go to:
13+
14+
```
15+
Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management
16+
```
17+
18+
And adjust two keys:
19+
20+
```
21+
SessionPoolSize (this is 4 by default, put it to be 10 - remember, 10 as hexadecimal)
22+
SessionViewSize (this is 30 by default, put it to 80 - again, hexadecimal)
23+
```
24+
25+
Go to:
26+
27+
```
28+
Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\SubSystems
29+
```
30+
31+
Double-click on the Windows key. What is important (and the only thing that gets changed for that matter) is
32+
33+
```
34+
SharedSection=1024,20480,2048
35+
```
36+
37+
Close the registry and reboot the server for changes to take affect.

0 commit comments

Comments
 (0)