MSFN Forum: Windows 7 & vLite *DEPRECATED* - MSFN Forum

Jump to content


vLite Forum Rules

If you are having issues with Windows after removing components and have come to ask for help, please attach (not paste) your Last Session.ini file to your post to facilitate quicker assistance.
  • 33 Pages +
  • « First
  • 5
  • 6
  • 7
  • 8
  • 9
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

Windows 7 & vLite *DEPRECATED* how-to shrink and keep functionality... Rate Topic: -----

#121 User is offline   zeporpai109 

  • Newbie
  • Group: Members
  • Posts: 10
  • Joined: 11-June 09

Posted 17 June 2009 - 11:07 AM

Yes that's the problem..i did not check the r/w. Thanks dead..One last thing how can i get the list of packages that can be removed using cmd or dism? Your 7201.bat file did not work for my 7231 even if I edit. Only the languages are removed and i think its only 4 packages that i've been removed. And the error shows access denied...

This post has been edited by zeporpai109: 17 June 2009 - 11:31 AM



#122 User is offline   dead0 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 488
  • Joined: 29-October 06
  • OS:none specified
  • Country: Country Flag

Posted 17 June 2009 - 01:15 PM

View Postzeporpai109, on Jun 17 2009, 11:07 AM, said:

Yes that's the problem..i did not check the r/w. Thanks dead..One last thing how can i get the list of packages that can be removed using cmd or dism? Your 7201.bat file did not work for my 7231 even if I edit. Only the languages are removed and i think its only 4 packages that i've been removed. And the error shows access denied...

run dism /image:c:\s2 /get-packages which should list all the packages

then replace the names from the list in the batch file

#123 User is offline   Jeronimo 

  • vLite user
  • PipPipPip
  • Group: Members
  • Posts: 395
  • Joined: 26-October 03

Posted 17 June 2009 - 01:22 PM

@dead0: I checked if winsxs\backup can be removed, but I am not too sure especially when I read this

I am creating batch file that is reusable for the aactions specified, should not be that complex.

#124 User is offline   jkey 

  • Totally nLited
  • Pip
  • Group: Members
  • Posts: 78
  • Joined: 26-February 05
  • OS:Windows 7 x64

  Posted 17 June 2009 - 03:04 PM

Hi all! :hello:
Nice results! :thumbup
Anyone had tests CPC fully loaded Windows 7 vs elite Windows 7? B)

about winsxs:
I agree to Jeronimo, but maybe there is a some way to control Winsxs's actions, to reduce CPU and HDD load?

#125 User is offline   Jeronimo 

  • vLite user
  • PipPipPip
  • Group: Members
  • Posts: 395
  • Joined: 26-October 03

Posted 17 June 2009 - 03:52 PM

I created all steps in 3 batch-files that should do the trick (along with the stuff dead0 posted in the same folder).

removal.bat (note the 5 parameters you need to alter):
@echo off
REM amd64 or x86
set bits=amd64
set version=7232
set sources=I:\Windows 7\sources

REM Imagex mount/unmount
set mount=E:
set imagex="D:\Quicksilver\Windows\Instellingen\imagex.exe"
set mountimagex=%imagex% /mountrw "%sources%\install.wim" 1 "%mount%"
set unmountimagex=%imagex% /unmount /commit %mount%

REM Dism mount/unmount
set mountwim=E:\Wim
set mountdism="%sources%\dism.exe" /mount-wim /wimfile:"%sources%\install.wim" /index:1 /mountdir:%mountwim%
set unmountdism="%sources%\dism.exe" /unmount-wim /mountdir:%mountwim% /commit

Rem Imagex/Dism
set mountimage=%mountimagex%
set unmountimage=%unmountimagex%
REM mkdir %mountwim%
REM set mountimage=%mountdism%
REM set unmountimage=%unmountdism%

