this post was submitted on 08 Jun 2024
1640 points (97.5% liked)

Technology

55647 readers
3765 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 another!
  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

Approved Bots


founded 1 year ago
MODERATORS
 

It's a nightmare scenario for Microsoft. The headlining feature of its new Copilot+ PC initiative, which is supposed to drive millions of PC sales over the next couple of years, is under significant fire for being what many say is a major breach of privacy and security on Windows. That feature in question is Windows Recall, a new AI tool designed to remember everything you do on Windows. The feature that we never asked and never wanted it.

Microsoft, has done a lot to degrade the Windows user experience over the last few years. Everything from obtrusive advertisements to full-screen popups, ignoring app defaults, forcing a Microsoft Account, and more have eroded the trust relationship between Windows users and Microsoft.

It's no surprise that users are already assuming that Microsoft will eventually end up collecting that data and using it to shape advertisements for you. That really would be a huge invasion of privacy, and people fully expect Microsoft to do it, and it's those bad Windows practices that have led people to this conclusion.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 8 points 3 weeks ago (1 children)

File search is really awful on windows for no reason at all. Your complaints about commandline utilities is not accurate though. Windows has native powershell equivalents to both grepand tail. You use Select-String instead of grep and Get-Content -Wait instead of tail.

[–] [email protected] 4 points 3 weeks ago (1 children)

IME Get-Content doesn't work for multiple files. Unless maybe I put it in a foreach loop or something. But that's way more keystrokes then tail -f *

[–] [email protected] 5 points 3 weeks ago

Nobody ever accused powershell of being concise. Its uses a completely different philosophy, object oriented rather than string based. This makes powershell nicer to write scripts in but also makes it worse at bash style one-liner commands.