Community Tutorials Windows Server كيفية تثبيت Windows Server 2022
كيفية تثبيت Windows Server 2022
WINDOWS SERVER

كيفية تثبيت Windows Server 2022

SKYLINE Knowledge Base
Photo by Windows on Unsplash

دليل عملي خطوة بخطوة لـ كيفية تثبيت Windows Server 2022. أوامر مختبرة في الإنتاج، متطلبات مسبقة، تحقق نهائي وروابط لمواضيع ذات صلة.

Windows Server 2022 هو إصدار LTSC من مايكروسوفت وهدف "ثابت لعشر سنوات" الحالي. هذا الدليل يثبّت النظام على bare-metal أو hypervisor، مع خطوات ما بعد التثبيت المهمة لإنتاج فعلي.

المتطلبات المسبقة

  • خادم/VM بـ 2 vCPU، 4 GiB ذاكرة، 64 GiB قرص.
  • ISO Windows Server 2022 من Microsoft Evaluation Center.
  • اسم مضيف مخطّط له ومعلومات الشبكة/DNS.

الخطوة 1: تشغيل المثبّت

اربط ISO، اضغط Install Now. اختر الإصدار: Standard (Desktop Experience) للتعلم، أو Server Core للإنتاج.

الخطوة 2: التقسيم

أنشئ قسمين: C: 80 GiB للنظام، D: للباقي للبيانات والسجلات.

الخطوة 3: كلمة مرور Administrator وأول تسجيل دخول

كلمة مرور 20+ حرفًا.

الخطوة 4: إعادة التسمية والشبكة

PowerShell كمسؤول:

Rename-Computer -NewName "DC01-RUH" -Restart

New-NetIPAddress -InterfaceAlias "Ethernet" `
                 -IPAddress 10.0.10.10 -PrefixLength 24 `
                 -DefaultGateway 10.0.10.1

Set-DnsClientServerAddress -InterfaceAlias "Ethernet" `
                           -ServerAddresses 10.0.10.10,1.1.1.1

Set-TimeZone -Id "Arab Standard Time"

الخطوة 5: التحديثات، جدار الحماية، RDP

Install-Module PSWindowsUpdate -Force -Scope AllUsers
Import-Module PSWindowsUpdate
Get-WindowsUpdate -AcceptAll -Install -AutoReboot

Set-ItemProperty -Path "HKLM:\System\CurrentControlSet\Control\Terminal Server" `
                 -Name "fDenyTSConnections" -Value 0
Enable-NetFirewallRule -DisplayGroup "Remote Desktop"

الخطوة 6: ثبّت الأدوار عند الحاجة فقط

Get-WindowsFeature
Install-WindowsFeature -Name AD-Domain-Services, DNS, GPMC -IncludeManagementTools

التحقق

Get-ComputerInfo | Select-Object CsName, OsName, OsVersion
Get-NetIPAddress -AddressFamily IPv4 | Format-Table
Get-WindowsFeature | Where-Object Installed

الخاتمة

Windows Server 2022 يثبت في 15 دقيقة وجاهز لأي دور. Standard with Desktop Experience مناسب للتعلم؛ انتقل إلى Server Core للإنتاج.

الخطوات التالية

SKYLINE Engineering

@skyline

The engineering team at SKYLINE Industrial Solutions. We publish field-tested guides drawn from real KSA and GCC deployments.

See author profile
SKYLINE engineering services

Need this implemented for you?

Reading is free — building it right takes a team. SKYLINE engineers ship Windows Server for Aramco vendors, banks, hospitals and government agencies across Saudi Arabia. Talk to us before you start.

Aramco Approved Contractor ISO 9001 · ISO 27001 SAMA CSF aligned NCA ECC ready 247+ KSA clients

Comments

0 total · 0 threads
Be the first to leave a comment.