Connect to a VPN server in Windows and Android

A VPN connection is still mostly regarded as “business solution”, only useful to connecting employees to the company network. But this is no longer true nowadays.

VPNs can be very useful in protecting the integrity and security of data transfers, no matter who the two communicating parties are. To learn how to set up a connection and connect to a VPN server…

How to expand multiple files from the Windows Xp CD

If you’ve ever needed to expand and restore multiple files from the Windows Xp CD (and don’t want to run expand for each file by hand), the following batch file might come in handy: @echo off setlocal set List=X:\path\*.ex_ for /f “delims=” %%a in (‘dir /b “%List%”‘) do expand %%a …