DriverToaster.exe가“매개 변수가 잘못되었습니다”고보고합니다.


7

바로 오늘 나는 약간 불안정하고 거의 맬웨어와 같은 경고를 받았습니다.

여기에 이미지 설명을 입력하십시오

분명히 DriverToaster.exe는 The parameter is incorrect.

이 프로그램은 무엇이며 문제입니까?


같은 상황입니다 .. 서버가 다운 된 것 같습니다
jjanton

1
관심있는 사람들을 위해 Dell과 지원 티켓을 마련하여 설명을 시도했지만 많은 희망을 얻지 못했습니다.
Mokubai

2017 년 8 월 12 일 약 1830 EST에이 메시지를 받았습니다. @Mokubai 끝에서 공유 할 수있는 업데이트가 있는지 궁금합니다.
J. Ari

2
@ J.Ari Dell이 (모호하게) 아래 설명 된 것처럼 해당 응용 프로그램 중 하나 일 가능성이 가장 높다는 것을 확인했습니다. 내가 얻은 최선은 SupportAssist 응용 프로그램에 대한 업데이트였습니다. 오류 자체의 원인에 대한 설명은 없습니다.
Mokubai

답변:


11

이것이 Dell SupportAssist 도구의 일부 중 하나 인 것 같습니다. AppxManifest.xml디렉토리 :

DisplayName = "Dell SupportAssist"Description = "SupportAssist 드라이버 업데이트"

이것은 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>

내가 찾으면 더 많은 정보로 이것을 업데이트 할 것입니다. 지금은 그것이 멀웨어가 아니라는 것을 아는 것으로 충분합니다.


앱 및 기능 제어판에서 두 개의 "Dell SupportAssist"프로그램을 사용했습니다. 하나는 ~ 580KB, 다른 하나는 48.1MB입니다. 580KB는 "움직이기"옵션이 주어 졌을 때 UWP 앱인 것 같습니다. 이 폴더를 제거하면 폴더가 제거 된 것 같습니다C:\Program Files\WindowsApps\DriverToaster_1.3.0.0_x86_rqs2nt378nwsp\

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.