Windows 8.1 and Skydrive not syncing

There is a lot of talk about issues with Sky Drive and Windows 8.1. Came across one issue where the metro app worked fine, but sync was not occurring between Sky Drive and the local machine. The customer reported that it was working fine a few days ago, and that there...

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...