Generated docs from job=generate-docs branch=master [ci skip]
This commit is contained in:
@@ -85846,13 +85846,22 @@ collection:
|
||||
atomic_tests:
|
||||
- name: using device audio capture commandlet
|
||||
auto_generated_guid: 9c3ad250-b185-4444-b5a9-d69218a10c95
|
||||
description: "[AudioDeviceCmdlets](https://github.com/cdhunt/WindowsAudioDevice-Powershell-Cmdlet)\n"
|
||||
description: |
|
||||
Uses AudioDeviceCmdlets to set the default recording device and simulate audio capture.
|
||||
Module repo: [AudioDeviceCmdlets](https://github.com/frgnca/AudioDeviceCmdlets)
|
||||
supported_platforms:
|
||||
- windows
|
||||
dependencies:
|
||||
- description: AudioDeviceCmdlets module must be installed
|
||||
prereq_command: "if (Get-Module -ListAvailable -Name AudioDeviceCmdlets) {
|
||||
exit 0 } else { exit 1 } \n"
|
||||
get_prereq_command: "Install with: Install-Module -Name AudioDeviceCmdlets
|
||||
-Force\" \n"
|
||||
executor:
|
||||
command: 'powershell.exe -Command WindowsAudioDevice-Powershell-Cmdlet
|
||||
|
||||
'
|
||||
command: |
|
||||
$mic = Get-AudioDevice -Recording
|
||||
Set-AudioDevice -ID $mic.ID
|
||||
Start-Sleep -Seconds 5
|
||||
name: powershell
|
||||
- name: Registry artefact when application use microphone
|
||||
auto_generated_guid: 7a21cce2-6ada-4f7c-afd9-e1e9c481e44a
|
||||
|
||||
@@ -70902,13 +70902,22 @@ collection:
|
||||
atomic_tests:
|
||||
- name: using device audio capture commandlet
|
||||
auto_generated_guid: 9c3ad250-b185-4444-b5a9-d69218a10c95
|
||||
description: "[AudioDeviceCmdlets](https://github.com/cdhunt/WindowsAudioDevice-Powershell-Cmdlet)\n"
|
||||
description: |
|
||||
Uses AudioDeviceCmdlets to set the default recording device and simulate audio capture.
|
||||
Module repo: [AudioDeviceCmdlets](https://github.com/frgnca/AudioDeviceCmdlets)
|
||||
supported_platforms:
|
||||
- windows
|
||||
dependencies:
|
||||
- description: AudioDeviceCmdlets module must be installed
|
||||
prereq_command: "if (Get-Module -ListAvailable -Name AudioDeviceCmdlets) {
|
||||
exit 0 } else { exit 1 } \n"
|
||||
get_prereq_command: "Install with: Install-Module -Name AudioDeviceCmdlets
|
||||
-Force\" \n"
|
||||
executor:
|
||||
command: 'powershell.exe -Command WindowsAudioDevice-Powershell-Cmdlet
|
||||
|
||||
'
|
||||
command: |
|
||||
$mic = Get-AudioDevice -Recording
|
||||
Set-AudioDevice -ID $mic.ID
|
||||
Start-Sleep -Seconds 5
|
||||
name: powershell
|
||||
- name: Registry artefact when application use microphone
|
||||
auto_generated_guid: 7a21cce2-6ada-4f7c-afd9-e1e9c481e44a
|
||||
|
||||
+14
-3
@@ -20,7 +20,8 @@ Malware or scripts may be used to interact with the devices through an available
|
||||
<br/>
|
||||
|
||||
## Atomic Test #1 - using device audio capture commandlet
|
||||
[AudioDeviceCmdlets](https://github.com/cdhunt/WindowsAudioDevice-Powershell-Cmdlet)
|
||||
Uses AudioDeviceCmdlets to set the default recording device and simulate audio capture.
|
||||
Module repo: [AudioDeviceCmdlets](https://github.com/frgnca/AudioDeviceCmdlets)
|
||||
|
||||
**Supported Platforms:** Windows
|
||||
|
||||
@@ -41,10 +42,20 @@ Set-AudioDevice -ID $mic.ID
|
||||
Start-Sleep -Seconds 5
|
||||
```
|
||||
|
||||
#### Dependencies
|
||||
|
||||
|
||||
|
||||
#### Dependencies: Run with `powershell`!
|
||||
##### Description: AudioDeviceCmdlets module must be installed
|
||||
##### Check Prereq Commands:
|
||||
```powershell
|
||||
Install-Module -Name AudioDeviceCmdlets -Force
|
||||
if (Get-Module -ListAvailable -Name AudioDeviceCmdlets) { exit 0 } else { exit 1 }
|
||||
```
|
||||
##### Get Prereq Commands:
|
||||
```powershell
|
||||
Install with: Install-Module -Name AudioDeviceCmdlets -Force"
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user