Jump to content

Legolash2o

Contributors
  • Posts

    5,661
  • Joined

  • Last visited

  • Days Won

    243

Everything posted by Legolash2o

  1. Also when the error appears can you press ctrl + shift + esc for task manager. File > New task > regedit.exe Please look for: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\ComponentDetect\x86_policy.8.0.microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.0.0_none_801f9b67bc08bc01 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide\Winners\x86_policy.8.0.microsoft.vc80 & vc90 entries… [HKEY_LOCAL_MACHINE\COMPONENTS\DerivedData\Components\x86_policy.8.0.microsoft.vc80 & vc90 entries [HKEY_LOCAL_MACHINE\COMPONENTS\WINNER\Components\x86_policy.8.0.microsoft.vc80 & vc90 entries. Also run services.msc and check if 'Windows Module Installer' is running
  2. Is it just the english language pack or all languages you integrate?
  3. My server is downloading the required ISO and english language pack for me to fix this. I'm just investigating another bug at the minute.
  4. The RunOnce installer does not even have anything to do with 7z or SFX.
  5. Quick question. When you said it worked when you ran RunOnce manually... Had the VM been restarted?
  6. I tried that installation file and I don't get the error. Does the error happen if you integrate it at the top instead of towards the bottom? Keep up this testing and you'll get 10+ points lol.
  7. if (File.Exists(cMain.SysFolder + "\\Dism.exe")) { sDISMFound.Add(cMain.SysFolder + "\\Dism.exe"); } if (!string.IsNullOrEmpty(cOptions.DISMLoc) && File.Exists(cOptions.DISMLoc)) { sDISMFound.Add(cOptions.DISMLoc); } if (cMain.Arc64 && File.Exists(cMain.SysProgFiles + "\\Windows Kits\\8.1\\Assessment and Deployment Kit\\Deployment Tools\\amd64\\DISM\\dism.exe")) { sDISMFound.Add(cMain.SysProgFiles + "\\Windows Kits\\8.1\\Assessment and Deployment Kit\\Deployment Tools\\amd64\\DISM\\dism.exe"); } if (!cMain.Arc64 && File.Exists(cMain.SysProgFiles + "\\Windows Kits\\8.1\\Assessment and Deployment Kit\\Deployment Tools\\x86\\DISM\\dism.exe")) { sDISMFound.Add(cMain.SysProgFiles + "\\Windows Kits\\8.1\\Assessment and Deployment Kit\\Deployment Tools\\x86\\DISM\\dism.exe"); } if (cMain.Arc64 && File.Exists(cMain.SysProgFiles + "\\Windows Kits\\8.0\\Assessment and Deployment Kit\\Deployment Tools\\amd64\\DISM\\dism.exe")) { sDISMFound.Add(cMain.SysProgFiles + "\\Windows Kits\\8.0\\Assessment and Deployment Kit\\Deployment Tools\\amd64\\DISM\\dism.exe"); } if (!cMain.Arc64 && File.Exists(cMain.SysProgFiles + "\\Windows Kits\\8.0\\Assessment and Deployment Kit\\Deployment Tools\\x86\\DISM\\dism.exe")) { sDISMFound.Add(cMain.SysProgFiles + "\\Windows Kits\\8.0\\Assessment and Deployment Kit\\Deployment Tools\\x86\\DISM\\dism.exe"); } if (File.Exists(cMain.SysProgFiles + " (x86)\\Windows Kits\\8.1\\Assessment and Deployment Kit\\Deployment Tools\\amd64\\DISM\\dism.exe")) { sDISMFound.Add(cMain.SysProgFiles + " (x86)\\Windows Kits\\8.1\\Assessment and Deployment Kit\\Deployment Tools\\amd64\\DISM\\dism.exe"); } if (File.Exists(cMain.SysProgFiles + " (x86)\\Windows Kits\\8.0\\Assessment and Deployment Kit\\Deployment Tools\\amd64\\DISM\\dism.exe")) { sDISMFound.Add(cMain.SysProgFiles + " (x86)\\Windows Kits\\8.0\\Assessment and Deployment Kit\\Deployment Tools\\amd64\\DISM\\dism.exe"); } if (File.Exists(cMain.SysProgFiles + "\\Windows AIK\\Tools\\Servicing\\Dism.exe")) { sDISMFound.Add(cMain.SysProgFiles + "\\Windows AIK\\Tools\\Servicing\\Dism.exe"); } if (cMain.Arc64 && File.Exists(cMain.SysProgFiles + "\\Windows AIK\\Tools\\amd64\\Servicing\\Dism.exe")) { sDISMFound.Add(cMain.SysProgFiles + "\\Windows AIK\\Tools\\amd64\\Servicing\\Dism.exe"); } if (!cMain.Arc64 && File.Exists(cMain.SysProgFiles + "\\Windows AIK\\Tools\\x86\\Servicing\\Dism.exe")) { sDISMFound.Add(cMain.SysProgFiles + "\\Windows AIK\\Tools\\x86\\Servicing\\Dism.exe"); } if (File.Exists(cMain.SysFolder + "\\Win8Dism\\Dism.exe")) { sDISMFound.Add(cMain.SysFolder + "\\Win8Dism\\Dism.exe"); }Was easier for me just to paste in the code lol.
  8. Ahh, that latest version scans that DISM anyway so you don't have to specify it
  9. What's the filepath of the one from the ADK suite?
  10. Windows 7 dism can integrate into 8.1 just fine It's only when removing where the new version of DISM comes in handy.
  11. You could integrate updates into 8.1 anyway and yes you can merge 7 + 8 + 8.1 into one wim.
  12. Oops made a type, should be fixed in test 4.
  13. If I'm honest, I have no idea and I have nothing to do with that program what-so-ever. Definitely seems to be a memory leak though.
  14. There's currently a bug in the latest WinToolkit when selecting your dism for non-english. It's fixed however in the latest build so feel free to just download that.
  15. It runs it all at first logon, you should see a window saying what it is installing.
  16. I recently found an issue where any exceptions was not written to the log file. I've just fixed that so the next test build which I will be releasing in 5 minutes should shine a light on the problem once and for all EDIT: Test 3 uploaded.
  17. I removed the version numbers from the top of each forms as they annoyed me.
  18. Fixed, I will upload a new test immediately. EDIT: Uploaded.
  19. The new test should fix the 'marked as read-only' error.
  20. If it's empty, just delete it. It is used with Silent Installers.
  21. The 'activities' are already administrative permissions.
  22. In the latest test i've made it use HKLM instead of HKCU so hopefully that will work
  23. So it's: KB2533552KB2862330KB2574819-v2KB2857650KB2592687KB2862019KB2830477KB947821 In that order?
  24. I've done most of them. Prob won't do anymore. What an excellent idea!
×
×
  • Create New...