Merge pull request #135 from aleff-github/patch-2

Stop A Single Process In Windows
pull/178/head
Kalani Helekunihi 2023-06-12 15:35:35 -04:00 committed by GitHub
commit 6ddecd6be0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 59 additions and 0 deletions

View File

@ -0,0 +1,21 @@
# Stop A Single Process In Windows
This script can be used to quickly stop an active process on a windows machine.
**Category**: Execution
## Description
This script can be used to quickly stop an active process on a windows machine.
This script open the Task Manager app, then go to search bar, then write the process name that want to be stopped, open the right click mouse menu and click the end task option, then close the task manager app.
## Dependencies
* Nothing
## Settings
- Write the name of the process that you want to stop
`DEFINE PROCESS_NAME example`

View File

@ -0,0 +1,38 @@
REM #####################################################
REM # |
REM # Title : Stop A Single Process In Windows |
REM # Author : Aleff |
REM # Version : 1.0 |
REM # Category : Execution |
REM # Target : Windows 10/11 |
REM # |
REM #####################################################
REM Requirements:
REM - Nothing
REM Write the name of the process that you want to stop
DEFINE PROCESS_NAME example
DEFAULT_DELAY 500
REM Open Task Manager
GUI
STRINGLN Task Manager
REM Goto search bar
REPEAT 4 TAB
REM Write the process name
STRINGLN PROCESS_NAME
REPEAT 4 TAB
REM Open the menu and close it ending the task
SHIFT F10
REPEAT 2 DOWNARROW
ENTER
DELAY 2000
REM Close the task manager
ALT F4