Merge branch 'master' into PR1

This commit is contained in:
Tyler Bennett
2021-03-01 09:48:16 -06:00
committed by GitHub
2 changed files with 6 additions and 2 deletions

View File

@@ -42,6 +42,9 @@ NOTE: This lab has not been hardened in any way and runs with default vagrant cr
## Building Detection Lab ## Building Detection Lab
When preparing to build DetectionLab locally, be sure to use the `prepare.[sh|ps1]` scripts inside of the Vagrant folder
to ensure your system passes the prerequisite checks for building DetectionLab.
* [Prerequisites](https://www.detectionlab.network/introduction/prerequisites/) * [Prerequisites](https://www.detectionlab.network/introduction/prerequisites/)
* [MacOS - Virtualbox or VMware Fusion](https://www.detectionlab.network/deployment/macosvm/) * [MacOS - Virtualbox or VMware Fusion](https://www.detectionlab.network/deployment/macosvm/)
* [Windows - Virtualbox or VMware Workstation](https://www.detectionlab.network/deployment/windowsvm/) * [Windows - Virtualbox or VMware Workstation](https://www.detectionlab.network/deployment/windowsvm/)

View File

@@ -258,8 +258,9 @@ function preflight_checks {
Write-Host '' Write-Host ''
Write-Host '[+] Checking if Virtual Machine Platform is enabled...' Write-Host '[+] Checking if Virtual Machine Platform is enabled...'
if ((Get-WindowsOptionalFeature -Online -FeatureName "VirtualMachinePlatform").State -eq "Enabled") { if ((Get-WindowsOptionalFeature -Online -FeatureName "VirtualMachinePlatform").State -eq "Enabled") {
Write-Host ' [-] The "Virtual Machine Platform" Windows feature is enabled on your computer and is known to cause issues with starting Virtualbox VMs' -ForegroundColor yellow Write-Host ' [-] The "Virtual Machine Platform" Windows feature is enabled on your computer and is known to cause issues with certain versions of Virtualbox.' -ForegroundColor yellow
Write-Host ' [-] If you experience issues with Virtualbox, it is recommended to disable it by running "optionalfeatures" from the run prompt and unchecking "Virtual Machine Platform".' -ForegroundColor yellow Write-Host ' [-] If you experience issues with Virtualbox, it is recommended to disable it by running "optionalfeatures" from the Windows run prompt and unchecking "Virtual Machine Platform".' -ForegroundColor yellow
Write-Host ' [-] More information can be found at https://superuser.com/a/1619173' -ForegroundColor yellow
} }
} }