Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

QUACKed - Stop A Single Process In Windows #590

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# 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

```shell
PROCESS_NAME='example'
```

## Credits

<h2 align="center"> Aleff :octocat: </h2>
<div align=center>
<table>
<tr>
<td align="center" width="96">
<a href="https://github.com/aleff-github">
<img src=https://github.com/aleff-github/aleff-github/blob/main/img/github.png?raw=true width="48" height="48" />
</a>
<br>Github
</td>
<td align="center" width="96">
<a href="https://www.linkedin.com/in/alessandro-greco-aka-aleff/">
<img src=https://github.com/aleff-github/aleff-github/blob/main/img/linkedin.png?raw=true width="48" height="48" />
</a>
<br>LinkedIn
</td>
</tr>
</table>
</div>
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
#####################################################
# #
# Title : Stop A Single Process In Windows #
# Author : Aleff #
# Version : 1.0 #
# Category : Execution #
# Target : Windows 10/11 #
# #
#####################################################

ATTACKMODE HID

# REQUIREMENTS
# - Nothing

# VARIABLES
# - Write the name of the process that you want to stop
PROCESS_NAME='example'

# Open Task Manager
QUACK DELAY 1500
QUACK GUI
QUACK DELAY 1000
QUACK STRING Task Manager
QUACK ENTER
QUACK DELAY 1000

# Goto search bar
QUACK TAB
QUACK DELAY 500
QUACK TAB
QUACK DELAY 500
QUACK TAB
QUACK DELAY 500
QUACK TAB
QUACK DELAY 500
QUACK STRING $PROCESS_NAME
QUACK DELAY 500
QUACK ENTER
QUACK DELAY 500
QUACK TAB
QUACK DELAY 500
QUACK TAB
QUACK DELAY 500
QUACK TAB
QUACK DELAY 500
QUACK TAB
QUACK DELAY 500

# Open the menu and close it ending the task
QUACK SHIFT F10
QUACK DELAY 500
QUACK DOWN_ARROW
QUACK DELAY 500
QUACK DOWN_ARROW
QUACK DELAY 500
QUACK ENTER
QUACK DELAY 2000

# Close the task manager
QUACK ALT F4