-
Posts
5,661 -
Joined
-
Last visited
-
Days Won
243
Content Type
Profiles
Forums
Events
Everything posted by Legolash2o
-
[Solved] Big bugs in beta 1.4.30.3
Legolash2o replied to RicaNeaga's topic in WinToolkit Solved Bugs
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 -
Is it just the english language pack or all languages you integrate?
-
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
Legolash2o replied to RicaNeaga's topic in WinToolkit Solved Bugs
The RunOnce installer does not even have anything to do with 7z or SFX. -
[Solved] Big bugs in beta 1.4.30.3
Legolash2o replied to RicaNeaga's topic in WinToolkit Solved Bugs
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
Legolash2o replied to RicaNeaga's topic in WinToolkit Solved Bugs
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. -
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.
-
Ahh, that latest version scans that DISM anyway so you don't have to specify it
-
What's the filepath of the one from the ADK suite?
-
Windows 7 dism can integrate into 8.1 just fine It's only when removing where the new version of DISM comes in handy.
-
You could integrate updates into 8.1 anyway and yes you can merge 7 + 8 + 8.1 into one wim.
-
Oops made a type, should be fixed in test 4.
-
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.
-
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.
-
It runs it all at first logon, you should see a window saying what it is installing.
-
[Solved] WTK-Installer-Crash during install
Legolash2o replied to Thiersee's topic in WinToolkit Solved Bugs
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. -
I removed the version numbers from the top of each forms as they annoyed me.
-
Fixed, I will upload a new test immediately. EDIT: Uploaded.
-
Fixed.
-
[Solved] Big bugs in beta 1.4.30.3
Legolash2o replied to RicaNeaga's topic in WinToolkit Solved Bugs
The new test should fix the 'marked as read-only' error. -
If it's empty, just delete it. It is used with Silent Installers.
-
[Solved] Big bugs in beta 1.4.30.3
Legolash2o replied to RicaNeaga's topic in WinToolkit Solved Bugs
The 'activities' are already administrative permissions. -
In the latest test i've made it use HKLM instead of HKCU so hopefully that will work
-
(IMPORTANT) Please move by default to the silent area
Legolash2o replied to RicaNeaga's topic in Win Toolkit
So it's: KB2533552KB2862330KB2574819-v2KB2857650KB2592687KB2862019KB2830477KB947821 In that order? -
I've done most of them. Prob won't do anymore. What an excellent idea!
- 26 replies
-
- Main Screen
- GUI
-
(and 3 more)
Tagged with: