Solar System Monitoring

It has been a while since I have posted anything. So I thought I would go through the setup of my Solar monitoring. When I got my solar system I noticed that the Inverter had a RS232 connector on it. While it was being installed I was talking with the installers about...

Batch file to check for 64Bit system

The following can be used in a batch script to check if a system is 64Bit or 32Bit. @echo off :START REM SYSTEM Check IF EXIST %WINDIR%\SysWOW64\NUL GOTO :64BIT goto :32BIT :64BIT REM Run 64bit command goto :END :32BIT REM Run 32bit command goto :END :END Just add the...