Everything posted by Legolash2o
-
Update - Silent Installs
I'm on about during integration so a right-click option wouldn't work. CAB files got fixed ages ago.
-
AIO-Integrator: Rebuild after unmount..
-
Update - Silent Installs
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/
-
Drivers Issue
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.
-
Drivers Issue
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.
-
[Solved] Big bugs in beta 1.4.30.3
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.
-
(IMPORTANT) Please move by default to the silent area
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.
- Any chance of an update for windows 8.1 soon?
-
Need service pack slipstreame option in WIN TOOLKIT
http://technet.microsoft.com/en-US/evalcenter
-
[Solved] Language not integrated
Ah ok. Shouldn't take long to fix that. I think I have an idea of what the problem is within the code.
-
[Solved] Big bugs in beta 1.4.30.3
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
-
[Solved] Language not integrated
Is it just the english language pack or all languages you integrate?
-
[Solved] Language not integrated
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.
-
[Solved] Big bugs in beta 1.4.30.3
The RunOnce installer does not even have anything to do with 7z or SFX.
-
[Solved] Big bugs in beta 1.4.30.3
Quick question. When you said it worked when you ran RunOnce manually... Had the VM been restarted?
-
[Solved] Big bugs in beta 1.4.30.3
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.
-
Any chance of an update for windows 8.1 soon?
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.
-
Project: Win8.1 Full ISO
Ahh, that latest version scans that DISM anyway so you don't have to specify it
-
Project: Win8.1 Full ISO
What's the filepath of the one from the ADK suite?
-
Project: Win8.1 Full ISO
Windows 7 dism can integrate into 8.1 just fine It's only when removing where the new version of DISM comes in handy.
-
Project: Win8.1 Full ISO
You could integrate updates into 8.1 anyway and yes you can merge 7 + 8 + 8.1 into one wim.
-
[Solved] DISM-Bug in 1.4.30.21
Oops made a type, should be fixed in test 4.
-
Windows Hotfix Downloader
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.
- Any chance of an update for windows 8.1 soon?
-
What is "Wintoolkit_Apps" folder?
It runs it all at first logon, you should see a window saying what it is installing.