From 349ee4f76dd24be07bd7fca744bd85759c80341e Mon Sep 17 00:00:00 2001 From: Filippo Anarratone Date: Thu, 8 Feb 2018 17:17:02 +0000 Subject: [PATCH] Prevent Windows Defender from blocking CALDERA --- Vagrant/Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrant/Vagrantfile b/Vagrant/Vagrantfile index 68604cb..338246c 100644 --- a/Vagrant/Vagrantfile +++ b/Vagrant/Vagrantfile @@ -119,6 +119,7 @@ Vagrant.configure("2") do |config| cfg.vm.hostname = "win10" cfg.vm.communicator = "winrm" + cfg.vm.provision "shell", inline: "Set-MpPreference -ExclusionPath C:\\commander.exe, C:\\Tools" cfg.vm.network :private_network, ip: "192.168.38.4", gateway: "192.168.38.1", dns: "192.168.38.2" cfg.vm.provision "shell", path: "scripts/fix-second-network.ps1", privileged: false, args: "-ip 192.168.38.4 -dns 192.168.38.2"