Skip to content

Commit 87311ca

Browse files
update README.md
1 parent e884b25 commit 87311ca

1 file changed

Lines changed: 18 additions & 4 deletions

File tree

README.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,21 +75,35 @@ volumes:
7575
networks:
7676
frontend:
7777
```
78+
To find out how you can change the default UID/GID of this container image, consult the [how-to.changeUIDGID](https://github.com/11notes/RTFM/blob/main/linux/container/image/11notes/how-to.changeUIDGID.md#change-uidgid-the-correct-way) section of my [RTFM](https://github.com/11notes/RTFM)
7879
7980
# EXAMPLE
80-
## Windows Server 2025 Datacenter. List of [GVLK](https://learn.microsoft.com/en-us/windows-server/get-started/kms-client-activation-keys)
81+
## Add your product key
82+
Windows Server 2025 Datacenter. List of [GVLK](https://learn.microsoft.com/en-us/windows-server/get-started/kms-client-activation-keys)
8183
```cmd
8284
slmgr /ipk D764K-2NDRG-47T6Q-P8T8W-YP6DF
8385
```
84-
Add your KMS server information to server via registry
86+
## Add your KMS server information
87+
... via CLI
88+
```
89+
slmgr /skms KMS_IP:KMS_PORT
90+
```
91+
... via registry (or add these key to your GPO)
8592
```powershell
93+
"Windows"
8694
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform" -Name "KeyManagementServiceName" -Value "KMS_IP"
8795
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform" -Name "KeyManagementServicePort" -Value "KMS_PORT"
8896
97+
"Office"
8998
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform" -Name "KeyManagementServiceName" -Value "KMS_IP"
9099
Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform" -Name "KeyManagementServicePort" -Value "KMS_PORT"
91100
```
92-
Activate server
101+
... via DNS
102+
```sh
103+
# BIND
104+
_vlmcs._tcp SRV 0 0 KMS_PORT KMS_IP
105+
```
106+
## Activate server
93107
```cmd
94108
slmgr /ato
95109
```
@@ -154,4 +168,4 @@ This image supports unraid by default. Simply add **-unraid** to any tag and the
154168
# ElevenNotes™️
155169
This image is provided to you at your own risk. Always make backups before updating an image to a different version. Check the [releases](https://github.com/11notes/docker-kms/releases) for breaking changes. If you have any problems with using this image simply raise an [issue](https://github.com/11notes/docker-kms/issues), thanks. If you have a question or inputs please create a new [discussion](https://github.com/11notes/docker-kms/discussions) instead of an issue. You can find all my other repositories on [github](https://github.com/11notes?tab=repositories).
156170

157-
*created 20.07.2025, 23:53:17 (CET)*
171+
*created 23.10.2025, 07:06:45 (CET)*

0 commit comments

Comments
 (0)