Predicting_real_estate_prices_using_scikit-learn
Predicting_real_estate_prices_using_scikit-learn copied to clipboard
[CMDUTILS] Implement /t (tree) parameter in taskkill. CORE-15998
Purpose
I have reversed taskkill in Windows and see it may use WMI via COM but I don't know how to implement it so I just use CreateToolhelp32Snapshot API to list child processes.
JIRA issue: CORE-15998
Proposed changes
Describe what you propose to change/add/fix with this pull request.
- Use
CreateToolhelp32SnapshotAPI to list child processes. - Use an array
pkill_listto contain process id then iterate it to kill processes.