Skip to content

Commit

Permalink
Merge pull request #610 from mandiant/revert-608-internet-detector
Browse files Browse the repository at this point in the history
Revert "Add internet detector tool images"
  • Loading branch information
emtuls authored Aug 28, 2024
2 parents 3804904 + 7995ae9 commit 50adc99
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 9 deletions.
Binary file removed Images/VM/flarevm-background-internet.png
Binary file not shown.
Binary file removed Images/VM/indicator_off.ico
Binary file not shown.
Binary file removed Images/VM/indicator_on.ico
Binary file not shown.
File renamed without changes
10 changes: 1 addition & 9 deletions install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -920,18 +920,10 @@ choco install debloat.vm -y --force

# Download FLARE VM background image
$backgroundImage = "${Env:VM_COMMON_DIR}\background.png"
(New-Object net.webclient).DownloadFile('https://raw.githubusercontent.com/mandiant/flare-vm/main/Images/VM/flarevm-background.png', $backgroundImage)
(New-Object net.webclient).DownloadFile('https://raw.githubusercontent.com/mandiant/flare-vm/main/Images/flarevm-background.png', $backgroundImage)
# Use background image for lock screen as well
$lockScreenImage = "${Env:VM_COMMON_DIR}\lockscreen.png"
Copy-Item $backgroundImage $lockScreenImage
# Download FLARE VM (internet enabled) background image
$backgroundInternetImage = "${Env:VM_COMMON_DIR}\background-internet.png"
(New-Object net.webclient).DownloadFile('https://raw.githubusercontent.com/mandiant/flare-vm/main/Images/VM/flarevm-background-internet.png', $backgroundInternetImage)
# Download internet detection tool indicator icons
$indicatorImageOn = "${Env:VM_COMMON_DIR}\indicator_on.ico"
(New-Object net.webclient).DownloadFile('https://raw.githubusercontent.com/mandiant/flare-vm/main/Images/VM/indicator_on.ico', $indicatorImageOn)
$indicatorImageOff = "${Env:VM_COMMON_DIR}\indicator_off.ico"
(New-Object net.webclient).DownloadFile('https://raw.githubusercontent.com/mandiant/flare-vm/main/Images/VM/indicator_off.ico', $indicatorImageOff)

if (-not $noWait.IsPresent) {
# Show install notes and wait for timeout
Expand Down

0 comments on commit 50adc99

Please sign in to comment.