Jump to content

Legolash2o

Contributors
  • Joined

  • Last visited

Everything posted by Legolash2o

  1. Legolash2o posted a post in a topic in Win Toolkit
    As you may have noticed they're a lot more guides in the Windows 7 Toolkit Guides sub-forum, i would appreciate it if anyone would read through them and give me some feedback here, and what sort of stuff you think i have missed or could explain more on. Feedback in here please Thanks
  2. Legolash2o replied to compstuff's post in a topic in Win Toolkit
    For some reason it was hidden before, i just made it visible
  3. Source Basic Description General Distribution Release GDR packages contain only security and critical stability issue fixes. These are usually released via Windows Update. Limited Distribution Release LDR packages contain "other" fixes that have not undergone as extensive testing, and resolve issues that only a fraction of the millions of Windows users might ever encounter. You usually request these from the Microsoft website but they're mostly found in SoLoR Updates. Quick Fix Engineering QFE is the old name for LDR (above). How are they installed differently? At the end of the day, if you have LDR/QFE Mode enabled it will install LDR Mode if the update has that option regardless if its cab or an msu file. MSU Files *.msu files will get installed normally using the command below. pkgmgr.exe/norestart /ip /o:"C:\W7T\Mount;C:\W7T\Mount\Windows" /m:"UpdateLocation\update.msu" /quiet If you have LDR/QFE Mode enabled then the *.cab file is extracted and the below (CAB Files) method is then applied to the newly extract cab file. CAB Files Normally *.cab updates have a file called 'update.mum' but LDR updates also have a file called 'update-bf.mum', if the 'update-bf.mum' is not detected W7T will install cab files normally. Cab files are usually extract from the msu file or when a user has used 'MSU to CAB Converter' pkgmgr.exe/norestart /ip /o:"C:\W7T\Mount;C:\W7T\Mount\Windows" /m:"CABLocation" /quiet If, however the update-bf.mum has been located it will extract the cab to a temp folder and install both *.mum files like so: pkgmgr.exe/norestart /ip /o:"C:\W7T\Mount;C:\W7T\Mount\Windows" /m:"ExtractCABTemp\\Update.mum" /quiet pkgmgr.exe/norestart /ip /o:"C:\W7T\Mount;C:\W7T\Mount\Windows" /m:"ExtractCABTemp\\Update-bf.mum" /quiet That's it. Full Description Out of the box, all of the files in Windows are on what we refer to as the "General Distribution Release" (GDR) branch. If updates are only delivered from Windows (or Microsoft) Update (including via WSUS), then all the files remain on the GDR branch. Some KB articles have packages to address specific issues that are not delivered by Windows Update - "Limited Distribution Release" (LDR) branch packages. Previously we used the term "Quick Fix Engineering" (QFE), but LDR has taken over – expect to see these terms used synonymously. GDR packages contain only security and critical stability issue fixes. LDR packages contain "other" fixes that have not undergone as extensive testing, and resolve issues that only a fraction of the millions of Windows users might ever encounter. It is not the entire OS that is considered GDR or LDR - it is down to the individual file level. A package delivered by Windows Update contains both GDR and LDR versions of the files it updates, so that it is able to replace the files on the system regardless of which branch they are currently on. A package acquired outside of Windows Update contains only LDR versions of the files it updates, and this will "move" the files onto the LDR branch where they will remain until the next Service Pack. A Service Pack (SP) contains only GDR branch versions of the files which have been updated by ANY package since the previous Service Pack (or RTM). So installing the latest Service Pack at, or shortly after release will likely put all of your files (back) onto the GDR branch. One other thing that Service Packs imply is that hotfix packages need to have versions of the files to replace for the most current SP level and the previous one (dubbed "N and N-1 support"). So for every single file updated by a Windows Update hotfix package after the first SP, there are 4 versions of the file present: "N-1" GDR "N-1" LDR "N" GDR "N" LDR Taking a ficticious example, where we have the following files straight out of the box: A.EXE RTMGDR 1.0 B.DLL RTMGDR 1.0 C.SYS RTMGDR 1.0 1) Hotfix package KB000001 is installed through windows Update, and contains an update to B.DLL - this pacakge contains: B.DLL SP1GDR 1.1 B.DLL SP1LDR 1.1 > The SP1GDR version is installed by default, and there are only 2 (identical) versions of this file in the package as we're not yet at SP1. The machine now has: A.EXE RTMGDR 1.0 B.DLL SP1GDR 1.1 C.SYS RTMGDR 1.0 2) Hotfix package KB000002 is installed, NOT through Windows Update, and contains an update for A.EXE - this package contains: A.EXE SP1LDR 1.02 > No options here, the version that ends up on disk is now the LDR version The machine now has: A.EXE SP1LDR 1.02 B.DLL SP1GDR 1.1 C.SYS RTMGDR 1.0 3) Hotfix package KB000003 is installed through Windows Update and contains an update to A.EXE and C.SYS - this package contains: A.EXE SP1GDR 1.11 A.EXE SP1LDR 1.11 C.SYS SP1GDR 1.11 C.SYS SP1LDR 1.11 > A.EXE is on the LDR branch because of KB000002, while C.SYS is still on the GDR branch The machine now has: A.EXE SP1LDR 1.11 B.DLL SP1GDR 1.1 C.SYS SP1GDR 1.11 4) Hotfix package KB000100 is installed through Windows Update, and contains an update for C.SYS for the RTM and SP1 versions of the OS - this package contains: C.SYS SP1GDR 1.5 C.SYS SP1LDR 1.5 C.SYS SP2GDR 2.5 C.SYS SP2LDR 2.5 > OS level is still RTM, the current file is on the GDR branch, so we remain on the GDR branch The machine now has: A.EXE SP1LDR 1.11 B.DLL SP1GDR 1.1 C.SYS SP1GDR 1.5 5) SP1 is now installed on the system, which contains only GDR version 2.0 of every file: A.EXE SP1GDR 2.0 B.DLL SP1GDR 2.0 C.SYS SP1GDR 2.0 > OS level is now raised to SP1 and we push all files on the GDR branch... but look what happens to C.SYS... The machine now has: A.EXE SP1GDR 2.0 B.DLL SP1GDR 2.0 C.SYS SP2GDR 2.5 > The SP1 package does not contain anything other then the GDR 2.0 versions of the files… so where did the GDR 2.5 version come from? The hidden, compressed folders named $NtUninstallKBxxxxxx$ in the %systemroot% folder contain the backup of the version(s) of the replaced file(s) when the hotfix was applied, plus the executable to uninstall the package (in the spuninst sub-folder). The hidden $hf_mig$ folder in the %systemroot% folder contains all the files extracted from the hotfix packages in sub-folders KBxxxxxx- these are necessary to ‘migrate’ the hotfix in the event that a switch of branches occurs or an earlier hotfix package is later installed. In the example above at step 5, the post-SP1 hotfix package was used to migrate the updated version of C.SYS during the installation of SP1. If this was not done, or if the folder had been deleted, then the file would have been regressed from 1.5 to 2.0. What? A regression from a lower version to a higher version? Is that a typo? Think of 1.5 as "RTM with KB000100" and 2.0 as "SP1 without KB000100" and it makes a bit more sense. The migration of hotfixes to avoid regression is done from hotfix to hotfix as well as with SPs. Imagine we have module X.DLL which has a dependency on module Y.DLL, and they both start at GDR 1.0. Now a GDR hotfix KB000123 is applied which updates Y.DLL to 1.3. Now an LDR hotfix KB000075 is applied which updates X.DLL to 1.1 and Y.DLL to 1.1. The resultant files on the system would be: X.DLL SP1LDR 1.1 Y.DLL SP1LDR 1.3 If we took Y.DLL 1.1 from the second hotfix then we regress in the security fixes, and if we left Y.DLL 1.3 from the GDR branch then we might miss a dependency that X.DLL LDR 1.1 may have which could lead to instability. By switching to the LDR branch for the higher version of the file Y.DLL, we remain at the correct level in terms of security & stability fixes (changes in the GDR branch) but also add the fix for the issue mentioned in KB article KB000075. Moving to the LDR branch for a specific KB article number will not just give you the security changes up to that point plus the 1 non-security issue mentioned in the KB article - it will also contain every non-security update to the files in the hotfix package. For this reason you will see the all-too-familiar disclaimer: "A supported hotfix is available from Microsoft. However, this hotfix is intended to correct only the problem that is described in this article. Apply this hotfix only to systems that are experiencing this specific problem. This hotfix might receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next software update that contains this hotfix." If you followed the above then you will also understand why you should never manually delete the$NtUninstallKBxxxxxx$ folders – you will be unable to remove these hotfix packages yet they will be listed in Add/Remove Programs (and you will gain very little disk space by doing this as the contents are compressed on disk). If you were to delete the $hf_mig$ folder then you would break migration and may prevent the installation of future hotfixes or introduce unexpected regressions when installing service packs. As if that wasn’t enough… you then have separate packages for the same hotfixes (where appropriate) x86 (i386/IA32), x64 (amd64) and IA64. x86 is “only 32-bit” and IA64 is “only 64-bit”… but x64-based Windows has the concept of WOW (Windows-On-Windows) so these packages can have an even bigger list of files for the native 64-bit versions and the WOW6432 versions to support 32-bit apps. Now you can see the value in the file lists documented in the KB articles, showing not just the file versionnumber, but the different branches which have fixes, and this has de-mystified the versioning system a little. The above is correct for Windows versions up to and including 5.2 (Server 2003 & XP x64 Edition) – when we moved to 6.0 (Vista) we changed how it works.
  4. Legolash2o replied to compstuff's post in a topic in Win Toolkit
    The 350 is the amount of Updates + the amount of 'Options' ticked. i.e. 336 updates and 14 Options EDIT: Simply put... it's the amount of lines in the preset text file. For example if you have 100 updates, 100 drivers and 10 settings it would say x of 220
  5. Introduction The 'All-In-One Integrator' is one of the most important tools available in Windows 7 Toolkit, this is the tool which lets you integrate everything into your image such as Updates, Drivers, Wallpapers, Tweaks, Gadgets, etc... but it also lets your remove things too, so lets get started... Selecting your image When you first load the 'AIO Integrator' you will be asked which image you wish you use, if the list it empty, click 'Browse' and select your extract ISO or select the install.wim directly. Once done you should see a list of images, you can either double click an item or press select. TIP: You can hold ctrl or shift to select more than one image, once done press 'Select'. Select your preset If you have used this tool before then you will be greeted by a list of things you have previously done, you can simply select a previous tasks and click 'Load Preset' or if you want to start fresh and do something different then press 'Skip (No Preset)'. ---Basic--- This tab has all the most important tools, to get the most basic jobs done such as integrate updates and drivers. I recommend beginners or new users to stick to this tab. Basic: Addons Addons are pre-installed programs which have been created by other users (usually *reaper*), they have the file extension *.WA, I would probably say programs such as crap cleaner and flash are the most common. If you have any addons then press 'Add Addons' at the top or the green '+' button on the left to add them to this list. Basic: Drivers Drivers are what make your devices and hardware work, sometimes its easy just to them them already installed after you have installed Windows. If you want to add some you just have to press 'Add Drivers' and browse to the folder which contains your drivers (*.inf files). You may notice that not all of them get added, this is because W7T does not include duplicate drivers with the same MD5 files and not all *.inf files are actually drivers and just normal inf files. Colours Red: If the user has selected an x86 image and then adds an x64 driver to the integration list then that driver will display red. Blue: When adding drivers to the list Win Toolkit also makes note of the *.inf MD5 hash, if there's another driver with the same MD5 hash then the items will change to a blue. Basic: Gadgets Gadgets are those little widgets things on your desktop, for example 'CPU Meter'. On Vista they had the gadget bar but on Windows 7 you can place them anywhere. If you want to have addons pre-installed then click 'Add Gadgets' and select all of your *.gadget files. Basic: Theme Packs These area of the tool lets you add your Windows themes, so when you have installed Windows you can select from your favourite theme packs. Just click 'Add Themes' and select your *.themepack files. Basic: Updates + Languages Its very handy to have all of the Windows updates installed. This makes sure your computer is up-to-date, bug free and more secure. Click 'Add Updates' and simply selected your *.MSU or *.CAB files and they will be added to the list, alternatively you can change the drop down box from MSU/CAB to EXE which will allow you to install Internet Explorer 9 and Windows XP Mode. NOTE: If you wish to install updates in LDR/QFE Mode then the option to do that is on the 'Options' tab at the top. Basic: Wallpapers As usual, this one is pretty self-explanatory, here you can add your favourite desktop wallpapers so that they are ready to be selected after Windows installation. ---Advanced--- Users who have more experience with Windows 7 Toolkit or experience with modifying images can use this tab, i wouldn't recommend new users to start using this until they gain a bit of confidence. Advaned: Component Removal Windows comes with features already installed, this features can be anything from Windows Media Player, Internet Explorer, Windows Media Center to more important features. The list you see here is not a full as the list from 'Component Remover' because the AIO contains a pre-defined set of features which i've manually added whilst 'Component remover' actively scans your image and lists everything including updates. I wouldn't recommend this to new users at all, and just to note that once something has been removed it can't be returned without using a fresh ISO. This tab doesn't do a full removal like vLite and uninstalls the features using DISM. Advanced: vLite Some users may instantly know what this does, this is similar to Component Removal but actually deletes files and therefore reduces the image size more significantly. It quite a new tool so there's not many items yet but i will hopefully add more as time progresses. Advanced: Files This replaces files within your image, so if for example you modify system32 files, you can import them into your image using this tool. This will most probably be used by users who have custom 3rd party theme files. Caution though as replacing an important file with a bad one can and most probably will make your ISO unbootable, so be very careful! Advanced: Services As you know Windows has many services running in the background. This part of the tool lets you reduce that and get the best performance from your computer. As you can see on the picture (below) you have to click the item in the column to change its value. You can also choose from 'BlackVipers' presets depending on what you use your computer for, you can also use the shortcut buttons on the left to do the same thing. NOTE: Services which are important are not available in the list, if you don't know anything about a service you can press the purple 'i' button on the left sidebar. Advanced: Silent Installs + SFX A lot of users like to have programs installed silently after Windows has completely installed, simply click 'Add Silent Installer' and select your EXE, you may have to go on google to find it's silent switch which is usually something like '/s /q /qn /quiet /silent' and so on. TIP: Some developers have already created silent installers so you can leave that box blank. If you have a folder full of silent installers then you can select them all and they will be added in bulk. Option: Always Install If you tick this option the the program(s) you add will be installed automatically, if it's unticked then it will ask the user what program(s) they wish to install straight after Windows installation. Option: Copy Folder Some programs such as Office have a setup.exe and then a bunch of other needed files in the same/sub-folder as the installer. Tick this option to include those files. This option is not usually needed. Advanced: Tweaks Most users will add tweaks to their install, there are literally hundreds to describe them all here but hopefully the descriptions are detailed enough for you. Just simply tick the ones you want. ---Options--- You don't really have to change these, most of them are used by me (Legolash2o) to debug issues. If you need to know what something is then just put your mouse over its name and a tooltip will appear. I will mention that the 'Prompts' items are they ones which tell you after AIO has finished what has been integrated successfully. Start OK now your ready, click start and you will be asked to enter a name, this is so you can use the same session next time you use AIO Integrator, similar to vLite/nLite last session presets. The image will automatically mount if not mounted: It will then integrate everything, green means the update has been integrated sucessfully, whilst yellow is the current item it's working on: Once done the image will save all the changes: Some drivers or language packs need to mount the boot.wim if, if it does then it will mount it now. Drivers are ususally ones for SCSI, HDD and SATA devices: Once everything has been completed it willre build the image to decrease it size so your ISO will be much smaller (hopefully). Now that everything is done, you can review what got integrated, now you can use the ISO Maker to create an ISO or just copy it to your USB device (assuming it's bootable).
  6. Legolash2o replied to alfreire's post in a topic in Win Toolkit
    WOW thanks again It really is much appreciated! Thanks again
  7. EVERYTHING which would get applied to the default user will apply to admin user. EVERYTHING
  8. Normally it writes the to "Default" (HKEY_USERS\\.Default\\) account but now if W7T detects that it will automatically write it to the "administrators" account too.
  9. 1. Well i've just fixed an issue where you could not re-order priority updates, but i think what your explaining works fine for me. You can't add KB2647516 to the priority list (thats done on purpose) because why would you want it installed before IE9??? If you really want that update it be installed first then move it to the top or the normal list. 2. I'm assuming you was using the *.cab IE9? That now gets added to the priority list. Sorry missed this earlier, im not entirely sure, im fairly confident they can be installed in any order.
  10. Have you tried the new RunOnce?
  11. Ok i've just programmed W7T to apply tweaks to BOTH "WIM_Admin" and "WIM_Default" As above, v1.4.0.3 will write to both places.
  12. KB2647516 needs IE9 to be installed first, which is why IE9 is in the priority list, as this makes sure IE9 is installed BEFORE you install Windows6.1-KB2647516-x64 and so on.. Priority is for 'Prerequisites'
  13. Done everything in this thread Just need to do a bit of testing
  14. Welcome MR_Smartepants Which would you recommend pnputil or DrvInst? I was thinking that if W7TRunOnce found a driver folder it could install all the drivers, but since you said drvinst only install those that are needed then im tempted to use drivinst
  15. Can you please right click your 'WindowsXPMode_cs-CZ.exe' ​> Properties > Details and tell me its version number please? preferable a screenshot
  16. So far i've added the LocalPack grouping however i don't have any to test it with EDIT: IE9 doesnt have it's own group, it just gets put in a 'Priority' group so it gets installed first.
  17. Legolash2o replied to alfreire's post in a topic in Win Toolkit
    Thank you very much, much appreciated. Just some news, i've fixed the donation button in W7T and will work in v1.4.0.2. Thanks again.
  18. Legolash2o replied to alfreire's post in a topic in Win Toolkit
    I've send you a PM with an alternative address, my and NIM (N1K) are looking into the problem. Thanks for the donation anyway, much appreciated EDIT: There is an issue with the donate button in W7T. Click here instead.
  19. Legolash2o posted a post in a topic in Win Toolkit
    Win Toolkit is a lightweight and easy to use application that was created in order to help you customize your Windows installation! With this tool you can integrate Addons, Drivers, Gadgets, Language packs, Modified Files, Theme Packs, Tweaks, Silent Installers, Updates. You can also remove features such as Windows Media Player and customize Windows default services state. Win Toolkit also comes with extra tools which helps you convert files, make ISOs, download the latest updates (thanks to SoLoR and McRip), and completely customize your images to tailor your Windows installation disk to your exact needs. Win Toolkit is the new name for Windows 7 Toolkit as it also works for Windows 8. XP and Vista users: You will need to use the DISM Installer and .NET Framework 3.5 in order for Win Toolkit to work on your Operating System! If you have any problems, bugs or requests then please click here. P.S. I have noticed that some people post questions and bugs in the 'reviews', i don't really check these so you are better off posting them in the forum. Video by Britec: ----------------------------------------------------------------------------- Tools Manager is the main window for Win Toolkit, there are many tools which you can select. Main - Basic All-In-One Integrator This is the greatest tool in Win Toolkit, it's let you integrate, Addons, Remove Components, Drivers, Gadgets, Language Packs, Edit Services, Silent Installs, SFX, Theme Packs, Tweaks, Updates and Wallpapers! ISO Maker This is what it says on the tin, it creates your ISO file for you to burn! Now supports UEFI! Update Catalog SoLoR and McRip work very hard and providing ALL the updates released since Service Pack 1 so they should get credit for this, this little tool lets you easily download their updates which Microsoft has released via Windows Updates but more importantly which Microsoft has also released privately and which are not released via Windows Update. Windows 7 SP1 ISO Since i prefer my users to use the latest service packs, i have added a link to a completely free, legal and official download source to the Windows 7 SP1 DVD. Note, you will still need your own serial key. Main - Intermediate All-In-One Disk Creator This tool let's you combine all your WIM files into one DVD, this is most commonly used is to merge x86 and x64 disks. Unattended Creator I'm sure you can guess what this is, this creates an Unattended file which you use to install Windows with, just create and make sure you place the new file in the DVD root. USB Boot Preparation Prepares your USB stick so you can install Windows from it, obviously your computer needs to support USB booting! WIM Manager Manage and edit your install.wim, for example you can rename images, delete images, add new ones, create ISO, rebuild, mount, unmount, etc... You can also use this tool to integrate your unattended files. Main - Advanced Component Removal This program let's you remove over 100 components which comes with Windows, some of them are Internet Explorer, IIS, Windows Media Player, Sample Pictures, Tablet PC components, etc... I am also planning on adding some more eventually. WIM Registry Editor This tool mounts the wim and then it's registry so you can add your tweaks into that image! Tools Addon Maker This tool is for advanced users to create .WA files which other users can use the All-In-One Tool to integrate into your image. Capture Image Captures new WIM images, so you can use that new image to install Windows. Driver Installer This will install drivers on your currently installed system using pnputil.exe, it will only install the drivers you need.This tool also lets you uninstall drivers too. Language Pack Converter Converts Langauge Packs which are in the exe format to cab so you can integrate them. MSU > CAB Converter Converts MSU to CAB files so you can integrate them or install on your current OS via the CAB Installer. MSP Extractor (MS Office) Converters Office Updates to msp so they can automatically install when you install Office. SWM Merger Merge *.swm files into a larger *.wim file so it can be edited. WIM Splitter This tool splits your install.wim into multiple files so you can fit them onto multiple CDs. Update Installer This will install updates on your currently installed system, probably mostly used by those who use SoLoR or McRip Updates. This tool also lets you uninstall old updates too. Update Retriever When Windows Update downloads updates, the cab files get left in a folder. This tool retrieves those files so you can integrate them. Downloads This has links to the most popular downloads you should need for Win Toolkit. If you have any problems, bugs, requests click the 'Win Toolkit' link above. Alternate Download Link (Mediafire) Changelog ------------------------------------------ *1.4.0.60^NEW: Unmount screen will prompt if other wim editing tools are open on 'Save' *1.4.0.60^NEW: New 'Add' option in All-In-One Integrator *1.4.0.60^FIX: FolderBrowserDialog went into root directy of previously saved *1.4.0.60^FIX: Fixed a few status messages in All-In-One Integrator *1.4.0.60^FIX: Changing setup background could not find file *1.4.0.60^FIX: Win Toolkit will save logs with UTC time *1.4.0.59^NEW: Win Toolkit now required .NET Framework 3.5 *1.4.0.59^FIX: Update Catalog did not work properly outside berlin time *1.4.0.59^FIX: Update Installer did not work on Windows 8 *1.4.0.59^FIX: Component Removal showed incorrect group count *1.4.0.58^FIX: Unattended Creator did not import product key *1.4.0.58^GUI changes to WIM Manager *1.4.0.58^ISO Maker loads last ISO location on startup *1.4.0.57^FIX: Tweak prompt form did not load correctly *1.4.0.57^FIX: 'Remove Shortcut Prefix' tweak did not work *1.4.0.57^FIX: 'Change Setup Background' tweak did not work *1.4.0.56^FIX: Fixed dll error when importing addon in Addon Maker *1.4.0.56^FIX: Fixed 'Save Screenshot' on error form *1.4.0.55^FIX: Hopefully fixed .dll error in Addon Maker *1.4.0.55^FIX: Hopefully fixed known status bar error when rebuilding images *1.4.0.55^FIX: Silent Installers did not copy folders *1.4.0.55^Integrating Silent Installers will replace files if MD5 do not match *1.4.0.54^Update Catalog now shows Windows 8 RTM updates *1.4.0.53^FIX: All-In-One Integrator did not integrate updates if mount path had a space *1.4.0.53^FIX: 'Disable Mapped Drive Checking' caused BSOD on install *1.4.0.53^All logs will now go into 'Logs' folder *1.4.0.53^Registry logging can be enabled via options *1.4.0.52^FIX: Textboxes selected all on mouse wheel scroll *1.4.0.52^FIX: Hopefully fixed a few missing .dll errors *1.4.0.52^FIX: VistaBrowserDialog will revert to old FolderBrowserDialog if it fails *1.4.0.51^NEW: New main screen design *1.4.0.51^NEW: Mouse wheel will now move currently viewed listview *1.4.0.51^NEW: Built-in browser will load if default web browser fails to load *1.4.0.51^FIX: Some links did not open properly *1.4.0.51^FIX: x64 recovery mode enabled even if no x86 images are selected. *1.4.0.51^FIX: WIM Manager > ISO Maker had BIOS selected as default *1.4.0.51^FIX: All-In-One Disk Creator > ISO Maker had BIOS selected as default *1.4.0.51^FIX: WIM Registry Editor did not load correct registry location *1.4.0.51^FIX: Rebuilding image may accidently delete wim *1.4.0.51^FIX: Fixed a lot more spelling and grammar mistakes *1.4.0.51^FIX: ISO Maker did not load last ISO location *1.4.0.51^Update Catalog will now compare dates *1.4.0.51^Donation links no longer travel through ADF.LY *1.4.0.50^FIX: Users now prevented from mounting to the desktop itself *1.4.0.50^FIX: Better cleanup when integrating addons *1.4.0.50^FIX: Update Catalog did not show top of 'New Updates' section *1.4.0.49^FIX: Fixed a bunch of spelling and grammar mistakes *1.4.0.48^FIX: AIO Disk Creator deleting everything with x64 Rec mode *1.4.0.48^FIX: Fixed background worker error in Update Catalog *1.4.0.48^FIX: Made some changes to driver duplicate detection *1.4.0.47^FIX: I have now prevent users from adding *.msp files in DragDrop situations *1.4.0.47^FIX: AIO Integrator did not show progress *1.4.0.47^FIX: Some integration tasks did not cancel if user requested. *1.4.0.47^Rechecked progress changing code. *1.4.0.46^FIX: Fixed error changing setup background *1.4.0.45^FIX: Fixed another file copying issue *1.4.0.45^FIX: Fixed file already exists error when copying files *1.4.0.45^FIX: Further DPI fixes *1.4.0.45^FIX: Corrected some text *1.4.0.45^Tweak: 'Desktop Icon Size' *1.4.0.45^Tweak: 'Disable Mapped Drive Checking on Startup' *1.4.0.44^FIX: Sometimes Win Toolkit could not detect existing mount folder *1.4.0.44^FIX: Fixed some DPI GUI glitches *1.4.0.44^FIX: Fixed some other GUI issues to stop confusion *1.4.0.43^FIX: Fixed 'Delete Silent Installers' option in AIO *1.4.0.43^FIX: Column sizes did not adjust if preset was imported *1.4.0.43^FIX: Silent installers with foreign characters now supported *1.4.0.43^FIX: Fixed index error whilst saving AIO preset *1.4.0.43^FIX: Minor GUI and code fixes *1.4.0.42^NEW: Update integration system. Efficient, faster and more bug free. *1.4.0.42^FIX: Importing multiple SFX files got set as 'Always Install' *1.4.0.42^FIX: Items could not be removed from All-In-One Integrator lists *1.4.0.42^FIX: 'Files' list in All-In-One Integrator did not get cleared *1.4.0.41^FIX: IE9 LangPacks did not save in preset *1.4.0.41^FIX: Size column did not show correctly on Update catalog *1.4.0.41^FIX: Fixed error when removing item in AIO Integrator *1.4.0.41^FIX: Fixed error when adding reg files in AIO Integrator *1.4.0.41^FIX: Drivers did not integrate *1.4.0.41^FIX: Refixed Toolkit being on top when opening webpages *1.4.0.41^Update catalog now shows McRips Windows 8 updates *1.4.0.40^FIX: Update Installer will not logner try to install corrupt files *1.4.0.40^FIX: Update Catalog will delete corrupt (0 bytes) files when scanning. *1.4.0.40^FIX: 'Adjust Visual Styles' tweaks now sets other checkboxes *1.4.0.40^FIX: File not found for Update Installer *1.4.0.40^Re-updated the unmount screen *1.4.0.40^Added 'Open Mount' in WIM Manager for mounted images *1.4.0.40^Win Toolkit now remembers form sizes *1.4.0.39^FIX: Hopefully fixed copying file error with AIO Disk Creator *1.4.0.39^FIX: Fixed IE9 and XP Mode *.exe integration *1.4.0.39^FIX: Main form is no longer TopMost *1.4.0.39^FIX: Update Catalog will now show top item *1.4.0.39^FIX: Error when adding driver if folder has been deleted/moved during integration. *1.4.0.39^Better cleanup for IE9 LangPacks *1.4.0.39^Made some improvements to big improvements to MSU>CAB Converter *1.4.0.38^FIX: Fixed a few typos *1.4.0.38^FIX: IE9 Language Pack integration and detection *1.4.0.38^Updates now show language *1.4.0.37^FIX: Fixed a few 'Object not set as reference' errors *1.4.0.37^FIX: Items in 'Updates' list > 'Integrated' tab did not fit in the columns properly *1.4.0.37^Added Virtual PC and VirtualBox to 'Downloads' tab *1.4.0.37^Further memory enchancements and code cleanup *1.4.0.37^Incorporated adf.ly into links *1.4.0.36^FIX: Fixed AIO Integrator sort buttons *1.4.0.36^FIX: 'Mouse Hover Time' tweak in AIO Integrator *1.4.0.36^Ability to 'Save Screenshot' in the new error message window. *1.4.0.35^FIX: Wrong status after 'Clear Lists' in AIO Integrator *1.4.0.35^FIX: KB2719177 did not add to the updates list *1.4.0.35^Less intrusive error messages when adding updates to list *1.4.0.35^Some GUI changes to Update Installer *1.4.0.34^New notification for invalid updates *1.4.0.33^FIX: Added Windows Self-Update cabs now load *1.4.0.33^FIX: Adding langugage packs support links now fixed *1.4.0.33^FIX: 'Solor' was the default folder for the Update Catalog *1.4.0.33^Rebuilding image shows image number *1.4.0.33^Some code enhancements *1.4.0.32^FIX: Error during copy directories (already exists) *1.4.0.32^FIX: Copy Directories did not work *1.4.0.32^FIX: Made some improvements to the GUI on AIO Disk Creator *1.4.0.31^FIX: Some updates such as IE9 did not add to updates list *1.4.0.30^FIX: IE9 LangPack will now go green *1.4.0.30^FIX: Multiple errors when closing WIM Manager during 'Save & Rebuild' unmount *1.4.0.30^FIX: Update Catalog did not detect additions folder *1.4.0.30^IBAN/BIC/SWIFT options added to donation screens *1.4.0.30^Massively improved update compatibilty detection *1.4.0.30^USB Boot Prep enhancements *1.4.0.30^SoLoR Updates option temporarily removed *1.4.0.29^FIX: Hopefully fixed Silent Installer integration of russian versions *1.4.0.29^FIX: Access Denied error when copy directories *1.4.0.29^FIX: Index error when uninstalling update via Update Installer *1.4.0.29^FIX: Internet Explorer did not add to AIO integrator correctly *1.4.0.29^FIX: Some code and UI fixes to Component Remover *1.4.0.29^Update Catalog now removes empty directories *1.4.0.29^Windows 8 option for Downloads > Windows ISOs *1.4.0.29^Main tooltips now show for 30s instead of 5s *1.4.0.28^New 'Donate' options *1.4.0.27^FIX: 'Adjust Visual Styles' tweak did not work *1.4.0.27^FIX: Using 'Import Image' via 'WIM Manager' had wrong options selected *1.4.0.27^FIX: Update Installer hanged uninstalling updates *1.4.0.27^FIX: Updates for Windows Update itself now show green *1.4.0.27^FIX: Links did not open correctly. *1.4.0.27^FIX: MSU to CAB Converter now opens support page on double click *1.4.0.27^FIX: MSU to CAB Converter did not show correct support link *1.4.0.27^FIX: Driver Installer said 'Stop' when removing drivers *1.4.0.27^FIX: When uninstalling drivers, the list was still disabled. *1.4.0.27^FIX: When loading services presets, same values will not be checked *1.4.0.27^FIX: WinToolkit now cleans up on exit when on new update screen *1.4.0.27^FIX: Removed 'SoLoR' button from Update Catalog *1.4.0.27^FIX: Update Checker did not load setting correctly *1.4.0.27^'Music and Video Samples' is now red *1.4.0.27^Antivirus prompt before AIO Integration starts *1.4.0.27^EXE > MSU now prompts where to put the files after completion *1.4.0.26^FIX: Multiple fixes to Unattended Creator *1.4.0.26^FIX: Fixed resizing issue on Update retriever *1.4.0.26^FIX: Fixed link to 'Update Catalog' on download tab *1.4.0.26^FIX: AIO Creator had overlapping check boxes *1.4.0.26^FIX: AIO Integrator now has the correct service settings *1.4.0.26^FIX: Added some missing descriptions in Tweaks (not all) *1.4.0.26^Renamed group 'Online Installers' to 'Online Installers - Current OS' *1.4.0.26^Status messages enchancement *1.4.0.26^Removed CPU choice from Unattended *1.4.0.26^FolderBrowserDialog now saves last directory *1.4.0.25^FIX: KB943790, KB971033 & KB917607 integrated detection *1.4.0.25^FIX: Crash when returning to Tools Manager *1.4.0.25^FIX: WinToolkit allowed forms to open more than once *1.4.0.24^TWEAK: Pre-install .Net Framework 2.0/3.0/3.5 [Win8] *1.4.0.24^NEW: SoLoR Updates now renamed to 'Update Catalog' *1.4.0.24^NEW: 'Update Catalog' now supports McRip updates *1.4.0.24^FIX: KB2666914 integrated detection *1.4.0.23^FIX: AIO language pack integration will go green if successful *1.4.0.23^FIX: Better WIM unmount & cleanup *1.4.0.22^FIX: Finally fixed Silent Installer issues (confirmed) *1.4.0.22^FIX: Prevent USB Boot Prep from closing whilst scanning *1.4.0.22^FIX: Removed 'Change DPI Setting' tweak as it caused a BSOD. *1.4.0.21^FIX: Fixed issue where boot.wim #2 was not mounted *1.4.0.21^FIX: Tools Manager now remembers which 'Main' sub-tabpage *1.4.0.21^FIX: Fix progress bar for itnegrating updates in AIO Integrator *1.4.0.21^FIX: Possibly fixed error when removing 'ei.cfg' file via WIM Manager *1.4.0.20^FIX: Hopefully fixed AIO sorting errors *1.4.0.20^FIX: Invalid characters can't be used in 'Name' section of Silent Installers *1.4.0.20^FIX: Error occures when user closed WIM Registry Editor whilst unmounting *1.4.0.20^FIX: Vista_API.dll missing error if deleted *1.4.0.20^FIX: Issue where a normal WIM file can be detected as SWM instead *1.4.0.19^FIX: Fixed RunOnce issues *1.4.0.19^FIX: Office 2003 updates did not extract *1.4.0.18^FIX: WinToolkit crashed when closing SoLoR Updates *1.4.0.18^FIX: WinToolkit crashed when closing CAB Retriever *1.4.0.18^FIX: WinToolkit crashed when closing Component Remover *1.4.0.18^FIX: WinToolkit did not load all settings on startup *1.4.0.18^FIX: Office update KB2553111 did not extract *1.4.0.18^FIX: Hopefully fixed an error when rebuilding images *1.4.0.18^FIX: Show Preset Manager setting did not save *1.4.0.18^FIX: Vista_API.dll missing error if deleted *1.4.0.18^FIX: Fixed thread already running error in WIM Manager *1.4.0.18^FIX: WinToolkit tried to integrate a LP which didn't exist *1.4.0.17^FIX: Some issues with RunOnce Installers *1.4.0.17^FIX: Progress bar error in AIO *1.4.0.17^FIX: Update Retriever did not show Windows Updates *1.4.0.16^FIX: Some issues with RunOnce *1.4.0.16^FIX: Update Retriever shows duplicate files *1.4.0.16^FIX: Always show menu bar in IE9 did not work *1.4.0.16^.WA files now get an icon, special thanks to ElmerBeFuddled *1.4.0.15^FIX: Unhandled errors did not get logged. *1.4.0.14^FIX: Old W7T installers would not get installed via RunOnce *1.4.0.14^RunOnce code cleanup *1.4.0.13^Renamed Windows 7 Toolkit (W7T) to WinKit *1.4.0.13^FIX: Not sorting files on AIO Lists *1.4.0.13^FIX: IA64 drivers where being displayed as x86 *1.4.0.13^FIX: Fixed some minor bugs *1.4.0.13^FIX: Fixed open file prompt when installing from USB *1.4.0.13^FIX: MSU > CAB Converter did not convert IE9 Lang Packs correctly *1.4.0.13^WinKitRunOnce will try and prevent shutdown *1.4.0.13^You can now double click mounted images in WIM Manager to open folder *1.4.0.12^NEW: 'CAB Retriever' has now been upgraded to 'Update Retriever' *1.4.0.12^FIX: Update Installer did not integrate updates if LDR Mode was enabled *1.4.0.12^FIX: Fix addon integration if file/folder did not exist *1.4.0.12^FIX: Made some modifications to MSU > CAB Converter which affects IE9 Lang Packs *1.4.0.12^Sorted out 'Options' *1.4.0.12^More 'Options in AIO Integrator and also more orgranised *1.4.0.12^Drivers in boot.wim is shown in integrated tab *1.4.0.11^FIX: Option to change RunOnceLogo did not work *1.4.0.11^FIX: AIO - Could not import/save updates *1.4.0.10^FIX: Some tweaks did not provide options *1.4.0.10^FIX: Driver Installer displayed message after each install *1.4.0.10^FIX: If W7T is already running then the current W7T will move to foreground *1.4.0.9^FIX: Updates did not integrate if IE9 Lang Packs where added. *1.4.0.9^FIX: Online Driver Installer did not work at all *1.4.0.9^FIX: Boot.wim did not always mount *1.4.0.9^FIX: RunOnce did not restart and showed aborting... *1.4.0.8^NEW: W7T will automatically recover mount images *1.4.0.8^NEW: Enhanced W7T update checking *1.4.0.8^FIX: AIO will remount boot.wim #1 if image #2 is not found. *1.4.0.8^FIX: WIM Registry Editor should mount properly *1.4.0.8^FIX: Fixed detection if image is already mounted *1.4.0.7^FIX: Capture Image automatically detects name if nothing entered *1.4.0.7^FIX: Tooltips on Addon Maker did not show up correctly *1.4.0.7^Small improvements to Addon Maker *1.4.0.6^FIX: W7T could not re-mount image if you used a premounted image in AIO Integrator *1.4.0.6^FIX: Better mount detection *1.4.0.6^FIX: Options always had 'Detect Antivirus' ticked *1.4.0.6^FIX: Issue where image did not mount. *1.4.0.6^FIX: Some tweaks where incorrect *1.4.0.6^FIX: Some updates did not show as green after integration (Windows Update ones) *1.4.0.6^Removed some duplicate tweaks *1.4.0.6^VirtualPC is added to priority list *1.4.0.6^Option added to anti-virus warning *1.4.0.5^FIX: Addons now work with foreign characters *1.4.0.5^FIX: W7TRunOnce sometimes crashed *1.4.0.5^FIX: Better IE9 exe detection (some people are forcing other *.exe) *1.4.0.5^Made some other improvements to W7TRunOnce *1.4.0.4^FIX: WIM Manager accidently deleted mount entries. *1.4.0.4^FIX: W7T sometimes hanged deleting previous folder *1.4.0.4^FIX: Better update integration detection *1.4.0.3^FIX: Always Show Preset did not show correctly *1.4.0.3^FIX: AIO caused an error when trying to write W7TDrivers.txt *1.4.0.3^FIX: WIM_Default registry items will also be written to WIM_Admin *1.4.0.3^FIX: Loading presets did not work correctly *1.4.0.3^LocalPacks are now grouped *1.4.0.3^Full 'LocalPacks' support *1.4.0.3^Better update integration *1.4.0.2^FIX: Donate button did not work *1.4.0.2^FIX: Installer white text option was not in the correct group (AIO Options Tab) *1.4.0.2^FIX: Integration of IE9 and XP Mode is cleaner *1.4.0.2^FIX: Fixed foreign language detection on updates *1.4.0.1^NEW: W7T now uses a new error logging system catching most errors *1.4.0.1^NEW: Completely new reprammed W7TRunOnce (v4.0.0) *1.4.0.1^FIX: Some items in the integrated updates list did not show properly *1.4.0.1^FIX: Some items in the integrated drivers list did not show properly *1.4.0.1^FIX: W7T sometimes hanged on exit (rare) *1.4.0.1^FIX: Sometimes W7T would start being completely white. *1.4.0.1^FIX: Options in AIO let the user edit the name *1.4.0.1^FIX: AIO Options did not restore to default after completion *1.4.0.1^FIX: Could not mount image if it had no <NAME> variable *1.4.0.1^FIX: WIM Manager could not rename all images *1.4.0.1^FIX: MSU could not convert if you selected output path as drive root *1.4.0.1^FIX: Some tools did not report which image was being mounted/unmounted properly *1.4.0.1^FIX: Could not extract file is 'SevenZipSharp.dll' was missing. *1.4.0.1^FIX: Could not extract file is 'Interop.IWshRuntimeLibrary.dll' was missing. *1.4.0.1^FIX: Unattended Creator no longer lets you use invalid characters for 'Computer Name' *1.4.0.1^FIX: Fixed a potential language pack integration bug. *1.4.0.1^FIX: Fix a language pack integration bug where a 'license' folder could not be copied *1.4.0.1^FIX: Fixed an issue where adding updates did not cancel on request using Update Integrated *1.4.0.1^FIX: Fixed 'Read Task.txt' in AIO Integrator *1.4.0.1^FIX: Removed hand cursor from Welcome Tab (Tools Manager) *1.4.0.1^FIX: Current OS option in AIO did not uncheck if user selected no *1.4.0.1^FIX: Better detection of architecture for drivers *1.4.0.1^FIX: Some files did not extract properly if 'ExtractTo' folder was not created first *1.4.0.1^FIX: CAB Retriever did not copy files. *1.4.0.1^FIX: Fixed issue when adding unattended tried to replace itself. *1.4.0.1^FIX: Fixed error which sometimes occured if WIM Registry Editor did not mount properly *1.4.0.1^FIX: Progress bar now works correctly when integrating drivers into boot.wim *1.4.0.1^TWEAK: Change DPI Setting *1.4.0.1^TWEAK: Register/Unregister *.dll, *.ocx and *.ax *1.4.0.1^Tidied up Addon Maker, centered things, etc.. *1.4.0.1^In Addon Maker, variables will show tooltip showing where files will go *1.4.0.1^Addon Maker lets you edit addons *1.4.0.1^Added antivirus detection *1.4.0.1^UEFI support added for ISO Maker *1.4.0.1^W7T now shows which Windows drivers are for. *1.4.0.1^You can double click a driver to show its .inf file in notepad *1.4.0.1^Lots of GUI changes *1.4.0.1^Driver Installer lets you install/remove drivers on the live system. *1.4.0.1^Update Installer now lets you uninstall updates *1.4.0.1^You can now save or load AIO lists individually without affecting the other lists
  20. Finished, closing thread. Note: When adding updates, change it from *.MSU *.CAB to *.EXE. Same way you integrate IE9.
  21. I've just completely reprogrammed W7TRunOnce installer in C# for v1.4.0.1 this should fix both of your problems.
  22. Glad you finally got it sorted (PM), unfortunately i can't publish what caused it without breaking the forum rules Lets just say something caused Windows to reboot before W7T had a chance to load.
  23. This request is nearly done, just got to add the reg add parts
  24. they work the same
  25. Are you sure that's all i need to do to make XP Mode straight after install??