Hi
sometimes you want to copy files which are exclusively locked by other processes.
Continue reading Windows: Copy and backup open files with a batchfile
Hi
sometimes you want to copy files which are exclusively locked by other processes.
Continue reading Windows: Copy and backup open files with a batchfile
Hi,
these are just 2 templates for a OpenVPN Server and a clients based on the post.
The Server side, based on Debian Linux 8. Copy Key, Certificate & CRL to the right place and create the diffie hellmann key for key exchange.
# Root Directory of the CA export CA_ROOT_DIRECTORY=${HOME}/openvpn/CA # The common directory export CA_COMMON_DIR=${CA_ROOT_DIRECTORY}/common # Directory for Server Certificate export CA_SERVER_DIR=${CA_ROOT_DIRECTORY}/Server # The CRL export CA_CRL=${CA_COMMON_DIR}/crl.pem # The Environment variable where openssl looking for its config export OPENSSL_CONF=${CA_COMMON_DIR}/openssl.cfg # Move default config mv /etc/openvpn/server /etc/openvpn/server.old 2> /dev/null # Copy Key & Certificate mkdir /etc/openvpn/vpnsrv cp $CA_SERVER_DIR/server.p12 /etc/openvpn/vpnsrv cp $CA_CRL /etc/openvpn/vpnsrv # Create Diffie Hellmenn key for key exchange export OPENSSL_BIN=`which openssl` $OPENSSL_BIN gendh -out "/etc/openvpn/vpnsrv/dh.pem" 2048 # Create a Logfolder mkdir -p /var/log/openvpn
Continue reading OpenVPN: A default config template for server and client
Hi,
for learning C# I have created a sample project. I choose the NAudio library to play around with sound interfaces in Windows. Starting from this point the C# project grows :-).
Continue reading Windows: Recording Audio from the Audio loopback device
Hi,
to identify a Windows executable in the ACPI Windows Platform Binary Table entry of a BIOS or UEFI fimware start a live linux distribution from a CD, DVD or USB Stick.
Continue reading Windows: Identify a WPBT binary in the ACPI Table of BIOS/UEFI