web-dev-qa-db-ja.com

Microsoft Visual Studio「セットアップがブロックされました」

Microsoft Visual Studio 2015をインストールしようとすると、「Setup Blocked」というエラーが表示されます。 「セットアップを続行するには、コンピューターを再起動する必要があります。コンピューターを再起動して、セットアップを再度実行してください。」そうした後、それはまだ動作しません...私はWindows 10 Build 10130でこれはログファイルの最後のビットです:

    [0A60:1530][2015-07-10T18:48:06]i101: Detected package: VSSetupUtility_Complete_vs_community, state: Absent, cached: None
    [0A60:1530][2015-07-10T18:48:06]i000: MUX:  Setup update feature is enabled. Evaluating conditions to determine whether to run setup update.
    [0A60:1530][2015-07-10T18:48:06]i000: MUX:  Checking http://go.Microsoft.com/fwlink/?LinkID=500683 for update.
    [0A60:1530][2015-07-10T18:48:07]e000: MUX:  Exception: Info: Could not download update data.
    [0A60:1530][2015-07-10T18:48:07]e000: MUX:  WARNING: For security reasons DTD is prohibited in this XML document. To enable DTD processing set the ProhibitDtd property on XmlReaderSettings to false and pass the settings into XmlReader.Create method.
    [0A60:1530][2015-07-10T18:48:07]e000: MUX:  Stack:    at System.Xml.XmlTextReaderImpl.Throw(Exception e)
       at System.Xml.XmlTextReaderImpl.ThrowWithoutLineInfo(String res, String arg)
       at System.Xml.XmlTextReaderImpl.ParseDoctypeDecl()
       at System.Xml.XmlTextReaderImpl.ParseDocumentContent()
       at System.Xml.XmlTextReaderImpl.Read()
       at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
       at System.Xml.XmlDocument.Load(XmlReader reader)
       at Microsoft.Devdiv.Bootstrapper.DownloadManager.DownloadXml(String url, Int32& returnCode)
    [0A60:1530][2015-07-10T18:48:07]i000: MUX:  Failed to download the update xml file from http://go.Microsoft.com/fwlink/?LinkID=500683 Setup will not be updated.
    [0A60:1530][2015-07-10T18:48:07]i052: Condition '(VersionNT = v6.3) AND (WindowsBuildNumber < 9600)' evaluates to false.
    [0A60:1530][2015-07-10T18:48:07]i052: Condition 'CompatibilityMode = 0' evaluates to false.
    [0A60:1530][2015-07-10T18:48:07]i052: Condition 'NOT((VersionNT > v6.1) OR (VersionNT = v6.1 AND ServicePackLevel >= 1))' evaluates to false.
    [0A60:1530][2015-07-10T18:48:07]i052: Condition '(NOT IsLanguagePack) AND ( CurrentOperation = "Install" ) AND ( FLP_Version > v14.0.22823 )' evaluates to false.
    [0A60:1530][2015-07-10T18:48:07]i052: Condition 'RebootPending = 1' evaluates to true.
    [0A60:1530][2015-07-10T18:48:07]i052: Condition 'NOT (IEsvcVersionExists) OR (IEsvcVersion < v10.0)' evaluates to false.
    [0A60:1530][2015-07-10T18:48:07]i052: Condition '(VersionNT < v6.2) AND ((NetworkAvailable = 0) OR (DisableRootAutoUpdate = 1)) AND NOT ((MicrosoftRootCertificateAuthority2011RootExists OR MicrosoftRootCertificateAuthority2011AuthRootExists) AND (MicrosoftRootCertificateAuthority2010RootExists OR MicrosoftRootCertificateAuthority2010AuthRootExists))' evaluates to false.
    [0A60:1530][2015-07-10T18:48:07]i052: Condition '( CurrentOperation = "Install" AND EnterpriseExists )' evaluates to false.
    [0A60:1530][2015-07-10T18:48:07]i052: Condition '( CurrentOperation = "Install" AND UltimateExists )' evaluates to false.
    [0A60:1530][2015-07-10T18:48:07]i052: Condition '( CurrentOperation = "Install" AND NOT EnterpriseExists AND ProfessionalExists)' evaluates to false.
    [0A60:1530][2015-07-10T18:48:07]i052: Condition '(VersionNT = v6.3) AND (KB2919355_AMD64_CurrentState <> 112 AND KB2919355_x86_CurrentState <> 112)' evaluates to false.
    [0A60:1530][2015-07-10T18:48:07]i052: Condition '(VersionNT = v6.3) AND (netfxfullredist_43_DetectKey < v4.5.22816)' evaluates to false.
    [0A60:1530][2015-07-10T18:48:07]i000: MUX:  Stop Block: SystemRebootPendingBlock : The computer needs to be restarted before setup can continue. Please restart the computer and run setup again.
    [0A60:1530][2015-07-10T18:48:07]i000: MUX:  Detect Completed
    [0A60:1530][2015-07-10T18:48:07]i000: MUX:  Wait for View to be loaded
    [0A60:139C][2015-07-10T18:48:07]i000: MUX:  Detect Completed, now create view
    [0A60:1530][2015-07-10T18:48:08]i000: MUX:  View loaded
    [0A60:1530][2015-07-10T18:48:08]i000: MUX:  Stop Block: SystemRebootPendingBlock : The computer needs to be restarted before setup can continue. Please restart the computer and run setup again.
    [0A60:1530][2015-07-10T18:48:08]i000: MUX:  Go to Blocker page.
    [0A60:1530][2015-07-10T18:48:08]i199: Detect complete, result: 0x0