REM Perform the install tweak
%mountimage%
install_wim_tweak.exe /p %mount% /m
del /s /f %mount%\Windows\System32\Recovery /q
REM delete wallpapers except for Windows (default) from %mount%\Windows\Web\Wallpaper
%unmountimage%

REM Perform the package removals
%mountimage%
call rempckgs.bat
call rempckg2.bat
%unmountimage%


rempckgs.bat (dead0 rem7201):
@echo off
set dism="%sources%\dism.exe" /image:%mount% /remove-package /packagename
%dism%:Microsoft-Hyper-V-Common-Drivers-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Hyper-V-Guest-Integration-Drivers-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Anytime-Upgrade-Results-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Backup-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-BLB-Client-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-BusinessScanning-Feature-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Client-Wired-Network-Drivers-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-ClipsInTheLibrary-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Common-Modem-Drivers-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Disk-Diagnosis-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Gadget-Platform-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Help-Customization-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-IIS-WebServer-AddOn-2-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-IIS-WebServer-AddOn-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Indexing-Service-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-IE-Troubleshooters-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Links-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-LocalPack-AU-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-LocalPack-CA-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-LocalPack-GB-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-LocalPack-ZA-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-LocalPack-US-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-MediaCenter-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-MobilePC-Client-Basic-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-MobilePC-Client-Premium-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-MobilePC-Client-Sensors-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-MobilePC-Client-SideShow-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-NetworkDiagnostics-DirectAccessEntry-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-NFS-ClientSKU-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-OfflineFiles-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-OpticalMediaDisc-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-ParentalControls-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-PeerDist-Client-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-PeerToPeer-Full-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-PhotoPremiumPackage~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Printer-Drivers-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Printing-Foundation-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Printing-XPSServices-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
REM %dism%:Microsoft-Windows-RasCMAK-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-RasRip-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-RDC-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-RecDisc-SDP-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-RemoteAssistance-Package-Client~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-SampleContent-Music-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-SampleContent-Ringtones-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-SecureStartup-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Shell-HomeGroup-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Shell-InboxGames-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Sidebar-Killbits-SDP-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-SimpleTCP-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-SnippingTool-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-SNMP-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-StickyNotes-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-SUA-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-SystemRestore-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-TabletPC-OC-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Telnet-Client-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Telnet-Server-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-TerminalServices-CommandLineTools-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-TerminalServices-MiscRedirection-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-TerminalServices-Publishing-WMIProvider-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-TerminalServices-RemoteApplications-Client-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-TerminalServices-UsbRedirector-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-TerminalServices-WMIProvider-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-TFTP-Client-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Tuner-Drivers-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-WindowsMediaPlayer-Troubleshooters-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-WinOcr-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-WMPNetworkSharingService-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Xps-Foundation-Client-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Server-Help-Package.ClientUltimate~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Networking-MPSSVC-Rules-UltimateEdition-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0


rempckg2.bat (gendouhydeist additions - REM-lines: did not work, already removed)
@echo off
set dism="%sources%\dism.exe" /image:%mount% /remove-package /packagename
%dism%:Microsoft-Media-Foundation-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
REM %dism%:Microsoft-Windows-Anytime-Upgrade-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-GroupPolicy-ClientExtensions-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-GroupPolicy-ClientTools-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
REM %dism%:Microsoft-Windows-Help-CoreClientUAHP-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
REM %dism%:Microsoft-Windows-Help-CoreClientUAPS-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-Help-CoreClientUAUE-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-IIS-WebServer-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-MediaPlayback-OC-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
REM %dism%:Microsoft-Windows-MediaPlayer-DVDRegistration-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
REM %dism%:Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
REM %dism%:Microsoft-Windows-MSMQ-Client-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-SearchEngine-Client-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
REM %dism%:Microsoft-Windows-StorageService-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-VirtualPC-Licensing-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-VirtualPC-USB-RPM-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0
%dism%:Microsoft-Windows-VirtualXP-Licensing-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0


