diff --git a/payloads/library/execution/Stop_A_Single_Process_In_Windows/README.md b/payloads/library/execution/Stop_A_Single_Process_In_Windows/README.md
new file mode 100644
index 000000000..ef45ed521
--- /dev/null
+++ b/payloads/library/execution/Stop_A_Single_Process_In_Windows/README.md
@@ -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
+
+
Aleff :octocat:
+
+
+
+
+
+
+
+ Github
+ |
+
+
+
+
+ LinkedIn
+ |
+
+
+
diff --git a/payloads/library/execution/Stop_A_Single_Process_In_Windows/payload.txt b/payloads/library/execution/Stop_A_Single_Process_In_Windows/payload.txt
new file mode 100644
index 000000000..c36323dd3
--- /dev/null
+++ b/payloads/library/execution/Stop_A_Single_Process_In_Windows/payload.txt
@@ -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