web-dev-qa-db-ja.com

DriverToaster.exeは、「パラメーターが正しくない」ことを報告しています。

ちょうど今日、私は少し不安定でほとんどマルウェアのような警告を受けました:

enter image description here

どうやらDriverToaster.exeはThe parameter is incorrect.

このプログラムとは何ですか?それは問題ですか?

7
Mokubai

これは、Dell SupportAssistツールの一部のようです。ディレクトリ内のAppxManifest.xml

DisplayName = "Dell SupportAssist" Description = "SupportAssist Driver Update"

これは、Dellによってプレインストールされた正当なプログラムであり、ドライブバイマルウェアのダウンロードではないようです。それは単にバグか、Dellサーバーに接続できないことです。

完全なAppxManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.Microsoft.com/appx/manifest/foundation/windows10"
xmlns:uap="http://schemas.Microsoft.com/appx/manifest/uap/windows10"
xmlns:rescap="http://schemas.Microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities">
  <Identity Name="DriverToaster" ProcessorArchitecture="x86" Publisher='CN="PC-Doctor, Inc.", O="PC-Doctor, Inc.", L=Reno, S=Nevada, C=US' Version="1.3.0.0" />
  <Properties>
    <DisplayName>SupportAssist Driver Update</DisplayName>
    <PublisherDisplayName>Dell Inc.</PublisherDisplayName>
    <Logo>Assets\SupportAssist.150x150.png</Logo>
  </Properties>
  <Resources>
    <Resource Language="en-us" />
  </Resources>
  <Dependencies>
    <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14257.0" MaxVersionTested="10.0.15063.0" />
  </Dependencies>
  <Capabilities>
    <rescap:Capability Name="runFullTrust" />
  </Capabilities>
  <Applications>
    <Application Id="DriverToaster" Executable="DriverToaster.exe" EntryPoint="Windows.FullTrustApplication">
      <uap:VisualElements DisplayName="Dell SupportAssist" Description="SupportAssist Driver Update" BackgroundColor="#777777"
      Square150x150Logo="Assets\SupportAssist.150x150.png" Square44x44Logo="Assets\SupportAssist.44x44.png"/>
    </Application>
  </Applications>
</Package>

見つかった場合は、詳細を更新します。現時点では、それがマルウェアではないことを知っていれば十分です。


アプリと機能のコントロールパネルを確認すると、2つの「Dell SupportAssist」プログラムがありました。 1つは約580KB、もう1つは48.1MBでした。 「移動」するオプションが与えられたため、580KBの1つはUWPアプリのようでした。これをアンインストールすると、フォルダC:\Program Files\WindowsApps\DriverToaster_1.3.0.0_x86_rqs2nt378nwsp\が削除されたようです

11
Mokubai