Knowledge Base » 2011 » November

Archive for November, 2011

How to reset the Plesk admin password

Wednesday, November 23rd, 2011

To reset the Plesk admin password on Windows servers, from the Plesk bin folder %plesk_bin% run the command plesksrvclient.exe “%plesk_bin%\plesksrvclient.exe” It will produce a pop-up box in which you can enter a new password. You will then be able to login to Plesk as admin using the new password. You can also see the existing […]


List running processes (command line)

Tuesday, November 8th, 2011

The following command-line outputs the list of running processes (with the complete command-line arguments used for each process) to a text file: Click Start, Run and type CMD Type the command given below exactly: WMIC /OUTPUT:C:\ProcessList.txt PROCESS get Caption,Commandline,Processid or WMIC /OUTPUT:C:\ProcessList.txt path win32_process get Caption,Processid,Commandline Now, open the file C:\ProcessList.txt. You can see the […]