|
1 |
| -# Download AIM Drivers and validate hash |
2 |
| -Invoke-WebRequest "https://github.com/ArsenalRecon/Arsenal-Image-Mounter/raw/988930e4b3180ec34661504e6f9906f98943a022/DriverSetup/DriverFiles.zip" -OutFile "aim_drivers.zip" -UseBasicParsing |
3 |
| -$aimDriversDownloadHash = (Get-FileHash aim_drivers.zip -a sha256).Hash |
4 |
| -If ($aimDriversDownloadHash -ne "1F5AA5DD892C2D5E8A0083752B67C6E5A2163CD83B6436EA545508D84D616E02") { |
5 |
| - throw "aim_drivers.zip hash is ${aimDriversDownloadHash} which didn't match the known version." |
6 |
| -} |
7 |
| -Expand-Archive -Path "aim_drivers.zip" |
| 1 | +$aimContents = "./aim"; |
| 2 | + |
| 3 | +if (-not (Test-Path -Path $aimContents)) { |
| 4 | + echo "Arsenal Image Mounter files not found in cache. Downloading..." |
| 5 | + |
| 6 | + # Download AIM Drivers and validate hash |
| 7 | + Invoke-WebRequest "https://github.com/ArsenalRecon/Arsenal-Image-Mounter/raw/988930e4b3180ec34661504e6f9906f98943a022/DriverSetup/DriverFiles.zip" -OutFile "aim_drivers.zip" -UseBasicParsing |
| 8 | + $aimDriversDownloadHash = (Get-FileHash aim_drivers.zip -a sha256).Hash |
| 9 | + If ($aimDriversDownloadHash -ne "1F5AA5DD892C2D5E8A0083752B67C6E5A2163CD83B6436EA545508D84D616E02") { |
| 10 | + throw "aim_drivers.zip hash is ${aimDriversDownloadHash} which didn't match the known version." |
| 11 | + } |
| 12 | + Expand-Archive -Path "aim_drivers.zip" -DestinationPath $aimContents/drivers |
8 | 13 |
|
9 |
| -# Download AIM CLI and validate hash |
10 |
| -Invoke-WebRequest "https://github.com/ArsenalRecon/Arsenal-Image-Mounter/raw/988930e4b3180ec34661504e6f9906f98943a022/Command%20line%20applications/aim_ll.zip" -OutFile "aim_ll.zip" -UseBasicParsing |
11 |
| -$aimCliDownloadHash = (Get-FileHash aim_ll.zip -a sha256).Hash |
12 |
| -If ($aimCliDownloadHash -ne "9AD3058F14595AC4A5E5765A9746737D31C219383766B624FCBA4C5ED96B20F3") { |
13 |
| - throw "aim_ll.zip hash is ${aimCliDownloadHash} which didn't match the known version." |
| 14 | + # Download AIM CLI and validate hash |
| 15 | + Invoke-WebRequest "https://github.com/ArsenalRecon/Arsenal-Image-Mounter/raw/988930e4b3180ec34661504e6f9906f98943a022/Command%20line%20applications/aim_ll.zip" -OutFile "aim_ll.zip" -UseBasicParsing |
| 16 | + $aimCliDownloadHash = (Get-FileHash aim_ll.zip -a sha256).Hash |
| 17 | + If ($aimCliDownloadHash -ne "9AD3058F14595AC4A5E5765A9746737D31C219383766B624FCBA4C5ED96B20F3") { |
| 18 | + throw "aim_ll.zip hash is ${aimCliDownloadHash} which didn't match the known version." |
| 19 | + } |
| 20 | + Expand-Archive -Path "aim_ll.zip" -DestinationPath $aimContents/cli |
| 21 | +} else { |
| 22 | + echo "Arsenal Image Mounter files found in cache. Skipping download." |
14 | 23 | }
|
15 |
| -Expand-Archive -Path "aim_ll.zip" |
16 | 24 |
|
17 | 25 | # Install AIM drivers
|
18 |
| -./aim_ll/x64/aim_ll.exe --install ./aim_drivers |
| 26 | +./aim/cli/x64/aim_ll.exe --install ./aim/drivers |
19 | 27 |
|
20 | 28 | # Setup RAM disk mount. Same parameters as ImDisk
|
21 | 29 | # See: https://support.circleci.com/hc/en-us/articles/4411520952091-Create-a-windows-RAM-disk
|
22 |
| -./aim_ll/x64/aim_ll.exe -a -s 5G -m X: -p "/fs:ntfs /q /y" |
| 30 | +./aim/cli/x64/aim_ll.exe -a -s 5G -m X: -p "/fs:ntfs /q /y" |
0 commit comments