The memory of the company's computer is getting tight. Some temporarily unused software processes in the computer will start with the boot and do not want to uninstall the software. Use the taskkill command in windows to terminate the process to be terminated.
Create a txt file with the command taskkill. bat. Copy the following command to save it.
@ Echo off
Taskkill/F/IM vm */T
Taskkill/F/IM apple */T
Taskkill/F/IM sogoucloud.exe/T
Taskkill/F/IM itunes */T
Taskkill parameter description
/S system specifies the remote system to connect.
/U [domain \] user specifies the user context in which the command should be executed.
/P [password] specifies a password for the provided user context. If this parameter is ignored, a prompt is displayed.
/F specifies the process to be forcibly terminated.
/FI filter specifies to filter in or out the query tasks.
/PID process id specifies the PID of the process to terminate.
/IM image name specifies the image name of the process to terminate. The wildcard '*' can be used to specify all image names.
/T Tree kill: Terminate the specified process and any sub-processes that are started from this process.
/? Show Help/usage.