After this the following packages remain (not including Language Packages):
Microsoft-Windows-Branding-Ultimate-Client-Package~31bf3856ad364e35~amd64~~6.1.7232.0
Microsoft-Windows-Client-Drivers-Package~31bf3856ad364e35~amd64~~6.1.7232.0
Microsoft-Windows-Client-Features-Package~31bf3856ad364e35~amd64~~6.1.7232.0
Microsoft-Windows-CodecPack-Basic-Encoder-Package~31bf3856ad364e35~amd64~~6.1.7232.0
Microsoft-Windows-CodecPack-Basic-Package~31bf3856ad364e35~amd64~~6.1.7232.0
Microsoft-Windows-Common-Drivers-Package~31bf3856ad364e35~amd64~~6.1.7232.0
Microsoft-Windows-DesktopWindowManager-uDWM-Package~31bf3856ad364e35~amd64~~6.1.7232.0
Microsoft-Windows-Editions-Client-Package~31bf3856ad364e35~amd64~~6.1.7232.0
Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~6.1.7232.0
Microsoft-Windows-GPUPipeline-Package~31bf3856ad364e35~amd64~~6.1.7232.0
Microsoft-Windows-ICM-Package~31bf3856ad364e35~amd64~~6.1.7232.0
Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~~8.0.7232.0
Microsoft-Windows-InternetExplorer-Package~31bf3856ad364e35~amd64~~8.0.7232.0
Microsoft-Windows-Killbits-Package~31bf3856ad364e35~amd64~~8.0.7232.0
Microsoft-Windows-Media-Format-Package~31bf3856ad364e35~amd64~~6.1.7232.0
Microsoft-Windows-Personalization-Package~31bf3856ad364e35~amd64~~6.1.7232.0
Microsoft-Windows-Printing-LocalPrinting-Home-Package~31bf3856ad364e35~amd64~~6.1.7232.0
Microsoft-Windows-Printing-PremiumTools-Package~31bf3856ad364e35~amd64~~6.1.7232.0
Microsoft-Windows-Security-SPP-Component-SKU-Ultimate-Package~31bf3856ad364e35~amd64~~6.1.7232.0
Microsoft-Windows-ServicingBaseline-Ultimate-Package~31bf3856ad364e35~amd64~~6.1.7232.0
Microsoft-Windows-Shell-SoundThemes-Package~31bf3856ad364e35~amd64~~6.1.7232.0


Please note that VHD versions (as with my 7232 x62) have differeny versions in sources (taken from 7137), so you need to extract dism from the install.wim (windows\system32\dism.exe and windows\system32\dism\dism*.*) in that case and place the files in the sourcs-folder.
Also I have not yet tested vLite or installation yet. Think I will try plain installation first.

This post has been edited by Jeronimo: 20 June 2009 - 03:38 AM


#126 User is offline   liquid0624 

  • Member
  • PipPip
  • Group: Members
  • Posts: 156
  • Joined: 19-November 08

Posted 17 June 2009 - 06:34 PM

Great job guys (dead0 & Jeronimo) :) As far as the winsxs/backup folder i always delete it haven't had any issues with that. Scripts are very nice will have to give them a whirl. So far loving this build 7232 it works really well and its pretty much close to final. :thumbup

#127 User is offline   gendouhydeist 

  • Member
  • PipPip
  • Group: Members
  • Posts: 101
  • Joined: 02-January 07

Posted 17 June 2009 - 07:47 PM

BTW theres also 7260 Leaks available on usual sources but too bad only x86 are available for now..
http://www.neowin.net/news/main/09/06/16/m...uild-7260-leaks

@Jeronimo
w0w great batch men.. thx

This post has been edited by gendouhydeist: 17 June 2009 - 07:50 PM


#128 User is offline   underxp 

  • Member
  • PipPip
  • Group: Members
  • Posts: 133
  • Joined: 26-September 05

