Jump to content

Legolash2o

Contributors
  • Joined

  • Last visited

Everything posted by Legolash2o

  1. Legolash2o replied to Legolash2o's post in a topic in Win Toolkit
    I'm on about during integration so a right-click option wouldn't work. CAB files got fixed ages ago.
  2. I'm pretty sure when you unmount it there is an option to not rebuild the image.
  3. Legolash2o posted a post in a topic in Win Toolkit
    There seems to be an argument about updates that should and shouldn't go into the Silent Installers. I'm open to suggestions but how about this solutions... If an update doesn't integrate, it THEN gets moved to the silent installers automatically. Until then, it will stay in the updates category? But before it adds it to the silent it retries the updates at the end. http://www.wincert.net/forum/topic/11738-missing-function-retry-integrate-not-integrated-after-integrating/
  4. Legolash2o replied to blagasamuel's post in a topic in Win Toolkit
    If you move it or rename it, then the RunOnce won't detect it. It just scans the roots of all the partitions for a 'Drivers' folder.
  5. Legolash2o replied to blagasamuel's post in a topic in Win Toolkit
    I'm guessing your drivers folder is something like 'D:\Drivers\*' ? Good news is that it will only install the drivers it needs and detects for your system. Bad news is that you may have to rename your folder.
  6. Explains why I don't get the error. That's out of my control. The best thing to do is to notify Kels and Rick about the situation. Me best bet about the previous errors is that something which installed before them needed to the computer to restart.
  7. I'm currently integrating all of the updates. If an update which normally gets moved to the silent installers go green, they will stay in the updates list by default.
  8. I'm just updating my DISM installer to include DISM 8.0 as 8.1 doesn't work on XP if I remember correctly.
  9. http://technet.microsoft.com/en-US/evalcenter
  10. Ah ok. Shouldn't take long to fix that. I think I have an idea of what the problem is within the code.
  11. 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
  12. Is it just the english language pack or all languages you integrate?
  13. 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.
  14. The RunOnce installer does not even have anything to do with 7z or SFX.
  15. Quick question. When you said it worked when you ran RunOnce manually... Had the VM been restarted?
  16. 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.
  17. 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.
  18. Legolash2o replied to Tuesday77's post in a topic in Win Toolkit
    Ahh, that latest version scans that DISM anyway so you don't have to specify it
  19. Legolash2o replied to Tuesday77's post in a topic in Win Toolkit
    What's the filepath of the one from the ADK suite?
  20. Legolash2o replied to Tuesday77's post in a topic in Win Toolkit
    Windows 7 dism can integrate into 8.1 just fine It's only when removing where the new version of DISM comes in handy.
  21. Legolash2o replied to Tuesday77's post in a topic in Win Toolkit
    You could integrate updates into 8.1 anyway and yes you can merge 7 + 8 + 8.1 into one wim.
  22. Oops made a type, should be fixed in test 4.
  23. 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.
  24. 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.
  25. It runs it all at first logon, you should see a window saying what it is installing.