Microsoft Visual C++ supported target Windows versions

Microsoft Visual C++ supported target Windows versions – Supported Platforms – Target Platforms. MSVC versions: 6.0 Visual C++ 6.0. 7.X Visual C++ .NET 2002, 2003 (7.0, 7.1). 8.0 Visual C++ 2005. 9.0 Visual C++ 2008. 10.0 Visual C++ 2010. 11.0 Visual C++ 2012. 6.0 7.X 8.0 9.0 10.0 11.0 Windows 95 ok ok hack Windows …

Getting file size in KB using batch file

To get file size using batch file, we use variable with modifier. Then set /a, performs match operation (divide by 1024). Unlike other examples, this example works on any Windows language. @echo off :: Name: file_size.bat :: Author wishmesh.com :: Calculate file size in KB from %1 set /a size = %~z1 / 1024 echo …