Posted 17 June 2009 - 09:18 PM

Jeronimo, in line 3 of file rempckgs.bat you have a "ECHO":
echo %dism%:Microsoft-Hyper-V-Common-Drivers-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0

is wrong?

#129 User is offline   Jeronimo 

  • vLite user
  • PipPipPip
  • Group: Members
  • Posts: 395
  • Joined: 26-October 03

Posted 17 June 2009 - 11:09 PM

View Postunderxp, on Jun 18 2009, 05:18 AM, said:

Jeronimo, in line 3 of file rempckgs.bat you have a "ECHO":
echo %dism%:Microsoft-Hyper-V-Common-Drivers-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0

is wrong?

Yep, that was a test. Thanks for the heads up, I corrected it (did remove the package, see last code-bit where he package is not shown).

This post has been edited by Jeronimo: 17 June 2009 - 11:21 PM


#130 User is offline   MESOLOMID 

  • Group: Members
  • Posts: 1
  • Joined: 18-June 09

Posted 18 June 2009 - 12:47 AM

hi, i just did a iso image for WINDOWS 7 and now when i want to start this iso in a virtual machine (microsoft virtual machine tool) win7 installation says me that the cd key is not accaptable for the installation files or smthing like that.
someone got a clue what might be the problm ?

#131 User is offline   dead0 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 488
  • Joined: 29-October 06
  • OS:none specified
  • Country: Country Flag

Posted 18 June 2009 - 01:32 AM

View PostJeronimo, on Jun 17 2009, 01:22 PM, said:

@dead0: I checked if winsxs\backup can be removed, but I am not too sure especially when I read this

I am creating batch file that is reusable for the aactions specified, should not be that complex.

it should be ok to delete the files from the backup folder as they're already in the system32/winsxs folder but i would suggest deleting those files from vstemp19\windows\winsxs\backup when vlite is doing its thing?!

#132 User is offline   dead0 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 488
  • Joined: 29-October 06
  • OS:none specified
  • Country: Country Flag

Posted 18 June 2009 - 01:51 AM

ps if you use dism to remove packages, they are not completely removed? ie if you remove the printer drivers package, the drivers are still left in the winsxs folder so you may have to remove them manually! also, does anyone find that removing the packages actually makes the install size bigger?

#133 User is offline   gendouhydeist 

  • Member
  • PipPip
  • Group: Members
  • Posts: 101
  • Joined: 02-January 07

Posted 18 June 2009 - 01:56 AM

guys do you have link for WAIK Win7, cause i need the imagex.. if you have link for it, pls.. give it here or.. PM me the WAIK or imagex thx guys.

#134 User is offline   dead0 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 488
  • Joined: 29-October 06
  • OS:none specified
  • Country: Country Flag

Posted 18 June 2009 - 02:02 AM

View Postgendouhydeist, on Jun 18 2009, 01:56 AM, said:

guys do you have link for WAIK Win7, cause i need the imagex.. if you have link for it, pls.. give it here or.. PM me the WAIK or imagex thx guys.

if you only need imagex, use waik 1.1 as its much quicker than the one in waik 7

#135 User is offline   gendouhydeist 

  • Member
  • PipPip
  • Group: Members
  • Posts: 101
  • Joined: 02-January 07

Posted 18 June 2009 - 02:03 AM

great help men.. thx mate

#136 User is offline   dead0 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 488
  • Joined: 29-October 06
  • OS:none specified
  • Country: Country Flag

Posted 18 June 2009 - 02:49 AM

ive been trying to remove manually some files from the winsxs folder such as the japanese ime components, natural language, sample files etc but i keep getting install errors?

#137 User is offline   underxp 

  • Member
  • PipPip
  • Group: Members
  • Posts: 133
  • Joined: 26-September 05

Posted 18 June 2009 - 07:01 AM

View Postdead0, on Jun 18 2009, 03:51 AM, said:

