We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be good if we could use Get-InstalledVcRedist to just update any currently installed runtimes.
Get-InstalledVcRedist
e.g. Install-VcRedist -VcList (Get-InstalledVcRedist -ExportAll) | Save-VcRedist -Path c:\Temp
Install-VcRedist -VcList (Get-InstalledVcRedist -ExportAll) | Save-VcRedist -Path c:\Temp
The text was updated successfully, but these errors were encountered:
You can do this:
$Path = "$Env:SystemRoot\Temp\VcRedist" New-Item -Path $Path -ItemType "Directory" $InstalledVcRedist = Get-InstalledVcRedist Get-VcList -Export All | Where-Object { $_.Release -in $InstalledVcRedist.Release -and $_.Architecture -in $InstalledVcRedist.Architecture } | Save-VcRedist -Path $Path | Install-VcRedist
Sorry, something went wrong.
No branches or pull requests
It would be good if we could use
Get-InstalledVcRedist
to just update any currently installed runtimes.e.g.
Install-VcRedist -VcList (Get-InstalledVcRedist -ExportAll) | Save-VcRedist -Path c:\Temp
The text was updated successfully, but these errors were encountered: