Back to Help Center
Windows Server 2022
Installation Guide

Windows Server 2025 Standard 5 Users – Installation, Activation, Configuration

Comprehensive guide to installing, activating, and configuring Windows Server 2025 Standard with a 5 CAL package for users. Detailed instructions, requirements, version comparisons, and troubleshooting.

8 min czytania·Zaktualizowano dzisiaj

Before You Begin

Windows Server 2025 Standard 5 Users (Business Starter Pack) is a licensing package designed for small and medium-sized businesses that require an efficient, secure, and scalable server environment. The package available at KluczeSoft includes:

  • Windows Server 2025 Standard licence for 16 cores – in line with the core-based licensing model.
  • 5 User CALs (Client Access Licences) – enabling five individual users to access server services.
  • 5 RDS CALs for users – allowing five users to utilise remote desktop services.

Important: Each user or device connecting to the server must have the appropriate CAL licence. RDS CALs are required in addition if you use remote desktop services.

What Does KluczeSoft Provide?

  • The original product key (MAK) for activating Windows Server 2025 Standard.
  • 5 User CALs and 5 RDS User CALs.
  • Access to ISO installation files.
  • Detailed installation and activation instructions.
  • Technical support and after-sales service.

Support Terms

Product VersionRelease DateEnd of Mainstream SupportEnd of Extended Support
Windows Server 2025 Standard202414.10.202914.10.2034

System Requirements

To ensure the stability and performance of Windows Server 2025 Standard, your hardware must meet the minimum requirements recommended by Microsoft. Before installation, make sure your server meets the following criteria:

ComponentMinimum Requirements
Processor1.4 GHz 64-bit, compatible with x64 instruction set, supports NX and DEP, CMPXCHG16b, LAHF/SAHF, PrefetchW
RAM2 GB (Server Core installation), 4 GB (GUI installation); 8 GB+ recommended
Free disk space32 GB (Server Core), 40 GB (GUI); 80 GB+ recommended for updates and logs
Network cardGigabit Ethernet (10/100/1000baseT)
GraphicsCompatible with Super VGA (1024 x 768) or higher
Optical driveDVD-ROM (if installing from a disc)
Keyboard and mouseRequired
OtherInternet access for updates and activation

Note: For production environments, it is recommended to use hardware with higher parameters, especially with a larger number of users or server roles.

