Upload files to "Windows"

This commit is contained in:
Upgrayedd 2024-07-30 23:46:47 -05:00
parent e899ad0676
commit a3f57399a9

61
Windows/install.ps1 Normal file
View file

@ -0,0 +1,61 @@
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSAvoidUsingWriteHost", "", Justification="Install script called at console")]
<#
.SYNOPSIS
Install the VcRedist module and all supported VcRedists on the local system.
.DESCRIPTION
Installs the VcRedist PowerShell module and installs the default Microsoft Visual C++ Redistributables on the local system.
.NOTES
Copyright 2023, Aaron Parker, stealthpuppy.com
#>
[CmdletBinding()]
param (
[Parameter(Mandatory = $false)]
[System.String] $Path = "$env:Temp\VcRedist"
)
#region Trust the PSGallery for modules
$Repository = "PSGallery"
if (Get-PSRepository | Where-Object { $_.Name -eq $Repository -and $_.InstallationPolicy -ne "Trusted" }) {
try {
Write-Host "Trusting the repository: $Repository."
Install-PackageProvider -Name "NuGet" -MinimumVersion 2.8.5.208 -Force
Set-PSRepository -Name $Repository -InstallationPolicy "Trusted"
}
catch {
throw $_
}
}
#region
#region Install the VcRedist module; https://vcredist.com/
$Module = "VcRedist"
Write-Host "Checking whether module is installed: $Module."
$installedModule = Get-Module -Name $Module -ListAvailable -ErrorAction "SilentlyContinue" | `
Sort-Object -Property @{ Expression = { [System.Version]$_.Version }; Descending = $true } | `
Select-Object -First 1
$publishedModule = Find-Module -Name $Module -ErrorAction "SilentlyContinue"
if (($null -eq $installedModule) -or ([System.Version]$publishedModule.Version -gt [System.Version]$installedModule.Version)) {
Write-Host "Installing module: $Module $($publishedModule.Version)."
$params = @{
Name = $Module
SkipPublisherCheck = $true
Force = $true
ErrorAction = "Stop"
}
Install-Module @params
}
#endregion
#region tasks/install apps
Write-Host "Saving VcRedists to path: $Path."
New-Item -Path $Path -ItemType "Directory" -Force -ErrorAction "SilentlyContinue" > $null
Write-Host "Downloading and installing supported Microsoft Visual C++ Redistributables."
$Redists = Get-VcList | Save-VcRedist -Path $Path | Install-VcRedist -Silent
Write-Host "Installed Visual C++ Redistributables:"
$Redists | Select-Object -Property "Name", "Release", "Architecture", "Version" -Unique
#endregion