Similar Posts
Exchange 2010: Renew an Exchange Certificate Self Signed Certificate
Look up outdated certificate: Get-ExchangeCertificate | fl This example renews the self-signed Exchange certificate by using its thumbprint to identify the certificate. Get-ExchangeCertificate -Thumbprint ‘AD19B141228C7CF98B5F78DCED978B7C45E15434’ | New-ExchangeCertificate Replace with your thumbprint from earlier command.
OpenSSL to Extract the Private Key and Cert File.
Copy the pfx file (Exported SSL Cert) in the Open SSL Bin folder. Look for C:Program Files (x86)GnuWin32bin Export the private key file from the pfx file openssl pkcs12 -in filename.pfx -nocerts -out key.pem Export the certificate file from the pfx file openssl pkcs12 -in filename.pfx -clcerts -nokeys -out cert.pem Remove the passphrase from the private key openssl rsa…
Upload speed slow under a meg. Ethernet connection
DEVICE MANAGER AND LOOK AT ADVANCED NETWORK DEVICES: Go to Start->Control Panel->Device Manager->Network adapters->Your adapters name Ethernet Controller , right-click then select Properties. On the Advance tab, find property Large Send Offload (IPv4) and change its value to Disabled then click OK. If you have a Large Send Offload (IPv4) v2 try setting…
Visual C++ Redistributable Packages for Visual Studio 2013
Xactware Software Xactimate Could not load or assembly ‘CEFSHARP.CORE.DLL’ or one of its dependendencies. the specified module not found. https://www.microsoft.com/en-us/download/details.aspx?id=40784
Windows Server 2012: Fix “This device can’t use a Trusted Platform Module” When Enabling BitLocker
This device can’t use a Trusted Platform Module When Enabling BitLocker This device can’t use a Trusted Platform Module. Your administrator must select the “Allow BitLocker without a compatible TPM” option in the “Require additional authentication at startup” policy for OS volumes. Trusted Platform Module (TPM)– This is basically a chip that in on newer…

How to install IspConfig and How to reset the admin password in ISPConfig 3 after Install
Download and preparation Now we download and decompress the files needed for the installation, to do so, we execute the following commands as root user: apt-get update && apt-get -y upgrade apt-get install -y unzip cd /tmp wget –no-check-certificate -O installer.tgz “https://github.com/servisys/ispconfig_setup/tarball/master” tar zxvf installer.tgz cd *ispconfig* bash install.sh Now you have a folder called…