Windows upgrade 2003 to 2012 R2
blogs.technet.microsoft.com/canitpro/2014/04/01/step-by-step-active-directory-migration-from-windows-server-2003-to-windows-server-2012-r2/
Good write up on how migrate from 2003 to 2012.
blogs.technet.microsoft.com/canitpro/2014/04/01/step-by-step-active-directory-migration-from-windows-server-2003-to-windows-server-2012-r2/
Good write up on how migrate from 2003 to 2012.
Outlook the will get the following certificate error when you first startup. Security Alert: To resolve this issue first make sure this is indeed the issue, let’s check that the URLs are incorrect. To do so run the following command. Get-ClientAccessServer |fl identity,autodiscoverserviceinternaluri If it lists any url that does not match the SANs…
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…
How To Disable Auto Login in Windows: Press Win+R, enter “netplwiz”, which will open the “User Accounts” window. Check the “Users must enter a username and password to use this computer” option and click Apply. Restart your computer and the system will prompt you to enter your password at the login screen.
Location of the file: C:Program FilesMicrosoft SQL ServerMSSQL10_50.SHAREPOINTMSSQLDATA The File: Share_Point_Config_Log.ldf 1. Open up Microsoft SQL Server Management Studio 2. New Query 3. Type in the following and press execute: USE [master] GO ALTER DATABASE[SharePoint_Config] SET RECOVERY SIMPLE WITH NO_WAIT GO USE [SharePoint_Config] GO DBCC SHRINKFILE (‘SharePoint_Config_Log’) GO
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…
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…