Last active
June 9, 2021 03:13
-
-
Save sorashi/31bb98acb584cf397f554abd66d00c83 to your computer and use it in GitHub Desktop.
Print installed versions of .NET Framework on Windows (batch script)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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