DriverToaster.exe 报告“参数不正确”。

DriverToaster.exe 报告“参数不正确”。

就在今天,我收到了一个有点令人不安的、几乎像恶意软件一样的警告:

在此处输入图片描述

显然 DriverToaster.exe 报告说The parameter is incorrect.

这个程序是什么?它有问题吗?

答案1

看起来这是 Dell SupportAssist 工具的一部分。AppxManifest.xml目录中的内容如下:

DisplayName="Dell SupportAssist" Description="SupportAssist 驱动程序更新"

看起来这是戴尔预装的合法程序,而不是驱动型恶意软件下载。这可能只是一个错误或无法连接戴尔服务器。

完整的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>

如果我发现的话,我会更新更多信息。现在知道它不是恶意软件就足够了。


在“应用和功能”控制面板中,我有两个“Dell SupportAssist”程序。一个约为 580KB,另一个为 48.1MB。看起来 580KB 的程序是一个 UWP 应用程序,因为我可以选择“移动”它。卸载这个程序似乎删除了文件夹C:\Program Files\WindowsApps\DriverToaster_1.3.0.0_x86_rqs2nt378nwsp\

相关内容