ps if you use dism to remove packages, they are not completely removed? ie if you remove the printer drivers package, the drivers are still left in the winsxs folder so you may have to remove them manually! also, does anyone find that removing the packages actually makes the install size bigger?

you mean to remove with dism without applying vlite after it?

#138 User is offline   bledd 

  • msfn is a friend of mine!
  • Group: Supreme Sponsor
  • Posts: 1,732
  • Joined: 24-March 04

Posted 18 June 2009 - 07:50 AM

imo, using W7 or even Vista Sp2 with vlite now is suicide, I won't be using it again until nuhi updates it :)

#139 User is offline   dead0 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 488
  • Joined: 29-October 06
  • OS:none specified
  • Country: Country Flag

Posted 18 June 2009 - 10:44 AM

View Postunderxp, on Jun 18 2009, 07:01 AM, said:

you mean to remove with dism without applying vlite after it?

if you remove with dism, they dont show up in vlite! tablet pc is the main one that only shows up even after dism removal?

#140 User is offline   Tom-Helge 

  • Group: Members
  • Posts: 9
  • Joined: 19-May 09

Posted 18 June 2009 - 10:54 AM

Hello again.

I have now used some few days to try and find out where the problems is when like Windows Features, Group Policy Editor, Snipping Tool, Sticky Notes etc etc have failed to work.

I have Windows 7 Ultimate RC2 Build 7229 (64-bit) installed in VirtualBox now, and it's working perfect here now. So i'm soon gonna install it for real on my computer.

So by this, everything are working out of the box after how i vLited it. But i don't know how it will work after you start to install programs and that. But i believe it will work pretty nice, hopefully.

I will give you 2 pictures with the things i haven't checked to be removed under. There are 85 things i haven't removed.

vLite Part 1 & vLite Part 2

This is what's not removed. And when i have removed the other things there, the ISO file takes 1.79 GB.

I can probably remove some few more things though, but don't think i want to take the risk of removing any more stuffs if i want a stable and fully working Windows 7. Will ofc try to remove more and try Windows 7 out in VirtualBox and will update this post if i find Windows 7 to still be rock stable and fully working when i have removed more things there though.

I found the 'Fax Support' to screw up the 'Windows Features' thing in Windows if you remove the 'Fax Support'. Help will also screw up Windows Features like it was told in the first post in this topic.

I think Printer Support and TV-Tuner Support also breaks the Windows Features to. But i'm keeping those anyways, because you never know when you will need a Printer or when you will get a TV-Tuner card. And who need Modem support today :lol: ?. Yes this one is removed to.

Edit: I found Windows Search to break Windows Features to if you remove Windows Search. If you want to remove it, then do it in Windows Features in Windows 7.

When it's about the Services you can disable etc. Then i found the service 'Problem Reports and Solutions Control Panel Support' to be needed / enabled. If you stop that service you wont be able to start the Windows Audio and the Windows Audio Endpoint Builder services. And if you can't start those 2 services, then you can't install any new audio drivers or get the sound to work.

But i wouldn't just start to disable lots of services if you don't know 100% on what service your disabling. Well it might not be a problem though, because you can luckily enable the services again in Windows after you have installed Windows 7.

Some services will make some of the features / things in Windows to stop working if you disable them, so just be carefull on what your disabling.

But i have disabled lots of services and still have a fully working Windows 7 though :thumbup . But that's because i know what i'm doing heh.

So just keep those things as i haven't removed in vLite if you want a fully working Windows 7 Ultimate RC2 Build 7229 (64-bit).

I hope this helps some of you here with some of the problems you might have.

This post has been edited by Tom-Helge: 18 June 2009 - 11:19 AM


Share this topic:


  • 33 Pages +
  • « First
  • 5
  • 6
  • 7
  • 8
  • 9
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

2 User(s) are reading this topic
0 members, 2 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2013 msfn.org
Privacy Policy