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. […]
Posts by seemab:
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 import .csv files in the database from phpmyadmin
Before proceeding further, keep in mind few things to efficiently transfer .csv files in the database from phpmyadmin. Saved your csv file into excel file. Please Do not save it as any other format, check it with a written text such as notepad . Each line must be separated by a comma (,). This is […]
How to scan FTP uploaded files on cPanel Servers
First make sure to install clamAV,We ave already discuss in our previous articles how to install and run clamAV on server. Clam ANTIVIRUS is a free and open-source, cross-platform antivirus software tool-kit which has now been included in Cpanel/WHM. It detect many types of malicious software, including viruses. One of its basic use is on […]
How to record/save all user terminal activity automatically
As a server administration you may need to record/save all user terminal activity, so that you can check and identify the problem, if anything happened wrong on server. It can be done easily using script command. you can done this by adding below script to common “profile” file at /etc/profile. Now that is all automated […]