Legolash2o Posted August 5, 2010 Share Posted August 5, 2010 (edited) Since 0.7.0 final has been released, i am now taking requests for v0.8.0. I will be having a month break from coding W7T so meanwhile you can tell me your ideas and requests.Not all ideas have been put into the alpha yet, still got quite a big to do list. Enjoy! WARNING: This is an ALPHA version and downloading this is optional, recommended only for advanced users. WARNING2: Component Removal is still at its early stages so i recommend testing with VirtualPC, VMWare, etc.. first!http://mediafire.com/Legolash2o*NEW: Component Remover*NEW: Silent Installers*NEW: Tweaks Interface*FIX: Update Downloader*FIX: Some buttons did not appeart after unmount (WIM Manager)*FIX: Update Integrator stop adding updates if wrong architecture*FIX: SoLoR Updates Home link*FIX: SoLor Updates did not get filtered*FIX: Lists did not show groups if a filter was set*FIX: Rebuild All will no longer damage WIM File if window is close during process*FIX: If user closed Exporting window then new file was not deleted*FIX: CAB Installer said Integrating instead of Installing*FIX: Some updates added to tools was named "neutral"*FIX: Hotkey (enter) added all items to download queue instead of selected*FIX: W7T now runs on XP/Vista although still not supported*FIX: %StartMenu% variable on Addon Maker*FIX: Tooltips did not display at all!*FIX: "More Info" link on Solor Updates*Options has been completely redesigned*Load Tools Manager on Startup*Added Logging Tab in Options*Removed tray icon*Added Import to WIM Manager*Display errors on AIO Update Integrator*W7T now asks if you want to save/discard and leave the wim mounted*W7T now uses already mounted wim*Addon Integrator standalone has been removed (AIO made it obsolete)*Update Integrator standalone has been removed (AIO made it obsolete)*Driver Integrator standalone has been removed (AIO made it obsolete)*WIM Tweaker standalone has been removed (AIO made it obsolete)*Closing a tool will return you to the Tools Manager*Changed Driver Packs home link*Tools list has been renamed to Programs*Renamed Tools to Programs*WIM Manager shows already mounted*W7T now writes error log to root folder instead of uploading*Added more variables to Addon Maker*W7T Addon Maker now supports %SYSTEMDRIVE% variable*W7T Addon Maker now supports %SYSTEMROOT% variable*W7T Addon Maker now supports %USERPROFILE% variable*W7T Addon Maker now supports %ALLUSERSPROFILE% variable*W7T Addon Maker now supports %PUBLIC% variable*W7T Addon Maker now supports %APPDATA% variable*W7T Addon Maker now supports %LOCALAPPDATA% variable*W7T Addon Maker now supports %PROGRAMDATA% variable*W7T Addon Maker now supports %COMMONPROGRAMFILES% variable*W7T Addon Maker now supports %COMMONPROGRAMFILES(X86)% variable*W7T Addon Maker now supports %PROGRAMFILES(X86)% variable*W7T Addon Maker now supports %HOMEDRIVE% variable*W7T Addon Maker now supports %HOMEPATH% variable*W7T Addon Maker now supports %PATH% variable*W7T Addon Maker now supports %USERPROFILE% variable*W7T Addon Maker now supports %TEMP% variable*W7T Addon Maker now supports %WINDIR% variable*W7T Addon Maker now supports %USERS% variable*Added "Variables" tab to Addon Maker*Added "Download Addons" to AIO Integrator*New Updater*Added Merge to WIM Manager*Options now save settings when clicking apply*W7T detects when the mount window is closed*New Logging (Default and Extensive)*Change Default Mount Folder*Blocks setting temp folders as drive root*Tweak: Switch Capslock and Backspace Keys*Tweak: Disable Group Policy Synchronise*Tweak: Enable MSI Service in Safe Mode*Tweak: Remove Shortcut Prefix*Tweak: Create Minidumps*Tweak: Disable Windows Error Reporting*Tweak: Add Take Ownership to context-menu (Files)*Tweak: Add Take Ownership to context-menu (Folders)*Tweak: Open cmd here*Tweak: Add "Manager" to Desktop context-menu*Tweak: Add "Services" to Desktop context-menu*Tweak: Remove Shortcut Arrow*Tweak: Add "All Tasks" to Desktop context-menu*Tweak: Add "Defrag" to Desktop context-menu*Tweak: Remove "Add to WMP list" from context-menu*Tweak: Remove "Print" from context-menu*Tweak: Remove "Troubleshooting Compatibility" from context-menu Edited September 5, 2010 by Legolash2o Quote Link to comment Share on other sites More sharing options...
George King Posted August 6, 2010 Share Posted August 6, 2010 (edited) Removing components via DISM please Edited September 5, 2010 by Legolash2o Quote Link to comment Share on other sites More sharing options...
Legolash2o Posted August 6, 2010 Author Share Posted August 6, 2010 You can remove components using dism???? whats the command? Quote Link to comment Share on other sites More sharing options...
George King Posted August 6, 2010 Share Posted August 6, 2010 (edited) And you can add support Windows XP Mode true integration. This is my script from my Update.exe. It can help you to add it REG LOAD HKLM\Slipstream "%WIM%\Windows\System32\Config\Software" >nulFOR %%f IN ("WindowsXPMode*.exe") DO (echo. echo Slipstreaming Windows XP Mode... if not exist "%TEMP%\XPM" mkdir "%TEMP%\XPM" >nul %%f /X:"%TEMP%\XPM" /Q msiexec /a "%TEMP%\XPM\sources\xpminstl32.msi" /qn TARGETDIR="%TEMP%\XPM" xcopy /E /Y "%TEMP%\XPM\Program Files" "%WIM%\Program Files" >nul RD /S /Q "%TEMP%\XPM" >nul REG ADD "HKLM\Slipstream\Microsoft\Windows XP Mode" /v InstallDir /d "C:\Program Files\Windows XP Mode\Windows XP Mode base.vhd" /f >nul REG ADD "HKLM\Slipstream\Microsoft\Windows XP Mode" /v TutorialPath /d "C:\Program Files\Windows XP Mode\Tutorial\VXPTutorial.html" /f >nul ))REG UNLOAD HKLM\Slipstream >nulP.S. You can update your link to XP Mode final And I also recomende integrate this update after slipstreaming XP Mode http://support.microsoft.com/?kbid=977206 Edited September 5, 2010 by Legolash2o Quote Link to comment Share on other sites More sharing options...
George King Posted August 6, 2010 Share Posted August 6, 2010 (edited) You can remove components using dism???? whats the command? Yes, you can remove packages But you need to unlock it using win6x_registry_tweak_bin_v1.1You need to mount install.wim, apply win6x_registry_tweak_bin_v1.1 commit changes. Than mount install.wim again, and you will see all packages, like IE, WMP, Media Center, etc.. And DISM command:dism.exe /image:%PATH_TO_IMAGE% /remove-package /packagename:%PACKAGE_NAME%See attachment, it include win6x_registry_tweak_bin_v1.1 and packages lists win6x_registry_tweak_bin_v1.1.rarPackages.rar Edited August 6, 2010 by George King Quote Link to comment Share on other sites More sharing options...
Legolash2o Posted August 6, 2010 Author Share Posted August 6, 2010 Thanks I've analysed the program and found out what it changes so W7T will be able to make the modifications without the hack program. Some questions...Does it remove it from add/remove features?Does it decrease the image size? (similar to vlite)You know W7T stores settings in the text file (settings.txt), how would you feel about it storing the settings in the registry or do you prefer it to be more portable? (keeping the settings file) Quote Link to comment Share on other sites More sharing options...
ricktendo Posted August 6, 2010 Share Posted August 6, 2010 install_wim_tweak does something to the registry hive to unhide packages that you cant see/remove in the 1st place, packages.xls will help you with what relation to each other all the components have (1.1 is related to 1.2, 1.3, 1.4 etc...2.1 is related to 2.2, 2.3, etc)Watch part 3 of my video (in my sig, I talk briefly about it you will see what it unhides)BTW if you want to make the image smaller (I think) after removing the components this will not be done until you export the image (some files remain after removal, exporting the image/s will leave these files behind making your wim smaller) Quote Link to comment Share on other sites More sharing options...
Jatin Beniwal Posted August 6, 2010 Share Posted August 6, 2010 Thanks I've analysed the program and found out what it changes so W7T will be able to make the modifications without the hack program. Some questions...Does it remove it from add/remove features?Does it decrease the image size? (similar to vlite)You know W7T stores settings in the text file (settings.txt), how would you feel about it storing the settings in the registry or do you prefer it to be more portable? (keeping the settings file)No it does not make installation smaller. It removes package just like disabling it through wim. Nothing else. Quote Link to comment Share on other sites More sharing options...
Legolash2o Posted August 6, 2010 Author Share Posted August 6, 2010 Using "Rebuild All" should do the trick Quote Link to comment Share on other sites More sharing options...
Legolash2o Posted August 6, 2010 Author Share Posted August 6, 2010 Using "Rebuild All" should do the trick Quote Link to comment Share on other sites More sharing options...
ricktendo Posted August 6, 2010 Share Posted August 6, 2010 Here is exactly what install_wim_tweak does, changes the "Visibility" value in the registry for all packages in <Mount_Folder>\windows\system32\config\software, heres an example:HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-WMPNetworkSharingService-Package~31bf3856ad364e35~amd64~en-US~6.1.7600.16385 Visibility dword:00000002 <changed to> dword:00000001Id basically do that will all the packages in that subkey to allow removal, then hide them again before unmount Quote Link to comment Share on other sites More sharing options...
George King Posted August 6, 2010 Share Posted August 6, 2010 Using "Rebuild All" should do the trick That sounds cool Quote Link to comment Share on other sites More sharing options...
George King Posted August 6, 2010 Share Posted August 6, 2010 (edited) Hey Lego, and what about Windows XP Mode?P.S. Removing components will be nice Edited August 6, 2010 by George King Quote Link to comment Share on other sites More sharing options...
Legolash2o Posted August 6, 2010 Author Share Posted August 6, 2010 The post way above says I know what it changes, can you still type in the package name even though it's invisible?I will have a look at XP Mode thing when I get home from work lolRebuild All is already in the latest version, in WIM Manager and the option to run it automatically after AIO Integrations. Quote Link to comment Share on other sites More sharing options...
ricktendo Posted August 6, 2010 Share Posted August 6, 2010 You cant remove a package just because you know the name of the package, you will get an error if its still hiddenFYI if I recall, if you remove this for exampleMicrosoft-Windows-WMI-SNMP-Provider-Package~31bf3856ad364e35~amd64~~6.1.7600.16385It should remove the (same name) xx-XX language package as wellMicrosoft-Windows-WMI-SNMP-Provider-Package~31bf3856ad364e35~amd64~en-US~6.1.7600.16385Edit: P.S. if you dont re-hide the packages you will end up with a bunch of junk entries in add/rem programs->installed updates Quote Link to comment Share on other sites More sharing options...
Legolash2o Posted August 7, 2010 Author Share Posted August 7, 2010 I've made a batch file which removes components but im just getting an Access Denied error Any help? Quote Link to comment Share on other sites More sharing options...
Jatin Beniwal Posted August 7, 2010 Share Posted August 7, 2010 can u post ur batch file here Quote Link to comment Share on other sites More sharing options...
Legolash2o Posted August 7, 2010 Author Share Posted August 7, 2010 (edited) can u post ur batch file hereEven when i change it to /Online it don't work. Edited August 7, 2010 by Legolash2o Quote Link to comment Share on other sites More sharing options...
ricktendo Posted August 7, 2010 Share Posted August 7, 2010 Find the author or ask on MSFN what exactly does the tool do-------------------------------------------------Pre-install registry Tweak Tool---------------------for Windows 6.x--------------------------------------------------------Processing : \mountCreating BKP of registry file... OKMounting registry file... OKEnabilng taking ownership... OKEditing 'Packages' subkeys 257/257 OKEditing 'PackagesPending' subkeys 257/257OKModyfing registry completed sucessfully.-------------------Ending------------------Unmounting key... OKRemoving BKP file... OK Quote Link to comment Share on other sites More sharing options...
Legolash2o Posted August 7, 2010 Author Share Posted August 7, 2010 Sorted, didn't use the /m syntax on the tool. Quote Link to comment Share on other sites More sharing options...
ricktendo Posted August 7, 2010 Share Posted August 7, 2010 Lego are you going to add the tool to your program or you going to make one of your own?If so how do I get permission to edit that part of the registry?I notice the tool does not reset the permissions, what does it take ownership of?Will you re-hide the entries, it sucks having all those entries in installed updates Quote Link to comment Share on other sites More sharing options...
Legolash2o Posted August 7, 2010 Author Share Posted August 7, 2010 1. Lego are you going to add the tool to your program or you going to make one of your own?2. If so how do I get permission to edit that part of the registry?3. I notice the tool does not reset the permissions, what does it take ownership of?4. Will you re-hide the entries, it sucks having all those entries in installed updates1. Not sure, probably. If not i would have to ask the creators permission to include it 2. What do you mean, the program would auto change permissions3. I will find out but i think i have some idea.4. It will re-hide the entries and... change the permissions back Quote Link to comment Share on other sites More sharing options...
ricktendo Posted August 7, 2010 Share Posted August 7, 2010 So how can I do it manually with waik?What are the steps? Quote Link to comment Share on other sites More sharing options...
Legolash2o Posted August 7, 2010 Author Share Posted August 7, 2010 I just mount it with DISM, run the tool and then remove packages, then save the image.I have decided to include the tool with W7T, is alot easier Quote Link to comment Share on other sites More sharing options...
ricktendo Posted August 7, 2010 Share Posted August 7, 2010 You dont understand...I know how to use the tool, how do I do it without the tool, I only want to unhide a couple packages then remove them Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.