beyazad
Profesör
- Katılım
- 6 Temmuz 2008
- Mesajlar
- 1,115
- Reaksiyon puanı
- 22
- Puanları
- 0
Merhaba,
Yalnızca Windows 7′de sunulan DX11 desteğini Windows Vistaya entegre etmek için :
Aşağıdaki kodu kopyalayıp notepad içine yapıştırın. Uzantısını .cmd olarak kaydedin ve oturum açıp kapatın. Ardından windows güncellemelerini kontrol edin, güncelleme " Platform Update for Windows Vista (KB971644)" güncelleştirmesini yükleyin. Yeniden başlatın.
-------------------------------------------------------------------------
--------------------------------------------------------------------------
NOT: Yalnızca Windows Vista SP 2 içindir...
Yalnızca Windows 7′de sunulan DX11 desteğini Windows Vistaya entegre etmek için :
Aşağıdaki kodu kopyalayıp notepad içine yapıştırın. Uzantısını .cmd olarak kaydedin ve oturum açıp kapatın. Ardından windows güncellemelerini kontrol edin, güncelleme " Platform Update for Windows Vista (KB971644)" güncelleştirmesini yükleyin. Yeniden başlatın.
-------------------------------------------------------------------------
Kod:
@echo off
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Win7IP /v Beta1 /t REG_SZ /d 870b5ec7-d7d9-4e12-adfb-17b770359b51 /f
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\WindowsUpdate\Win7IP /v Beta1 /t REG_SZ /d 870b5ec7-d7d9-4e12-adfb-17b770359b51 /f
IF NOT %errorlevel% == 0 ( goto ERROR)
:SUCCESS
@echo.
echo ===========================================================
echo Platform Update for Windows Vista registry key has been
echo set successfully.
echo Please check for updates in Windows Update.
echo ===========================================================
@echo.
goto END
:ERROR
@echo.
echo ===========================================================
echo FAILED to set Platform Update for Windows Vista registry keys.
echo Please run this script by right clicking and selecting
echo Run as Administrator.
echo ===========================================================
@echo.
goto END
:END
pause
--------------------------------------------------------------------------
NOT: Yalnızca Windows Vista SP 2 içindir...