Step 1: Preparing for Installation

  1. Download the Windows Server 2025 Standard ISO image from an official source or a link provided by KluczeSoft.
  2. Verify the checksum of the ISO file.
  3. Prepare the installation media (e.g., a bootable USB drive using Rufus or Microsoft's official tool).
  4. Ensure you have the product key and CAL licences saved.
  5. Back up important data from the server if you are installing on existing hardware.

Step 2: Installing Windows Server 2025 Standard – Step by Step

1. Boot the server from the installation media

  • Connect a USB drive or insert a DVD with the ISO image.
  • Enter the BIOS/UEFI and set the boot device to the appropriate media.
  • Save the changes and restart the server.

2. Installer Welcome Screen

  • Select the installation language: Polski.
  • Select the time and currency format: Polski (Polska).
  • Select the keyboard layout: Polski (programisty).
  • Click Dalej.

3. Starting the Installation

  • Click Zainstaluj teraz.

4. Entering the Product Key

  • In the "Wprowadź klucz produktu" window, enter the MAK key received from KluczeSoft.
  • Click Dalej.

5. Selecting the System Edition

  • Check Windows Server 2025 Standard (z GUI) or Server Core (recommended with GUI for beginners).
  • Click Dalej.

6. Accepting the License

  • Read and accept the license terms.
  • Check "Akceptuję warunki licencji" and click Dalej.

7. Selecting the Installation Type

  • Select Niestandardowa: tylko instalacja systemu Windows (zaawansowane).

8. Selecting the Target Partition

  • Indicate the disk/partition where the system will be installed.
  • If necessary, delete existing partitions and create new ones.
  • Click Dalej.

9. Copying Files and Installation

  • The installer will copy files and perform the installation (this may take several minutes).
  • After completion, the computer will restart.

10. Configuring the Administrator Account

  • Set a password for the built-in Administrator account.
  • Log in to the system.

Step 3: Activating with the Product Key

After completing the installation, you need to activate the Windows Server 2025 Standard system. KluczeSoft provides an original MAK key.

Method 1: Activation through the Graphical Interface (GUI)

  1. Open Panel sterowaniaSystem i zabezpieczeniaSystem.
  2. Click Aktywuj system Windows or Zmień klucz produktu.
  3. Enter the MAK key and click Dalej.
  4. Follow the wizard's instructions.

Method 2: Activation from the Command Line (cmd)

  1. Open Wiersz polecenia as an administrator (right-click on Start → Windows Terminal (Administrator)).
  2. Enter the commands:
cd %windir%\system32
slmgr.vbs /ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
slmgr.vbs /ato

Replace XXXXX-XXXXX-XXXXX-XXXXX-XXXXX with your product key.

Method 3: Activation through PowerShell

  1. Open PowerShell as an administrator.
  2. Enter:
Set-Location -Path "C:\Windows\System32"
slmgr.vbs /ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
slmgr.vbs /ato

Activating CAL and RDS CAL Licenses

CAL and RDS CAL licenses are assigned during service configuration (e.g., Active Directory, Remote Desktop Services). The product key only activates the operating system. CALs are managed in the Menedżer licencji usług pulpitu zdalnego tool.

Step 4: Verifying Activation

After activation, it's a good idea to check the license status.

Checking the Activation Status of the System

Open Wiersz polecenia as an administrator and enter:

cd %windir%\system32
slmgr.vbs /xpr

A window will appear with information about the activation status (e.g., "Produkt jest aktywowany na stałe").

Checking License Details

slmgr.vbs /dli
slmgr.vbs /dlv

Checking RDS CAL Status

  1. Open Menedżer licencji usług pulpitu zdalnego.
  2. Verify the assignment and status of licenses.

If you need help, please contact us at [email protected] or call 00 800 121 1654.

Step 5: Post-Installation Configuration

After installing and activating the system, you need to perform basic configuration:

1. Change Server Name and Join Domain

  • Open Server ManagerLocal Server.
  • Click on the computer name → Change.
  • Change the name and join a domain or create a new domain.

2. Configure IP Address

  • Open Network and Sharing CenterChange adapter settings.
  • Configure a static IP address.

3. Install Roles and Features

  • Open Server ManagerAdd roles and features.
  • Select the required roles, e.g. Active Directory, DNS, DHCP, File Server.
  • Example of installing AD DS via PowerShell:
Install-WindowsFeature -Name AD-Domain-Services -IncludeManagementTools

4. Configure Remote Desktop Services (RDS)

  • Open Server ManagerAdd roles and features.
  • Select Remote Desktop Services.
  • Example of installation via PowerShell:
Install-WindowsFeature -Name RDS-RD-Server -IncludeManagementTools

5. Install Updates

  • Open SettingsUpdate & Security.
  • Check and install the latest updates.

6. Configure Security Policies

  • Configure the firewall, password policies, user permissions.

Step 6: Troubleshooting

Below are the most common issues during installation and activation of Windows Server 2025 Standard:

1. Error: "Product key is invalid"

  • Solution: Make sure you enter the key exactly, without spaces and typos. Check if the key is intended for the Standard 2025 version. If the error persists, contact KluczeSoft support.

2. Error: "Cannot connect to activation server"

  • Solution: Check your internet connection, set the DNS servers correctly. Try activation by phone or in offline mode.

3. Error: "No available RDS CAL licenses"

  • Solution: Ensure that RDS CAL licenses have been installed correctly in the Remote Desktop Licensing Manager. Verify that the number of users has not been exceeded.

4. Error: "Installation cannot continue – missing drivers"

  • Solution: Before installation, prepare the drivers for the RAID/SATA controller on a pendrive. Load them during partition selection.

5. Error: "System does not see the hard drive"

  • Solution: Check the BIOS/UEFI settings, controller mode (AHCI/RAID). If necessary, load the drivers.

6. Error: "Activation failed – error 0xC004F074"

  • Solution: The error indicates a problem with communication with the KMS server. Make sure you are using a MAK key, not KMS. Try activation by phone.

7. Error: "Cannot install server roles"

  • Solution: Check if the system is activated and updated. Restart the server and try again. If you need help, please contact us at [email protected] or call 00 800 121 1654.

Step 7: Comparing versions and prices at KluczeSoft

VersionNumber of coresNumber of CAL (User)Number of RDS CALPrice (zł)Product link
Windows Server 2025 Standard 5U16553490/windows-server-2025
Windows Server 2022 Standard 5U16552990/windows-server-2022-standard-5u
Windows Server 2025 Datacenter16007990/windows-server-2025-datacenter

Note: Prices may be subject to change. Check the current offer on the KluczeSoft website or contact an advisor.

Summary

Windows Server 2025 Standard 5 Users is an excellent choice for companies that need a stable and scalable server environment with remote work capabilities for several users. With a starter package of 5 User CAL and 5 RDS CAL, you can quickly deploy the latest Microsoft server system with a legal licence and technical support.

If you have any questions or problems, please contact our support team:

Phone: 00 800 121 1654
E-mail: [email protected]
More guides: /category/windows-server-2025

Remember: Regularly back up and update your system to ensure server security and performance.

Microsoft

Windows Server 2025 Standard 5 Uzytkownikow

Licencja dożywotniaWysyłka w 1 min
Kup w KluczeSoft

Najczęściej zadawane pytania

No. The MAK key is intended for activating one instance of the system. Each server requires a separate licence.
CAL licences are assigned when creating user accounts in Active Directory. RDS CAL is assigned in the Remote Desktop Services Licence Manager.
Check if you are entering the key correctly and if it is intended for the 2025 Standard version. In case of problems, contact KluczeSoft support.
Yes, you can extend the number of users or devices by purchasing additional CAL licences from KluczeSoft.
Run the command line as an administrator and type: `slmgr.vbs /xpr`. Information about the activation status will appear.
Yes, the Standard version allows you to run up to 2 virtual machines on a single physical host.
User CAL is assigned to a user (can use multiple devices), Device CAL is assigned to a device (can be used by multiple users).

Czy ten artykuł był pomocny?