With Windows server 2012, Below are the steps to turn off Internet explorer enhanced security configuration: 1. Launch Server Manager 2. Click on Local Server on the left pane of the Server Manager console. […]
How to Start, Stop and Restart IIS 7.0 on Windows Server
If you are getting an error such as “503 Service Unavailable” on your websites,It can be due to the IIS application pool are not running. This is mainly because the WAS-Windows Process Activation too is stopped. […]
How to Reset Pop3 user account password on Windows Pop3 server
To reset a password for POP3 users account on Windows server using command line,Run below command: winpop changepwd USER@DOMAIN NewPassword Example: Below command resets the password to bird.333! for user admin in domain cpanelplesk.com winpop changepwd admincpanelplesk.com bird.333! That’s all. […]
Error: “C:\Windows\System32\Config\SystemProfile\Desktop” refers to a location that is unavailable.
When logging to the server or opening My Computer the system throws error message with description: Title: Location is not available Description: C:\Windows\system32\config\systemprofile\Desktop refers to a location that is unavailable. […]
How to install PowerShell on Windows Server 2012 R2 Core
PoweShell is not installed by default on Windows Core edition. We need to enable this feature. One of the prerequisite for PowerShell is .Net Framework so we have to install .Net framework first. To install .Net Framework 4.0 run the following Command Dism /Online /Enable-Feature /FeatureName:NetFx4 /All OR Dism /Online /Enable-Feature /FeatureName:NetFx4 /All /LimitAccess /Source:X:\sources\sxs To install […]
How to enable Remote Desktop on Windows Server 2012
In Windows 2012,usually Remote Desktop is not easily visible. To launch the Remote Desktop window, there are two methods: Command Line and Graphical User Interface.If someone is still using windows 2008 server for those we have already discuss about to enable RDP on Windows server 2008. […]
How to Enable RDP on Windows Server 2008
Remote Desktop Protocol (RDP) is a server software designed and developed by Microsoft Inc. included in the windows server 2008, which allows a user to access another server using the graphical interface. Officially it is known as Remote Desktop Connection. […]
Plesk Backup Error : Failed to connect to database: User admin already has more than ‘max_user_connections’ active connections
Usually this error occurs when the maximum allowed connection limit of the database has exceeded. It also means that the database already has enough number of open connections and cannot allow anymore. In that case you can either wait for someone to disconnect or if incase a specific script has opened too many connections to […]
How to Reboot Dedicated Server Through WHM?
Sometimes we need to restart our server for installation or configuration purpose.We recommend you to not restart your server frequently, If it is really not necessary as it can cause harm to your server. […]
How to auto delete Emails on cPanel
Today I will Let you know how to auto delete old Emails on cPanel : You have to set the cron by using cpanel >> cronjob and add the following command to run in cron. /usr/bin/archivemail –quiet –delete –days 20 /home/{USER}/mail/inbox By using above command you can delete the 20 days old emails . Make […]