Skip to content

Instantly share code, notes, and snippets.

@botlabsDev
Last active January 13, 2024 16:49
Show Gist options
  • Save botlabsDev/d2cca3fe03d0f78be9f917670f27ec2f to your computer and use it in GitHub Desktop.
Save botlabsDev/d2cca3fe03d0f78be9f917670f27ec2f to your computer and use it in GitHub Desktop.
One click setup for Flare-VM
#!/bin/bash
set -euxo pipefail
# Download Windows 10 and setup Flare-VM from https://github.com/fireeye/flare-vm
# with zero effort.
vagrant plugin install winrm winrm-elevated
vagrant init gusztavvargadr/windows-10
vagrant up
sleep 60
vagrant winrm --elevated --shell powershell -c 'cd $HOME/Desktop;
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/fireeye/flare-vm/master/install.ps1" -OutFile install.ps1;
./install.ps1 -password vagrant'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment