diff --git a/README.md b/README.md index 51c98ec..f0a7ed9 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,9 @@ NOTE: This lab has not been hardened in any way and runs with default vagrant cr ## 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/) * [MacOS - Virtualbox or VMware Fusion](https://www.detectionlab.network/deployment/macosvm/) * [Windows - Virtualbox or VMware Workstation](https://www.detectionlab.network/deployment/windowsvm/) diff --git a/Vagrant/prepare.ps1 b/Vagrant/prepare.ps1 index 45201e2..e9d31cc 100644 --- a/Vagrant/prepare.ps1 +++ b/Vagrant/prepare.ps1 @@ -258,8 +258,9 @@ function preflight_checks { Write-Host '' Write-Host '[+] Checking if Virtual Machine Platform is 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 ' [-] 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 ' [-] 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 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 } }