そして thisフルログ

26
Drogebot

Windows 8以降のシャットダウンでは、実際にコンピューターの電源が切れるのではなく、休止状態になります。これにより、インストーラが使用を継続するために操作する必要があるシステムファイルが発生します。

管理者として次のコマンドを実行すると、休止状態をオフにできます。

powercfg.exe /hibernate off

実行後、コンピューターを再起動するとセットアップが機能するはずです。を使用して再びオンにすることができます

powercfg.exe /hibernate on
37
gabrieljcs

次の2つの選択肢があります。

  • PCを再起動します(シャットダウンしません!)

OR

  • PCを再起動したくない場合は、インストール前に ignore-restart.bat スクリプトを使用してください。
6
T.Todua

私はWindows 7 x64で同じエラーをバイパスすることができました:

  • windows Tempフォルダーを空にする(通常はC:\Windows\Temp)、ただし使用中のすべてのファイルを保持
  • 再起動を実行する
1
Alexei

コントロールパネルに移動することもできます。電源オプション;電源ボタンの機能を選択します。現在利用できない設定を変更します。 [高速起動を有効にする(推奨)]チェックボックスをオフにし、変更を保存してからシャットダウンします。

1
CM_Guru

私はこの問題にぶつかりましたが、私の問題はまったく異なるものでした。

問題は、私がインストールしようとしていたことでした:

Visual Studio 2015 Update 1(x86およびx64)-Webインストーラー(多言語)

しない:

Visual Studio Professional 2015 with Update 1(x86およびx64)-Webインストーラー(英語)

エラーメッセージは役に立ちませんが、私の場合は2015がインストールされていないため、更新プログラム1を適用できませんでした。

詳細については、msdnフォーラムの投稿を参照してください。

https://social.msdn.Microsoft.com/Forums/vstudio/en-US/6c531ef3-6c95-4dc9-a9a3-d23cc95b09c3/vs2015-update-1-setup-blocked-update-1-does- not-apply-or-is-blocked-by-another-condition-on-your?forum = vssetup

0
Alan Wolfe

コマンドプロンプトに移動して、以下を実行します。SHUTDOWN/r/f/t 0

0
Yingzheng Wu