أدخل مواصفات جهازك بدقة للحصول على تقييم دقيق لقدرته على تشغيل التطبيق بسلاسة.
التعليمات:
Write-Host "`n========================================" -ForegroundColor Cyan; Write-Host " ChillDown Compatibility Check" -ForegroundColor Cyan; Write-Host "========================================`n" -ForegroundColor Cyan; $RAM = [math]::Round((Get-CimInstance Win32_ComputerSystem).TotalPhysicalMemory / 1GB); Write-Host "RAM: $RAM GB" -ForegroundColor Green; $CPU = Get-CimInstance Win32_Processor; $Cores = $CPU.NumberOfCores; Write-Host "CPU Cores: $Cores" -ForegroundColor Green; $CPUName = $CPU.Name; if ($CPUName -match "i9") { $CPUType = "Intel Core i9" } elseif ($CPUName -match "i7") { $CPUType = "Intel Core i7" } elseif ($CPUName -match "i5") { $CPUType = "Intel Core i5" } elseif ($CPUName -match "i3") { $CPUType = "Intel Core i3" } elseif ($CPUName -match "Ryzen 9") { $CPUType = "AMD Ryzen 9" } elseif ($CPUName -match "Ryzen 7") { $CPUType = "AMD Ryzen 7" } elseif ($CPUName -match "Ryzen 5") { $CPUType = "AMD Ryzen 5" } elseif ($CPUName -match "Ryzen 3") { $CPUType = "AMD Ryzen 3" } else { $CPUType = "Other" }; Write-Host "CPU Type: $CPUType" -ForegroundColor Green; $Disk = Get-PhysicalDisk | Select-Object -First 1; $StorageType = $Disk.MediaType; if ($StorageType -eq "SSD") { $Type = "SSD" } elseif ($StorageType -eq "HDD") { $Type = "HDD" } else { $Type = $StorageType }; Write-Host "Storage Type: $Type" -ForegroundColor Green; $FreeSpace = [math]::Round((Get-PSDrive C).Free / 1GB); Write-Host "Free Space: $FreeSpace GB" -ForegroundColor Green; $GPU = Get-CimInstance Win32_VideoController | Where-Object { $_.Name -notmatch "Intel|AMD Radeon\(TM\) Graphics" } | Select-Object -First 1; if ($GPU) { $GPUName = $GPU.Name; $VRAM = [math]::Round($GPU.AdapterRAM / 1GB, 2); if ($VRAM -gt 0) { Write-Host "GPU: $GPUName ($VRAM GB)" -ForegroundColor Green } else { Write-Host "GPU: Integrated" -ForegroundColor Yellow } } else { Write-Host "GPU: Integrated" -ForegroundColor Yellow }; $hv = systeminfo | Select-String "A hypervisor has been detected"; if ($hv) { Write-Host "Virtualization: Supported and Enabled" -ForegroundColor Green } elseif ($CPU.VMMonitorModeExtensions -and -not $CPU.VirtualizationFirmwareEnabled) { Write-Host "Virtualization: Supported but NOT Enabled" -ForegroundColor Yellow } elseif (-not $CPU.VMMonitorModeExtensions) { Write-Host "Virtualization: NOT Supported" -ForegroundColor Red } else { Write-Host "Virtualization: Supported but NOT Enabled" -ForegroundColor Yellow }; $OS = Get-CimInstance Win32_OperatingSystem; $OSName = $OS.Caption; $Edition = (Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").EditionID; if ($OSName -match "Windows 11") { $WinVersion = "Windows 11" } elseif ($OSName -match "Windows 10") { $WinVersion = "Windows 10" } else { $WinVersion = "Windows (Old)" }; if ($Edition -match "Professional") { $EditionName = "Pro" } elseif ($Edition -match "Home") { $EditionName = "Home" } elseif ($Edition -match "Enterprise") { $EditionName = "Enterprise" } elseif ($Edition -match "Education") { $EditionName = "Education" } else { $EditionName = $Edition }; Write-Host "Windows: $WinVersion $EditionName" -ForegroundColor Green; Write-Host "`n========================================`n" -ForegroundColor Cyan
ملاحظة مهمة: التقييم يعتمد على المواصفات التي تدخلها بنفسك. تأكد من إدخال المعلومات بدقة للحصول على تقييم صحيح. يمكنك مقارنة النتيجة بالمتطلبات الكاملة المذكورة في الشروط والأحكام.