mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-11-22 15:53:35 +01:00
338 lines
16 KiB
Docker
338 lines
16 KiB
Docker
# syntax=docker/dockerfile:1
|
|
# escape=`
|
|
ARG BUILD_BASE_IMAGE=mcr.microsoft.com/windows/servercore:ltsc2022
|
|
FROM $BUILD_BASE_IMAGE as builder_base
|
|
|
|
ARG PCRE2_VERSION=10.43
|
|
ARG OPENSSL_VERSION=3.1.5
|
|
ARG LIBMODBUS_VERSION=3.1.10
|
|
ARG ZLIB_VERSION=1.3.1
|
|
ARG CURL_VERSION=8.7.1
|
|
|
|
ARG BUILD_ARCH=x64
|
|
ARG CPU_MODEL=AMD64
|
|
|
|
ARG MAJOR_VERSION=6.4
|
|
ARG ZBX_VERSION=${MAJOR_VERSION}.18
|
|
|
|
ARG GIT_URL=https://github.com/git-for-windows/git/releases/download/v2.33.0.windows.2/MinGit-2.33.0.2-busybox-64-bit.zip
|
|
ARG PERL_URL=https://github.com/StrawberryPerl/Perl-Dist-Strawberry/releases/download/SP_53822_64bit/strawberry-perl-5.38.2.2-64bit-portable.zip
|
|
|
|
ARG VS_BUILDTOOLS_URL=https://aka.ms/vs/17/release/vs_buildtools.exe
|
|
ARG NASM_URL=https://www.nasm.us/pub/nasm/releasebuilds/2.16.03/win64/nasm-2.16.03-installer-x64.exe
|
|
|
|
ARG PCRE2_URL=https://github.com/PhilipHazel/pcre2/releases/download/pcre2-$PCRE2_VERSION/pcre2-$PCRE2_VERSION.zip
|
|
ARG OPENSSL_URL=https://www.openssl.org/source/openssl-$OPENSSL_VERSION.tar.gz
|
|
ARG LIBMODBUS_URL=https://github.com/stephane/libmodbus/archive/refs/tags/v$LIBMODBUS_VERSION.tar.gz
|
|
ARG ZLIB_URL=https://zlib.net/zlib-$ZLIB_VERSION.tar.gz
|
|
ARG CURL_URL=https://curl.se/download/curl-$CURL_VERSION.tar.gz
|
|
|
|
ENV ZBX_VERSION=$ZBX_VERSION `
|
|
BUILD_ARCH=$BUILD_ARCH CPU_MODEL=$CPU_MODEL `
|
|
GIT_URL=$GIT_URL PERL_URL=$PERL_URL NASM_URL=$NASM_URL `
|
|
VS_BUILDTOOLS_URL=$VS_BUILDTOOLS_URL `
|
|
PCRE2_VERSION=$PCRE2_VERSION OPENSSL_VERSION=$OPENSSL_VERSION LIBMODBUS_VERSION=$LIBMODBUS_VERSION `
|
|
PCRE2_URL=$PCRE2_URL OPENSSL_URL=$OPENSSL_URL LIBMODBUS_URL=$LIBMODBUS_URL `
|
|
ZLIB_URL=$ZLIB_URL CURL_URL=$CURL_URL
|
|
|
|
LABEL org.opencontainers.image.title="Zabbix agent build base for Windows" `
|
|
org.opencontainers.image.authors="Alexey Pustovalov <alexey.pustovalov@zabbix.com>" `
|
|
org.opencontainers.image.vendor="Zabbix SIA" `
|
|
org.opencontainers.image.url="https://zabbix.com/" `
|
|
org.opencontainers.image.description="Zabbix build base image contains all required packages to build Zabbix agent images" `
|
|
org.opencontainers.image.licenses="GPL v2.0" `
|
|
org.opencontainers.image.documentation="https://www.zabbix.com/documentation/${MAJOR_VERSION}/manual/installation/containers" `
|
|
org.opencontainers.image.version="${ZBX_VERSION}"
|
|
|
|
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
|
|
|
COPY modbus.vs16.* C:\build_src\libmodbus_project\
|
|
|
|
RUN Set-Location -Path $env:SystemDrive\.; `
|
|
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; `
|
|
`
|
|
$env:PATH = [string]::Format('{0}\perl\perl\bin;{1}\NASM;{0}\git\cmd;{0}\git\mingw64\bin;{0}\git\usr\bin;', $env:SystemDrive, ${env:ProgramFiles}) + $env:PATH; `
|
|
[Environment]::SetEnvironmentVariable('PATH', $env:PATH, [EnvironmentVariableTarget]::Machine); `
|
|
`
|
|
$env:BUILD_OUTPUT = [string]::Format('{0}\build_output', $env:SystemDrive); `
|
|
[Environment]::SetEnvironmentVariable('BUILD_OUTPUT', $env:BUILD_OUTPUT, [EnvironmentVariableTarget]::Machine); `
|
|
$env:BUILD_SRC = [string]::Format('{0}\build_src', $env:SystemDrive); `
|
|
[Environment]::SetEnvironmentVariable('BUILD_SRC', $env:BUILD_SRC, [EnvironmentVariableTarget]::Machine); `
|
|
`
|
|
Write-Host ('Downloading {0} ...' -f $env:GIT_URL); `
|
|
Invoke-WebRequest -OutFile $env:TEMP\git.zip -Uri $env:GIT_URL; `
|
|
`
|
|
$sha256 = '273f55e881094d00877d64f56570b0c997c4da5dedcb26738d56481033c1eba1'; `
|
|
$d_sha256 = (Get-FileHash $env:TEMP\git.zip -Algorithm sha256).Hash; `
|
|
Write-Host ('Verifying SHA256 ({0}) ...' -f $sha256); `
|
|
if ($d_sha256 -ne $sha256) { `
|
|
Write-Host ('Checksum GIT for Windows ({0}) failed!' -f $d_sha256); `
|
|
exit 1; `
|
|
}; `
|
|
`
|
|
Write-Host ('Downloading {0} ...' -f $env:NASM_URL); `
|
|
Invoke-WebRequest -OutFile $env:TEMP\nasm_installer.exe -Uri $env:NASM_URL; `
|
|
`
|
|
$sha256 = '657E1252676CFB26A008835C20A760F731C8E0414469A4ED0F83F0FB059CDD35'; `
|
|
$d_sha256 = (Get-FileHash $env:TEMP\nasm_installer.exe -Algorithm sha256).Hash; `
|
|
Write-Host ('Verifying SHA256 ({0}) ...' -f $sha256); `
|
|
if ((Get-FileHash $env:TEMP\nasm_installer.exe -Algorithm sha256).Hash -ne $sha256) { `
|
|
Write-Host ('Checksum NASM ({0}) failed!' -f $d_sha256); `
|
|
exit 1; `
|
|
}; `
|
|
`
|
|
Write-Host ('Downloading {0} ...' -f $env:PERL_URL); `
|
|
Invoke-WebRequest -OutFile $env:TEMP\perl.zip -Uri $env:PERL_URL; `
|
|
`
|
|
$sha256 = 'EA451686065D6338D7E4D4A04C9AF49F17951D15AA4C2E19AB8CB56FA2373440'; `
|
|
$d_sha256 = (Get-FileHash $env:TEMP\perl.zip -Algorithm sha256).Hash; `
|
|
Write-Host ('Verifying SHA256 ({0}) ...' -f $sha256); `
|
|
if ($d_sha256 -ne $sha256) { `
|
|
Write-Host ('Checksum Strawberry Perl ({0}) failed!' -f $d_sha256); `
|
|
exit 1; `
|
|
}; `
|
|
`
|
|
Write-Host ('Downloading {0} ...' -f $env:VS_BUILDTOOLS_URL); `
|
|
Invoke-WebRequest -OutFile $env:TEMP\vs_buildtools.exe $env:VS_BUILDTOOLS_URL; `
|
|
`
|
|
Write-Host 'Installing GIT...'; `
|
|
Expand-Archive `
|
|
-Path $env:TEMP\git.zip `
|
|
-DestinationPath $env:SystemDrive\git\.; `
|
|
`
|
|
Write-Host 'Verifying install ("git version") ...'; `
|
|
git version; `
|
|
Write-Host 'Installing NASM...'; `
|
|
Start-Process `
|
|
-FilePath $env:TEMP\nasm_installer.exe `
|
|
-ArgumentList '/S' -Wait; `
|
|
`
|
|
Write-Host 'Verifying install ("nasm -v") ...'; `
|
|
nasm -v; `
|
|
`
|
|
Write-Host 'Installing Perl...'; `
|
|
Expand-Archive -Path $env:TEMP\perl.zip -DestinationPath $env:SystemDrive\perl\; `
|
|
Remove-Item -Force -Recurse $env:SystemDrive\perl\c\; `
|
|
`
|
|
Write-Host 'Verifying install ("perl -V") ...'; `
|
|
perl -V; `
|
|
`
|
|
Write-Host ('{0} - Visual Studio components installing...' -f $(Get-Date -format 'u')); `
|
|
cmd /C start /w $env:TEMP\vs_buildtools.exe `
|
|
--quiet `
|
|
--wait `
|
|
--norestart `
|
|
--nocache `
|
|
--installPath """${env:ProgramFiles(x86)}\Microsoft Visual Studio\2022\BuildTools""" `
|
|
--channelUri https://aka.ms/vs/17/release/channel `
|
|
--installChannelUri https://aka.ms/vs/17/release/channel `
|
|
--channelId VisualStudio.17.Release `
|
|
# https://docs.microsoft.com/en-us/visualstudio/install/workload-component-id-vs-build-tools?view=vs-2022
|
|
--add Microsoft.VisualStudio.Component.Windows11SDK.22621 `
|
|
--add Microsoft.VisualStudio.Component.VC.CMake.Project; `
|
|
if ($err = dir $Env:TEMP -Filter dd_setup_*_errors.log | where Length -gt 0 | Get-Content) { `
|
|
throw $err; `
|
|
}; `
|
|
Wait-Process -name msiexec; `
|
|
Write-Host ('{0} - Visual Studio components installed' -f $(Get-Date -format 'u')); `
|
|
`
|
|
$env:VS_PATH = &(Join-Path ${env:ProgramFiles(x86)} """\Microsoft Visual Studio\Installer\vswhere.exe""") -latest -products Microsoft.VisualStudio.Product.BuildTools -property installationPath; `
|
|
[Environment]::SetEnvironmentVariable('VS_PATH', $env:VS_PATH, [EnvironmentVariableTarget]::Machine); `
|
|
`
|
|
Write-Host 'Visual Studio components installation cleanup'; `
|
|
Get-ChildItem -Path """${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer""" -Directory -Recurse | Remove-Item -Force -Recurse; `
|
|
`
|
|
Write-Host 'Removing downloaded...'; `
|
|
Remove-Item -Force -Recurse $env:TEMP\*; `
|
|
Write-Host 'Build environment is ready...'; `
|
|
`
|
|
Set-Location -Path $env:SystemDrive\.; `
|
|
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; `
|
|
`
|
|
New-Item -ItemType directory -Path $env:BUILD_OUTPUT -Force | Out-Null; `
|
|
New-Item -ItemType directory -Path $env:BUILD_SRC -Force | Out-Null; `
|
|
Set-Location -Path $env:BUILD_SRC; `
|
|
`
|
|
Write-Host ('Downloading {0} ...' -f $env:PCRE2_URL); `
|
|
Invoke-WebRequest -OutFile $env:TEMP\pcre2.zip -Uri $env:PCRE2_URL; `
|
|
`
|
|
$sha256 = 'F2816E84DD7A402068797501BF69E24ECA18D882ADB2143DE9F831F39B850257'; `
|
|
$d_sha256 = (Get-FileHash $env:TEMP\pcre2.zip -Algorithm sha256).Hash; `
|
|
Write-Host ('Verifying SHA256 ({0}) ...' -f $sha256); `
|
|
if ($d_sha256 -ne $sha256) { `
|
|
Write-Host ('Checksum PCRE2 library ({0}) failed!' -f $d_sha256); `
|
|
exit 1; `
|
|
}; `
|
|
`
|
|
Write-Host ('Downloading {0} ...' -f $env:OPENSSL_URL); `
|
|
Invoke-WebRequest -OutFile $env:TEMP\openssl.tar.gz -Uri $env:OPENSSL_URL; `
|
|
`
|
|
$sha256 = '6ae015467dabf0469b139ada93319327be24b98251ffaeceda0221848dc09262'; `
|
|
$d_sha256 = (Get-FileHash $env:TEMP\openssl.tar.gz -Algorithm sha256).Hash; `
|
|
Write-Host ('Verifying SHA256 ({0}) ...' -f $sha256); `
|
|
if ($d_sha256 -ne $sha256) { `
|
|
Write-Host ('Checksum OpenSSL library ({0}) failed!' -f $d_sha256); `
|
|
exit 1; `
|
|
}; `
|
|
`
|
|
Write-Host ('Downloading {0} ...' -f $env:LIBMODBUS_URL); `
|
|
Invoke-WebRequest -OutFile $env:TEMP\libmodbus.tar.gz -Uri $env:LIBMODBUS_URL; `
|
|
`
|
|
$sha256 = 'E93503749CD89FDA4C8CF1EE6371A3A9CC1F0A921C165AFBBC4FD96D4813FA1A'; `
|
|
$d_sha256 = (Get-FileHash $env:TEMP\libmodbus.tar.gz -Algorithm sha256).Hash; `
|
|
Write-Host ('Verifying SHA256 ({0}) ...' -f $sha256); `
|
|
if ($d_sha256 -ne $sha256) { `
|
|
Write-Host ('Checksum Libmodbus library ({0}) failed!' -f $d_sha256); `
|
|
exit 1; `
|
|
}; `
|
|
`
|
|
Write-Host ('Downloading {0} ...' -f $env:ZLIB_URL); `
|
|
Invoke-WebRequest -OutFile $env:TEMP\zlib.tar.gz -Uri $env:ZLIB_URL; `
|
|
`
|
|
$sha256 = '9A93B2B7DFDAC77CEBA5A558A580E74667DD6FEDE4585B91EEFB60F03B72DF23'; `
|
|
$d_sha256 = (Get-FileHash $env:TEMP\zlib.tar.gz -Algorithm sha256).Hash; `
|
|
Write-Host ('Verifying SHA256 ({0}) ...' -f $sha256); `
|
|
if ($d_sha256 -ne $sha256) { `
|
|
Write-Host ('Checksum Zlib library ({0}) failed!' -f $d_sha256); `
|
|
exit 1; `
|
|
}; `
|
|
`
|
|
Write-Host ('Downloading {0} ...' -f $env:CURL_URL); `
|
|
Invoke-WebRequest -OutFile $env:TEMP\curl.tar.gz -Uri $env:CURL_URL; `
|
|
`
|
|
$sha256 = 'F91249C87F68EA00CF27C44FDFA5A78423E41E71B7D408E5901A9896D905C495'; `
|
|
$d_sha256 = (Get-FileHash $env:TEMP\curl.tar.gz -Algorithm sha256).Hash; `
|
|
Write-Host ('Verifying SHA256 ({0}) ...' -f $sha256); `
|
|
if ($d_sha256 -ne $sha256) { `
|
|
Write-Host ('Checksum Curl library ({0}) failed!' -f $d_sha256); `
|
|
exit 1; `
|
|
}; `
|
|
`
|
|
Write-Host 'Extracting PCRE2 archive ...'; `
|
|
Expand-Archive -Path $env:TEMP\pcre2.zip -DestinationPath $env:BUILD_SRC; `
|
|
Rename-Item -Path $env:BUILD_SRC\pcre2-$env:PCRE2_VERSION -NewName $env:BUILD_SRC\pcre2; `
|
|
New-Item -ItemType directory -Path "$env:BUILD_SRC\pcre2\build" | Out-Null; `
|
|
`
|
|
Write-Host 'Extracting OpenSSL archive ...'; `
|
|
tar -zxf $env:TEMP\openssl.tar.gz; `
|
|
Rename-Item -Path $env:BUILD_SRC\openssl-$env:OPENSSL_VERSION -NewName $env:BUILD_SRC\openssl; `
|
|
`
|
|
Write-Host 'Extracting Libmodbus archive ...'; `
|
|
tar -zxf $env:TEMP\libmodbus.tar.gz; `
|
|
Move-Item -Path $env:BUILD_SRC\libmodbus-$env:LIBMODBUS_VERSION\ -Destination $env:BUILD_SRC\libmodbus; `
|
|
Move-Item -Path $env:BUILD_SRC\libmodbus_project\* -Destination $env:BUILD_SRC\libmodbus\src\win32; `
|
|
`
|
|
Write-Host 'Extracting Zlib archive ...'; `
|
|
tar -zxf $env:TEMP\zlib.tar.gz; `
|
|
Move-Item -Path $env:BUILD_SRC\zlib-$env:ZLIB_VERSION\ -Destination $env:BUILD_SRC\zlib; `
|
|
`
|
|
Write-Host 'Extracting CURL archive ...'; `
|
|
tar -zxf $env:TEMP\curl.tar.gz; `
|
|
Move-Item -Path $env:BUILD_SRC\curl-$env:CURL_VERSION\ -Destination $env:BUILD_SRC\curl; `
|
|
`
|
|
Set-Location -Path $env:SystemDrive\.; `
|
|
`
|
|
Import-Module (Get-ChildItem $env:VS_PATH -Recurse -File -Filter Microsoft.VisualStudio.DevShell.dll).FullName; `
|
|
Enter-VsDevShell -VsInstallPath $env:VS_PATH -SkipAutomaticLocation -DevCmdArguments """-arch=$env:BUILD_ARCH"""; `
|
|
`
|
|
Write-Host 'Building Zlib library...'; `
|
|
Set-Location -Path $env:BUILD_SRC\zlib; `
|
|
(Get-Content .\win32\Makefile.msc).replace('-MD', '-MT') | Set-Content .\win32\Makefile.msc; `
|
|
set CL=/MP; `
|
|
nmake /S -f .\win32\Makefile.msc; `
|
|
New-Item -ItemType directory -Path $env:BUILD_OUTPUT\zlib | Out-Null; `
|
|
New-Item -ItemType directory -Path $env:BUILD_OUTPUT\zlib\include | Out-Null; `
|
|
New-Item -ItemType directory -Path $env:BUILD_OUTPUT\zlib\lib | Out-Null; `
|
|
Copy-Item $env:BUILD_SRC\zlib\*.h -Destination $env:BUILD_OUTPUT\zlib\include; `
|
|
Copy-Item $env:BUILD_SRC\zlib\zlib.lib -Destination $env:BUILD_OUTPUT\zlib\lib; `
|
|
Copy-Item $env:BUILD_SRC\zlib\zlib.pdb -Destination $env:BUILD_OUTPUT\zlib\lib; `
|
|
nmake /S -f .\win32\Makefile.msc clean | Out-Null; `
|
|
Write-Host 'Zlib is ready...'; `
|
|
`
|
|
Write-Host 'Building OpenSSL library...'; `
|
|
Set-Location -Path $env:BUILD_SRC\openssl; `
|
|
perl $env:BUILD_SRC\openssl\Configure `
|
|
VC-WIN64A `
|
|
no-shared `
|
|
no-ui-console `
|
|
no-tests `
|
|
no-unit-test `
|
|
no-capieng `
|
|
--api=1.1.0 `
|
|
--prefix=$env:BUILD_OUTPUT\openssl `
|
|
--openssldir=$env:BUILD_OUTPUT\openssl_ssl; `
|
|
set CL=/MP; `
|
|
nmake /S build_sw; `
|
|
nmake /S install_dev; `
|
|
nmake /S clean | Out-Null; `
|
|
Write-Host 'OpenSSL is ready...'; `
|
|
`
|
|
Write-Host 'Building PCRE2 library ...'; `
|
|
Set-Location -Path $env:BUILD_SRC\pcre2\build; `
|
|
cmake --log-level=ERROR `
|
|
-G 'Visual Studio 17 2022' `
|
|
-A $env:BUILD_ARCH `
|
|
-DBUILD_SHARED_LIBS=OFF `
|
|
-DPCRE2_BUILD_TESTS=OFF `
|
|
-DCMAKE_C_FLAGS_RELEASE:string="""/MT""" ..; `
|
|
msbuild PCRE2.sln `
|
|
-maxcpucount:"""$env:NUMBER_OF_PROCESSORS""" `
|
|
/verbosity:quiet `
|
|
/property:Configuration=Release `
|
|
/property:Platform=$env:BUILD_ARCH `
|
|
/target:pcre2-8-static; `
|
|
`
|
|
New-Item -ItemType directory -Path $env:BUILD_OUTPUT\pcre2 | Out-Null; `
|
|
New-Item -ItemType directory -Path $env:BUILD_OUTPUT\pcre2\include | Out-Null; `
|
|
New-Item -ItemType directory -Path $env:BUILD_OUTPUT\pcre2\lib | Out-Null; `
|
|
Copy-Item $env:BUILD_SRC\pcre2\build\*.h -Destination $env:BUILD_OUTPUT\pcre2\include; `
|
|
Copy-Item $env:BUILD_SRC\pcre2\build\Release\* -Destination $env:BUILD_OUTPUT\pcre2\lib; `
|
|
Remove-Item -Path $env:BUILD_SRC\pcre2\build\* -Force -Recurse; `
|
|
Write-Host 'PCRE2 is ready...'; `
|
|
`
|
|
Write-Host 'Building Libmodbus library...'; `
|
|
`
|
|
Set-Location -Path $env:BUILD_SRC\libmodbus\src\win32; `
|
|
cscript .\configure.js; `
|
|
msbuild modbus.vs16.sln `
|
|
-maxcpucount:"""$env:NUMBER_OF_PROCESSORS""" `
|
|
/verbosity:quiet `
|
|
/property:Configuration=Release `
|
|
/property:Platform=$env:BUILD_ARCH; `
|
|
`
|
|
New-Item -ItemType directory -Path $env:BUILD_OUTPUT\libmodbus | Out-Null; `
|
|
New-Item -ItemType directory -Path $env:BUILD_OUTPUT\libmodbus\include | Out-Null; `
|
|
New-Item -ItemType directory -Path $env:BUILD_OUTPUT\libmodbus\lib | Out-Null; `
|
|
Copy-Item $env:BUILD_SRC\libmodbus\src\*.h -Destination $env:BUILD_OUTPUT\libmodbus\include; `
|
|
Copy-Item $env:BUILD_SRC\libmodbus\src\win32\$env:BUILD_ARCH\Release\*.lib -Destination $env:BUILD_OUTPUT\libmodbus\lib; `
|
|
Copy-Item $env:BUILD_SRC\libmodbus\src\win32\$env:BUILD_ARCH\Release\*.pdb -Destination $env:BUILD_OUTPUT\libmodbus\lib; `
|
|
Remove-Item -Path $env:BUILD_SRC\libmodbus\src\win32\$env:BUILD_ARCH -Force -Recurse; `
|
|
Write-Host 'Libmodbus is ready...'; `
|
|
`
|
|
Write-Host 'Building Curl library...'; `
|
|
Set-Location -Path $env:BUILD_SRC\curl\winbuild; `
|
|
(Get-Content MakefileBuild.vc).replace(' wldap32.lib', '') | Set-Content MakefileBuild.vc; `
|
|
set CL=/MP; `
|
|
nmake /S -f Makefile.vc `
|
|
mode=static `
|
|
VC=17 `
|
|
DEBUG=no `
|
|
CC="""cl.exe /DCURL_DISABLE_LDAP /DCURL_DISABLE_LDAPS""" `
|
|
MACHINE=$env:BUILD_ARCH `
|
|
USE_IPV6=yes `
|
|
ENABLE_UNICODE=yes `
|
|
USE_IDN=no `
|
|
GEN_PDB=no `
|
|
WITH_SSL=static `
|
|
SSL_PATH=$env:BUILD_OUTPUT\openssl `
|
|
WITH_ZLIB=static `
|
|
ZLIB_PATH=$env:BUILD_OUTPUT\zlib `
|
|
RTLIBCFG=static; `
|
|
`
|
|
Move-Item -Path $env:BUILD_SRC\curl\builds\libcurl-vc17-$env:BUILD_ARCH-release-static-ssl-static-zlib-static-sspi\ -Destination $env:BUILD_OUTPUT\curl; `
|
|
Remove-Item -Path $env:BUILD_SRC\curl\builds\* -Force -Recurse; `
|
|
Write-Host 'Curl is ready...'; `
|
|
`
|
|
Write-Host 'Removing downloaded...'; `
|
|
Remove-Item -Force -Recurse $env:TEMP\*;
|