ps example / powershell kill process / example / kill tree ps
adobe creative cloud 를 kill 하는 powershell script
powershell script
function Kill-Tree {
Param([int]$ppid)
Get-CimInstance Win32_Process | Where-Object { $_.ParentProcessId -eq $ppid } | ForEach-Object { Kill-Tree $_.ProcessId }
Stop-Process -Id $ppid
}
function Kill-Process {
# kill the processes which have the same names
Param([String]$pname)
echo "kill $pname"
$pids=(get-process $pname).id
For ($i=0; $i -lt $pids.length; $i++){
$pi = $pids[$i]
Kill-Tree $pi
}
}
Kill-Process "Adobe Desktop Service"
Kill-Process "AdobeIPCBroker"
Kill-Process "Creative Cloud Helper"
Kill-Process "CCXProcess"
Kill-Process "CCLibrary"
Kill-Process "CoreSync"
댓글 없음:
댓글 쓰기