electron-webpack-dashboard icon indicating copy to clipboard operation
electron-webpack-dashboard copied to clipboard

Setup executable fails immediately on Windows 10

Open cchamberlain opened this issue 8 years ago • 7 comments

The setup executable bombs immediately for me on Windows 10. After download, I right click the exe, and go to properties and unblock it (Windows blocks all exe's from the internet) but that doesn't have an impact. Tried restarting / re-downloading / running as admin, no change.

Here is what I see: image

EventViewer shows the following:

<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
  <System>
    <Provider Name="Application Error" /> 
    <EventID Qualifiers="0">1000</EventID> 
    <Level>2</Level> 
    <Task>100</Task> 
    <Keywords>0x80000000000000</Keywords> 
    <TimeCreated SystemTime="2017-10-23T19:42:53.584481700Z" /> 
    <EventRecordID>1049882</EventRecordID> 
    <Channel>Application</Channel> 
    <Computer>cochamberlai1-w.ad.corp.google.com</Computer> 
    <Security /> 
  </System>
  <EventData>
    <Data>webpack-dashboard-app-setup-1.0.0.exe</Data> 
    <Data>1.0.0.0</Data> 
    <Data>597fcc70</Data> 
    <Data>ntdll.dll</Data> 
    <Data>10.0.14393.1715</Data> 
    <Data>59b0d8f3</Data> 
    <Data>c0000005</Data> 
    <Data>00047722</Data> 
    <Data>4738</Data> 
    <Data>01d34c371dd3c4ad</Data> 
    <Data>C:\Users\cochamberlain\Downloads\webpack-dashboard-app-setup-1.0.0.exe</Data> 
    <Data>C:\WINDOWS\SYSTEM32\ntdll.dll</Data> 
    <Data>19877202-9c45-484b-a3cd-933b54af75ba</Data> 
    <Data /> 
    <Data /> 
  </EventData>
</Event>

cchamberlain avatar Oct 23 '17 19:10 cchamberlain

I, too, am experiencing the installer immediately crashing on Windows 10. However, my Event Viewer log entry shows an error in "System.dll" as opposed to "ntdll.dll".

seniorquico avatar Nov 01 '17 15:11 seniorquico

Same on Windows 7 (error in System.dll). AVG antivirus also flags it as infected with FileRepMalware

ColdFire87 avatar Nov 02 '17 23:11 ColdFire87

@carlospaelinck - Do you have a moment to check this install issue and the antivirus thing too?

ryan-roemer avatar Nov 02 '17 23:11 ryan-roemer

Error

Similar error:

Here's the event log. Faulting application name: webpack-dashboard-app-setup-1.0.0.exe, version: 1.0.0.0, time stamp: 0x597fcc70 Faulting module name: ntdll.dll, version: 10.0.16299.15, time stamp: 0xac8afc81 Exception code: 0xc0000005 Fault offset: 0x0004367b Faulting process id: 0x3ba4 Faulting application start time: 0x01d35f18934e2489 Faulting application path: C:\Users\duncan.tweed\Downloads\webpack-dashboard-app-setup-1.0.0.exe Faulting module path: C:\WINDOWS\SYSTEM32\ntdll.dll Report Id: dac90de8-7df9-4f79-865a-dfdb4751a2e6 Faulting package full name: Faulting package-relative application ID:

Fix

So I managed to get this working by cloning the project and running npm install. There seems to be some global packages that the project installs that are either missing or not present on windows by default that are needed to handle the installation executable.

Things I did.

  1. Clone the WP Dashboard project
  2. npm install
  3. npm run package-win
  4. npm build

Both the package and build commands failed due to a webpack issue, however after doing the above I was able to install using the executable.

Hope this helps.

dtweedle avatar Nov 16 '17 20:11 dtweedle

@dtweedle Even after that I wasn't able to install, it do not show any error when opening the .exe

I have to run with compatibility mode for windows 8, so then it work!

marceloavf avatar Nov 27 '17 10:11 marceloavf

I was able to install successfully with Windows 8 compatibility mode and then run as administrator using the official 1.0.0 exe-file.

frenic avatar Dec 11 '17 13:12 frenic

Windows 8 compatibility mode and run as admin fixed it for me too.

bdelaney avatar Dec 17 '17 14:12 bdelaney