TestDotNetFx.bat 341 B

1234567891011
  1. @echo off
  2. echo Verfuegbare .NET-Framework-Versionen:
  3. echo.
  4. cd /d %~dp0
  5. regedit.exe /e "%~dp0dotnetfx.txt" "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP"
  6. type dotnetfx.txt | findstr "NDP\\v[^\\]*]$" > dotnetfx2.txt
  7. for /f "tokens=6 delims=\]" %%a in (dotnetfx2.txt) do echo %%a
  8. echo.
  9. pause
  10. del dotnetfx.txt
  11. del dotnetfx2.txt