this post was submitted on 10 Feb 2025
222 points (98.7% liked)

Technology

62012 readers
4377 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
 

Windows 11-24H2 installations with certain update statuses can no longer install further updates. Only a manual correction will help.

Last Christmas, a problem with Windows 11 24H2 installations became known that they cannot install further updates if they were installed from an installation medium with certain update statuses. Microsoft has now given up looking for an automated solution to this problem or developing a fix-it tool – The only option available to those affected is manual correction.

Microsoft has confirmed this decision by setting the entry in the Windows Release Health announcements to "resolved". Specifically, the problem description is that a Windows 11 installation on version 24H2, which was installed from a CD (sic) or USB drive with integrated October or November updates from 2024, can no longer install any further security updates. This also includes media created with the Windows Media Creation Tool at those times. However, installations that have downloaded the updates via Windows Update and applied them do not have this problem.

Windows update dropouts: only manual solution available

The entry on the problem from Microsoft has had the status "resolved" since the end of last week. However, it still only contains the previous workaround as a solution: The problem can be solved by overinstalling with an installation medium that contains at least the security updates from December 2024 – i.e. was created from December 10, 2024 –. Microsoft does not mention a fix-it tool, script or other options, such as registry changes.

Such an updated medium can be created with the Windows Media Creation Tool, which is available on Microsoft's Windows 11 download website. This either downloads an ISO file that can be transferred to DVD or creates a bootable USB stick with the Windows installation; this should have at least 8 GB of space.

cross-posted from: https://lemm.ee/post/55122353

https://www.heise.de/en/news/Windows-11-24H2-update-problems-Microsoft-gives-up-on-finding-a-solution-10275962.html

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 1 day ago* (last edited 1 day ago) (2 children)

I believe I tried the exact raspberry forum entry but it didnt catch on even with reboots and whatever I tried.
Saved for the future though.

[–] [email protected] 10 points 1 day ago (2 children)

If you can I would set static IPs from the router though. That's what I do as another device can still take the IP and cause issues.

[–] [email protected] 3 points 1 day ago

At least set it outside your DHCP range.

I have my DHCP set to use from .100 and up, and my static addressee are in the .1-99 range.

I still set it through my router so I have a place to look up which one is which (they're piling up), but they're all in that range.

[–] [email protected] 1 points 22 hours ago

Too bad when the DHCP server is down with the proxmox host ;)

[–] [email protected] 5 points 1 day ago (1 children)

How you set it can vary depending on what you're running. Linux is all about choice, and choice means multiple ways to do a thing. Places to look:

  • raspi-config - catchall CLI tool on Raspbian, not sure if it covers both of the following, but it's a good option to start with
  • /etc/network/interfaces - the Debian way to do things
  • Network Manager - usually used for desktops, but can be used by servers; if the first two don't work, try this

But you could also have installed something different. If you post your OS and version and what you're running on it, I can give better advice.

That said, normal networking rules apply:

  • don't set a static lease in your DHCP range, or you could get conflicts, which can look like it's not working
  • consider using DHCP and setting the static lease through your router; use the MAC address and you'll never need to mess with network settings on the Pi
  • if you set on the pi, make sure everything is correct (netmask, gateway, interface)
[–] [email protected] 2 points 18 hours ago (1 children)

I will remember it for next time I need to set a static IP in Linux. Comment is saved and hopefully I can reference it.

I appreciate the effort you took to help me and anyone that is still looking for help :)

[–] [email protected] 1 points 18 hours ago

No worries. Hopefully you have things sorted.