Skip to main content

Fix error 'Operation aborted' when installing Microsoft Visual Studio Community 2015


Yesterday, I got 'Operation aborted'  when running vs_community_ENU.exe (209KB) to install Microsoft Visual Studio Community 2015 on a server running Microsoft Windows Server 2012 R2.

Try cleaning %Temp% folder and Run as Administrator: get sam error

Run to the following command to get log file:
vs_community_ENU.exe /l vs_community_ENU.log
Log file's content

[13B4:2064][2017-02-04T22:53:28]i000: === Logging started: 2017-02-04T22:53:28+07:00 ===
[13B4:2064][2017-02-04T22:53:28]i000: Bootstrapper v14.0.6023.29133, Windows v6.2 (Build 9200: Service Pack 0), command line: vs_community_ENU.exe  /l vs_community_ENU.log
[13B4:2064][2017-02-04T22:53:28]i000: Detected bundles: 0, related: 0
[13B4:2064][2017-02-04T22:53:28]i000: Downloading http://go.microsoft.com/fwlink/?LinkId=532606&clcid=0x409 with IFileOperation, file: C:\Users\ADMINI~1\AppData\Local\Temp\2\{5146D553-06B4-422A-9690-1F7ACCE85DF1}\vs_community.exe, attempt: 1
[13B4:2064][2017-02-04T22:53:29]i000: User canceled the download or was disconnected.
[13B4:2064][2017-02-04T22:53:29]e000: Error 0x80004004: Failed to download bundle: http://go.microsoft.com/fwlink/?LinkId=532606&clcid=0x409
[13B4:2064][2017-02-04T22:53:29]e000: Error 0x80004004: Failed to download bundle.
[13B4:2064][2017-02-04T22:53:35]i000: Process exit code: 0x80004004 (-2147467260)

Fixed:
Download vs_community.exe (3.373KB) from http://go.microsoft.com/fwlink/?LinkId=532606&clcid=0x409
then install successfully!



Popular posts from this blog

MSSQL: Fix error 'Consistency validation for SQL Server registry keys'

While installing Microsof SQL Server 2012, I ran into the following error. "The SQL Server registry keys from a prior installation cannot be modified. To continue, see SQL Server Setup documentation about how to fix registry keys." How to fix Replace the D:\x64\FixSqlRegistryKey_x86.exe file with the original file from the ENU\SQLFULL_ENU.iso file downloading from Microsoft Download Center. This ISO file is 4.2GB. So you can click FixSqlRegistryKey_x86.exe to download this file only. After replacing that file, press Re-run to check. All rules are passed.

Export All Group Policy Objects

PS C:\Users\Administrator> Import-Module GroupPolicy PS C:\Users\Administrator> $today = Get-Date -F yyyyMMdd PS C:\Users\Administrator> $domain = "practicehabits.net" PS C:\Users\Administrator> Get-GPOReport -All -ReportType XML -Domain $domain -Path C:\Audit\GPOReportsAll-$today.xml PS C:\Users\Administrator> Get-GPOReport -All -ReportType HTML -Domain $domain -Path C:\Audit\GPOReportsAll-$today.html