Skip to content

Instantly share code, notes, and snippets.

@sorashi
Last active June 9, 2021 03:13
Show Gist options
  • Save sorashi/31bb98acb584cf397f554abd66d00c83 to your computer and use it in GitHub Desktop.
Save sorashi/31bb98acb584cf397f554abd66d00c83 to your computer and use it in GitHub Desktop.
Print installed versions of .NET Framework on Windows (batch script)
@echo off
cd C:\Windows\Microsoft.NET\Framework
for /d %%D in (*) do echo %%~fD
PAUSE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment