From 2f25035eb7910770df6163dd7584473e18eb7248 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Wed, 1 Apr 2020 17:36:03 +0200 Subject: [PATCH] exclude for virus scan --- scripts/windows_agent_bootstrap.ps1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/windows_agent_bootstrap.ps1 b/scripts/windows_agent_bootstrap.ps1 index f1e4165..3a7fbb5 100644 --- a/scripts/windows_agent_bootstrap.ps1 +++ b/scripts/windows_agent_bootstrap.ps1 @@ -44,5 +44,8 @@ Set-Service -Name docker -StartupType AutomaticDelayedStart # TODO: find a better way to install the Google Cloud SDK, avoid ingoring the checksum choco install -y gcloudsdk --ignore-checksums +# exclude drive d from Virus scans, to get better performance +Add-MpPreference -ExclusionPath “D:\” + # Reboot Restart-Computer -Force