Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/getting-started/system-requirements.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ System requirements for optimal performance:

### Optional components

- Recommended registry changes #link must be updated
- [Recommended registry changes](/misc/recommended-registry-changes)
- 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)**
#### Required by almost all games
- [Microsoft Visual c++ **(x64)**](https://aka.ms/vs/17/release/vc_redist.x64.exe) 2015 to 2022
Expand Down
37 changes: 37 additions & 0 deletions docs/misc/recommended-registry-changes.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
sidebar_position: 7
sidebar_label: Recommended Registry Changes
---

# Recommended Registry Changes

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.

## Windows 2008/2012/2016/2019/2022

Open the Registry (regedit.exe) and go to:

```
Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management
```

And adjust two keys:

```
SessionPoolSize (this is 4 by default, put it to be 10 - remember, 10 as hexadecimal)
SessionViewSize (this is 30 by default, put it to 80 - again, hexadecimal)
```

Go to:

```
Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\SubSystems
```

Double-click on the Windows key. What is important (and the only thing that gets changed for that matter) is

```
SharedSection=1024,20480,2048
```

Close the registry and reboot the server for changes to take affect.