How to Extend Windows Server 2025 Trial License?
Go Beyond the 180-Day Limit — Up to 3 Years of Evaluation
Narbulut · System Administration Guide
What Is Windows Server 2025 Evaluation Edition?
Microsoft offers a free 180-day Evaluation edition of Windows Server 2025, giving you full access to all features for testing purposes. However, this period may not be enough for lab environments, long-running PoC (Proof of Concept) projects, or training setups. The good news is that Microsoft allows you to extend this period up to 6 times — giving you a total of 180 days x 6 = 1,080 days (approximately 3 years) of evaluation time.
In this guide, we’ll walk you through how to check your remaining trial period, extend it using the slmgr /rearm command, and cover the important details you need to know.
Note: Windows Server 2025 is Microsoft’s latest server operating system, released in November 2024. It introduces Hot Patching (security updates without reboot), AI workload optimization, and enhanced security features. The slmgr-based steps below apply identically to the Windows Server 2025 Evaluation edition.
1. Check Your Current License Status
Before extending the trial, you need to find out how many days are remaining and how many rearm attempts you have left. Use the slmgr /dlv command to check this information.
Steps:
- Open Command Prompt or PowerShell as Administrator. (Right-click the Start menu → select “Windows Terminal (Admin)” or “Command Prompt (Admin)”.)
- Type the following command and press Enter:
slmgr /dlv
In the dialog window that appears, pay attention to these two fields:
- Time remaining — How much time is left before your license expires (in days and minutes)
- Remaining Windows rearm count — Number of extensions remaining (starts at 6)
Note: If the “Remaining Windows rearm count” value is 0, you have no extensions left. In this case, you’ll need to purchase a license or reinstall the server.
2. Extend the Trial Period: slmgr /rearm
After checking your license status, simply use the slmgr /rearm command to extend the trial. This command resets the 180-day evaluation period back to the beginning.
Steps:
- Open Command Prompt or PowerShell as Administrator.
- Type the following command and press Enter:
slmgr /rearm
When the command runs successfully, you’ll see this message:
Command completed successfully.
Please restart the system for the changes to take effect.
- As indicated in the message, you must restart the server for the changes to take effect:
shutdown /r /t 0
- After the server restarts, run
slmgr /dlv again to verify that the timer has been reset.
3. Extension Rights Table
Each time you run slmgr /rearm, one extension right is consumed. You have 6 in total:
| Rearm # |
Total Time |
Remaining Rights |
| Initial install |
180 days |
6 |
| 1st Extension |
360 days |
5 |
| 2nd Extension |
540 days |
4 |
| 3rd Extension |
720 days |
3 |
| 4th Extension |
900 days |
2 |
| 5th Extension |
1,080 days (~3 years) |
1 |
| 6th Extension |
1,260 days (~3.5 years) |
0 |
Warning: You can use rearm before your current period expires, but the remaining days will be lost. For example, if you have 90 days left and run rearm, it resets to 180 days — not 270. Therefore, it’s recommended to use rearm close to expiration.
4. PowerShell Script for Automated Monitoring
If you want to regularly monitor your trial period, use the following PowerShell script to quickly view your remaining time and rearm count:
$licenseInfo = Get-CimInstance -ClassName SoftwareLicensingProduct |
Where-Object { $_.PartialProductKey -and $_.Name -like "*Windows*" }
$remainingMinutes = $licenseInfo.GracePeriodRemaining
$remainingDays = [math]::Floor($remainingMinutes / 1440)
$rearmInfo = Get-CimInstance -ClassName SoftwareLicensingService
$rearmCount = $rearmInfo.RemainingWindowsReArmCount
Write-Host "=================================="
Write-Host " Windows Server License Status"
Write-Host "=================================="
Write-Host "Remaining : $remainingDays days"
Write-Host "Rearm Rights: $rearmCount / 6"
Write-Host "=================================="
if ($remainingDays -lt 30) {
Write-Host "WARNING: Less than 30 days! Consider running rearm." -ForegroundColor Red
}
5. Common Issues and Solutions
“Error: 0xC004D307”
Your rearm rights are exhausted. Check remaining count with slmgr /dlv. If none remain, you need to purchase a license.
“Access Denied” Error
You didn’t run Command Prompt or PowerShell as Administrator. Right-click → “Run as administrator” and try again.
Timer Didn’t Reset
You may have forgotten to restart the server after running the rearm command. A restart is required.
“Not Licensed” Watermark
The evaluation period has expired. The server continues to run but shuts down automatically every hour. If you have rearm rights, run slmgr /rearm immediately.
6. What Happens After the Evaluation Period Expires?
Once all rearm rights are exhausted and the final 180-day period ends, Windows Server 2025 enforces these restrictions:
- A “This copy of Windows is not genuine” watermark appears on the desktop
- The server shuts down automatically every hour — causing service interruptions
- Personalization settings (desktop background, etc.) cannot be changed
- Windows Update continues to deliver security patches, but the experience remains limited
This is why it’s important to have a licensing plan in place as you approach the end of your evaluation period.
7. Upgrading from Evaluation to Full License
If you decide to upgrade to a fully licensed edition after your evaluation, you can do so directly from the command line without reinstalling:
DISM /Online /Set-Edition:ServerStandard /ProductKey:XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /AcceptEula
DISM /Online /Set-Edition:ServerDatacenter /ProductKey:XXXXX-XXXXX-XXXXX-XXXXX-XXXXX /AcceptEula
Note: Replace XXXXX-XXXXX-XXXXX-XXXXX-XXXXX with your valid product key. This operation will require a server restart.
Quick Action Summary
Check Remaining Time
slmgr /dlv
Extend (+180 days)
slmgr /rearm → Restart
Maximum Extension
6 times x 180 days = ~3 years
Upgrade to Full License
DISM /Set-Edition command
Protect Your Server Backups
Looking for data loss protection for your Windows Server environments? With Narbulut Backup Now, automatically back up your servers, databases, and virtual machines. Discover our enterprise-grade backup solution for your physical and virtual servers.