- Final ESU Updates for Windows 7 SP1 (Retired!)
-
Final ESU Updates for Windows 7 SP1 (Retired!)
That's a question to the developer although i imagine this has been discussed in MDL forums somewhere. Due to the bendwidth requirements i imagine most updates are coming from MS servers. Obviously this does not include updates that are request only (to fix a specific rare issue) and updates that are superseded but are kept around to satisfy WU.
-
Final ESU Updates for Windows 7 SP1 (Retired!)
Frankly i don't really care if the list is encrypted or not. What i care is that it downloads current updates and removes superseded updates already on disk (i mean HDD not Win7 image). I admit it's not perfect tho. First the removal of superseded updates from disk takes several steps and the program itself has confusing UI. Plus the developer is a jerk (banned me from MDL forums for having the audacity to suggest improvements to his program). The list maintainers like abbodi and others are great tho.
- Final ESU Updates for Windows 7 SP1 (Retired!)
-
RT Seven Lite - RC build 1.7.0 and Beta build 2.6.0
You fix this by not running an abandoned program. Use WTK instead: http://www.afterdawn.com/software/system_tools/system_tweaking/win_toolkit.cfm
- Final ESU Updates for Windows 7 SP1 (Retired!)
-
Final ESU Updates for Windows 7 SP1 (Retired!)
Use Disk Cleanup. This removes superseded updates. Did you even read my post? How is a feature of an installed os relevant to the question i asked? What i wanted to see is something along the lines of this: Updates removed since december 2014 - march 2015 (for me at least) IE11-Windows6.1-KB2956283-x64 IE11-Windows6.1-KB3008923-x64 IE11-Windows6.1-KB3025390-x64 Windows6.1-KB2785220-x64 Windows6.1-KB2847311-x64 Windows6.1-KB2926765-x64 Windows6.1-KB2952664-v7-x64 Windows6.1-KB3002885-x64 Windows6.1-KB3013126-x64 Windows6.1-KB3013455-x64 Windows6.1-KB3023266-x64 Windows6.1-KB3023562-x64 Windows6.1-KB3029944-x64 I had a hunch some updates were obsolete by now, therefore after some googling on how to compare folder contents, found out that these ones are no longer relevant. Btw is there a website to check which updates were superseded, my google fu gave me irrelevant results. And once you find out what updates are superseded you do what? remove them one by one?. This is what disk cleanup is made for. It removes (among other things you select) superseded updates from the system. Essentially eliminating the quessing game about wich updates are superseded and wich are not. If you're talking about removing superseded update packages (.msu or .cab) from disk then that's another matter. Generally you're better offf deleting the previously downloaded files and redownloading the the nessesary updates each month. Trust me when i say that trying to figure out wich updates are currently superseded and keeping such a list updated is something many people have tried in the past (me included) and given up. It's a lot more complicated than you think. Often requiring extraction and examination of individual files inside the packages to deterimine if they're newer.
- Final ESU Updates for Windows 7 SP1 (Retired!)
-
Ask your Seven xml ? here
Yes im pretty sure you can. Since i dont do this myself (no point in relocating user stuff from SSD with 90GB free to slower HDD) i cant offer any examples.
- Final ESU Updates for Windows 7 SP1 (Retired!)
- Final ESU Updates for Windows 7 SP1 (Retired!)
-
Ask your Seven xml ? here
Hmm i see a hotfix coming : KB???????? - Windows setup creates ESP partition with incorrect size on advanced format (4K) drives on UEFI capable systems.
-
Ask your Seven xml ? here
Fsutil fsinfo ntfsinfo c: (Where C: is drive letter). If "Bytes per Sector" = 512 then: 512 If "Bytes per Sector" = 4096 then: 4K If "Bytes per Physical Sector" = 4096 then: 4K Emulated? Read up: http://support.microsoft.com/kb/2510009 My SSD is 512 wich explains why windows setup created 100MB partition not 260MB.
-
Ask your Seven xml ? here
Even windows installation itself creates a 100MB partition on SSD: Microsoft DiskPart version 6.1.7601Copyright (C) 1999-2008 Microsoft Corporation.On computer: PHOENIXDISKPART> list disk Disk ### Status Size Free Dyn Gpt -------- ------------- ------- ------- --- --- Disk 0 Online 59 GB 0 B * Disk 1 Online 698 GB 0 B * Disk 2 Online 2794 GB 0 B *DISKPART> select disk 0Disk 0 is now the selected disk.DISKPART> list part Partition ### Type Size Offset ------------- ---------------- ------- ------- Partition 1 System 100 MB 1024 KB Partition 2 Reserved 128 MB 101 MB Partition 3 Primary 29 GB 229 MB Partition 4 Primary 30 GB 29 GB
-
Ask your Seven xml ? here
Yeah i have always used 100MB ESP partition. Not sure why MS would suggest 200MB. Btw fixed code: <DiskConfiguration> <Disk wcm:action="add"> <DiskID>0</DiskID> <WillWipeDisk>true</WillWipeDisk> <CreatePartitions> <CreatePartition wcm:action="add"> <Order>1</Order> <Type>EFI</Type> <Size>100</Size> </CreatePartition> <CreatePartition wcm:action="add"> <Order>2</Order> <Type>MSR</Type> <Size>128</Size> </CreatePartition> <CreatePartition wcm:action="add"> <Order>3</Order> <Type>Primary</Type> <Extend>true</Extend> </CreatePartition> </CreatePartitions> <ModifyPartitions> <ModifyPartition wcm:action="add"> <Order>1</Order> <PartitionID>1</PartitionID> <Label>ESP</Label> <Format>NTFS</Format> </ModifyPartition> <ModifyPartition wcm:action="add"> <Order>2</Order> <PartitionID>2</PartitionID> <Label>MSR</Label> <Format>NTFS</Format> </ModifyPartition> <ModifyPartition wcm:action="add"> <Order>3</Order> <PartitionID>3</PartitionID> <Label>System</Label> <Letter>C</Letter> <Format>NTFS</Format> </ModifyPartition> </ModifyPartitions> </Disk> <WillShowUI>OnError</WillShowUI> </DiskConfiguration>