diff --git a/atomics/T1050/T1050.md b/atomics/T1050/T1050.md
index 09247c8c..02997400 100644
--- a/atomics/T1050/T1050.md
+++ b/atomics/T1050/T1050.md
@@ -33,9 +33,14 @@ Installs A Local Service
**Supported Platforms:** Windows
+#### Inputs
+| Name | Description | Type | Default Value |
+|------|-------------|------|---------------|
+| binary_path | Name of the service binary, include path. | Path | C:\AtomicRedTeam\atomics\T1050\bin\AtomicSerivce.exe|
+
#### Run it with `command_prompt`!
```
-sc create TestService binPath="C:\Path\file.exe"
+sc create AtomicTestService binPath= #{binary_path}
```
@@ -46,8 +51,13 @@ Installs A Local Service via PowerShell
**Supported Platforms:** Windows
+#### Inputs
+| Name | Description | Type | Default Value |
+|------|-------------|------|---------------|
+| binary_path | Name of the service binary, include path. | Path | C:\AtomicRedTeam\atomics\T1050\bin\AtomicSerivce.exe|
+
#### Run it with `powershell`!
```
-powershell New-Service -Name "TestService" -BinaryPathName "C:\Path\file.exe"
+powershell New-Service -Name "AtomicTestService" -BinaryPathName "#{binary_path}"
```