Generate docs from job=validate_atomics_generate_docs branch=technique-fixup-cs

This commit is contained in:
CircleCI Atomic Red Team doc generator
2018-09-02 13:24:14 +00:00
parent 19bc330d2d
commit 7ce58bc1db
+12 -2
View File
@@ -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}
```
<br/>
<br/>
@@ -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}"
```
<br/>