Generated docs from job=generate-docs branch=master [ci skip]

This commit is contained in:
Atomic Red Team doc generator
2023-05-31 21:04:38 +00:00
parent bf2a19d672
commit 03e04d3994
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -89210,7 +89210,7 @@ credential-access:
- description: ".Net v5 must be installed\n"
prereq_command: |
$exePath = resolve-path "$env:ProgramFiles\dotnet\shared\Microsoft.NETCore.App\5*\createdump.exe"
if (Test-Path $exePath) {exit 0} else {exit 1}
if ($exePath -and (Test-Path $exePath)) {exit 0} else {exit 1}
get_prereq_command: 'winget install Microsoft.DotNet.DesktopRuntime.5 --accept-source-agreements
--accept-package-agreements --silent
+1 -1
View File
@@ -77469,7 +77469,7 @@ credential-access:
- description: ".Net v5 must be installed\n"
prereq_command: |
$exePath = resolve-path "$env:ProgramFiles\dotnet\shared\Microsoft.NETCore.App\5*\createdump.exe"
if (Test-Path $exePath) {exit 0} else {exit 1}
if ($exePath -and (Test-Path $exePath)) {exit 0} else {exit 1}
get_prereq_command: 'winget install Microsoft.DotNet.DesktopRuntime.5 --accept-source-agreements
--accept-package-agreements --silent
+1 -1
View File
@@ -579,7 +579,7 @@ Remove-Item $env:Temp\dotnet-lsass.dmp -ErrorAction Ignore
##### Check Prereq Commands:
```powershell
$exePath = resolve-path "$env:ProgramFiles\dotnet\shared\Microsoft.NETCore.App\5*\createdump.exe"
if (Test-Path $exePath) {exit 0} else {exit 1}
if ($exePath -and (Test-Path $exePath)) {exit 0} else {exit 1}
```
##### Get Prereq Commands:
```powershell