Skip to content
New issue

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

Add Microsoft Visual Studio 2010 Shell (Isolated) - ENU #921

Closed
IlyaFinkelshteyn opened this issue Jul 14, 2016 · 0 comments
Closed

Add Microsoft Visual Studio 2010 Shell (Isolated) - ENU #921

IlyaFinkelshteyn opened this issue Jul 14, 2016 · 0 comments

Comments

@IlyaFinkelshteyn
Copy link
Contributor

IlyaFinkelshteyn commented Jul 14, 2016

Temporary workaround:

if ((Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall* | Where-Object {$_.DisplayName -eq "Microsoft Visual Studio 2010 Shell (Isolated) - ENU"}) -ne $null)
{
    Write-Host "Microsoft Visual Studio 2010 Shell (Isolated) Redistributable Package already installed."
} else {
    Measure-command {
        Write-Host "Downloading Microsoft Visual Studio 2010 Shell (Isolated) Redistributable Package..."
        $exePath = "$env:TEMP\VSIsoShell.exe"
        (New-Object Net.WebClient).DownloadFile('https://download.microsoft.com/download/1/9/3/1939AD78-F8E8-4336-83F3-E2470F422C62/VSIsoShell.exe', $exePath)
        Write-Host "Installing Microsoft Visual Studio 2010 Shell (Isolated) Redistributable Package..."
        cmd /c start /wait "$exePath" /q /norestart
        del $exePath
    }
}
@IlyaFinkelshteyn IlyaFinkelshteyn modified the milestone: jul-17 Jul 14, 2016
@FeodorFitsner FeodorFitsner modified the milestones: jul-17, 7-aug-2016 Aug 4, 2016
@FeodorFitsner FeodorFitsner changed the title Add Microsoft Visual Studio 2010 Shell (Isolated) - ENU to GCE VHD Add Microsoft Visual Studio 2010 Shell (Isolated) - ENU Aug 5, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants