There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

Microsoft is not done yet: more ads spotted in latest Windows 11 build - gHacks Tech News

When is an ad an advertisement and not a recommendation? Microsoft clearly likes to use the term recommendation for what others may see as an advertisement.

There are recommendations in the Start menu, Settings app, Lock screen, File Explorer, Get Help app, and other areas of the operating system already. These are often not that useful. App recommendations in the Start menu are limited to Microsoft Store apps.

Now, Microsoft is testing recommendations in the Microsoft Store app. If you never use the app, you won’t be exposed to these. If you do, you may notice recommendations popping up when you try to use the built-in search.

First spotted by phantomofearth on X, two or three recommendations are shown whenever search is activated in the official Microsoft Store app.

Fedizen ,
EnderWiggin ,

The ads are in the app store. I don’t really understand why that’s a problem. Although I’m probably the only tool out there that actually likes Windows 11.

sturmblast ,

lol yep you probably are

EnderWiggin ,

Self aware idiot.

ulkesh ,
@ulkesh@lemmy.world avatar

<Linux User> That’s unfortunate.

GoogleSellsAds ,
@GoogleSellsAds@sh.itjust.works avatar

MS 2 decades late to Google’s ad game.

cupcakezealot ,
@cupcakezealot@lemmy.blahaj.zone avatar

i can’t believe they wrote an entire article to whine about ads IN A STORE APP

GoogleSellsAds ,
@GoogleSellsAds@sh.itjust.works avatar

Gotta keep that rage up.

ThisIsMyLemmyLogin ,
@ThisIsMyLemmyLogin@lemmy.world avatar

Microsoft seem determined to make us hate using Windows 11, which was all that hard to begin with. If Macs weren’t so expensive, and Linux such a pain in the ass, I’d happily switch.

mrmanager ,
@mrmanager@lemmy.today avatar

I don’t know about Linux being a pain in the ass. My kid was using first Linux on a laptop and then mac, and he wanted to go back to Linux where things make sense. He felt the mac was really confusing in where the files were. He also loved the integrated Software app where he can point and click install everything.

Now he is learning the terminal… :)

I think there is plenty of people who think macs are a pain in the ass too. Depends on what you are used to.

johannesvanderwhales ,

I kind of expect ads in an app store, but I also don’t use the ms app store.

YeetPics ,

Listen, bill gates just needs to buy more arable land. This, of course, is your capital to earn by being good and not using linux or Firefox to banish these innocent little ads.

sturmblast ,

Gates could never make another cent and it wouldn’t matter to him in regards to purchasing power.

werefreeatlast ,

So anyway, welcome to computing 101, first you’re going to create a new folder for your stuff. So let’s do this, grab the mouse, and;

Right click->watch ad->New Folder

Mr Bob! The mouse bit me and now I can’t stop the commercials!

YurkshireLad ,

Sounds like they’re reaching feature parity with Apple and Google. Both already do that so I’m not surprised. I never use Microsoft’s App Store so I’ll never see them.

piyuv ,

Apple?

YurkshireLad ,

What about Apple? Sorry, I don’t understand what you’re asking.

ichbinjasokreativ ,

Windows really is the worst OS. You pay 150$ for the license when you buy a laptop with it pre-installed and then on top of that, they spy on you and also show you ads.

Linux is free, does not spy on you and does not show any ads.

RealM__ ,

I’ve recently made the switch over to LinuxMint and I was shocked. Installing a popular Linux Distro is EASIER than installing Windows 10/11 at this point. Seriously. The Linux installer is super noob friendly, very quick and straight to the point, it doesn’t need you to create an online account and you don’t need be wary of accidentally giving any corporation the rights to steal your data.

And all the software I use (Steam, Discord, Spotify, Firefox, Thunderbird, …) were all downloadable from the GUI Installer and worked right away OUT OF THE BOX. No fiddling in any Terminal was required.

Seriously, it’s easier than installing Windows at this point.

SpaceCadet ,
@SpaceCadet@feddit.nl avatar

Installing Linux has never been particularly difficult, not in the last 15 or even 20 years anyway. I’ve always found it easier and more straightforward than the contemporary Windows installation process.

The challenging part is wrapping your head around the Linux/Unix way of doing things when things can’t be done through the GUI with just a few clicks.

M500 ,

I think about this sometimes. What stuff can’t you do in a Linux GUI that an average person would be able to do in Windows? For the sake the simplicity, lets limit the GUI to Cinnamon, Plasma, or Gnome.

Obviously, there are obscure GUIs out there, but in the main ones, I think just about everything can be done without CLI.

jj4211 ,

I’d amend that to say I wouldn’t count “regedit” or group policy muck to be “easy” by virtue of having “a gui”. Those are areas where technically there’s GUI that might be CLI-only under Linux, but hardly friendly enough to make a difference.

asexualchangeling ,

Regedit is about 10,000 times more complicated than Windows users think the Linux terminal is

sturmblast ,

Amen, I consider myself pretty savvy with Windows under the hood. Most of the time when my users see me ripping around in the registry to fix something they think I’m some crazy skilled hacker\programmer lol. It’s funny.

sturmblast ,

Good point

sturmblast ,

Until you have problems with hardware or something, generally I’d agree.

M500 ,

That’s pretty rare these days. If you running reading edge then maybe there are a few months or using a wifi- usb adapter.

Katana314 ,

I know the filesystem is simple to Linux users, but the semantic form of physical drives getting a letter always made more sense to me.

I have three drives in my computer. So they’re labeled C:, D:, and E:. You can’t place a file on “The Computer” - it’s stored on some particular drive. If I install a game on the E drive, and then later somehow remove that drive and bring it somewhere else, that game remains on that drive, even if it’s no longer E.

On Linux, as best I understand it, if I have three drives, two of them are at /dev/hdd0 and hdd1. But they’re not actually there, they’re accessed at /media/hdd0 after mounting them (or at least, that’s the convention, and if it’s someone else’s computer, good luck). Then you either begin every game installation path with that annoying prefix, or you start configuring a dozen symlinks. If you place an item in /home/documents/notporn, then who knows which drive it’s on because you don’t know what symlinks someone set up to make that folder.

Windows does have symlinks too now, which has been nice for hacking a few installation directories, but I appreciate that it’s an exception, and everything else follows relatively logical division of space, rather than this hybrid system where the filesystem isn’t just stored files but also devices, programming concepts, and more.

cman6 ,

So just to help a little bit without getting too technical…

df -h is your friend to find out which physical drive or partition relates to which directory (called the “mount point”)

If you want, you can set up each drive/partition to be mounted a bit Windows-esque.

For example:

  • Drive 1, partition 1 will almost certainly be root /
  • But drive 1, partition 2 can be mounted to: /mnt/d/
  • And then drive 1, partition 3 can be mounted to: /mnt/e/

And so on.

You’ll need to look up fstab to understand how to do that.

I understand it’s tricky to get your head around initially as I felt exactly the same coming from Windows to Linux.

Once you get your head around partitions being able to be mounted anywhere, it actually becomes really handy

SpaceCadet ,
@SpaceCadet@feddit.nl avatar

I know the filesystem is simple to Linux users, but the semantic form of physical drives getting a letter always made more sense to me.

That’s one of the things that semi-experienced Windows users need to wrap their head around, but I strongly disagree that drive letters are somehow inferior to a hierarchical file system structure. I mean, the A:, B:, C: … convention was originally just intended for the first IBM PC with 1 or 2 floppy drives. It was never intended to support complex storage configurations, whereas hierarchical storage was designed for Unix systems that had to handle multiple magnetic drives from the start. It is a much more flexible system to organize your file storage.

On Linux, as best I understand it, if I have three drives, two of them are at /dev/hdd0 and hdd1. But they’re not actually there.

That’s because there is a difference between a block device and a mounted file system. Windows just obscures that difference from you with its archaic drive mapping system.

All your block devices and partitions on your block devices will be in /dev with a meaningful name. You can list them with the lsblk command. If a partition contains a file system that Linux knows how to use, you can mount it anywhere you like.

they’re accessed at /media/hdd0 after mounting them

No that’s not “convention” at all. Some desktop environments may decide to mount undefined drives there, but there really is no convention, ultimately you mount it where you want it to be mounted.

If you place an item in /home/documents/notporn, then who knows which drive it’s on because you don’t know what symlinks someone set up to make that folder.

If your unsure, df /home/documents/notporn should tell you exactly what drive it’s on, but ultimately it’s up to you to know how you’ve organized your storage.

BTW I’ve said this before, but Linux is probably harder for users who know Windows just well enough to be dangerous than it is for relative beginners, because there are so many concepts and things they take for granted that they have to unlearn.

Katana314 ,

While it might be suitable for server environments with 400+drives, all home setups will have fewer volumes than there are alphabet letters, so it’s a suitable setup there.

Someone else identified how you can run an extra command to identify actual location of a file, and while that’s useful, it’s an extra step that’s unnecessary when the design of the location string itself also identifies that. Unless you can tell me which drive /home/supra-app/preconfiguration/media is on - without running something different. (Vs windows: C:/Users/Someone/AppData/supra-app/preconfiguration/media) That’s what the design of WWW URLs was for - you never have to ask which domain a website is on, and it can even inform you about whether a site is trustworthy.

I don’t think you’re helping your case by showing there’s no drive location convention at all. A friend plugs a USB device in your computer while you’re busy in the kitchen. He’s fine if he just uses a UI autopopup, but if he needs the full path, he has to ask you where you’ve set up auto-mounting, if you have at all.

SpaceCadet , (edited )
@SpaceCadet@feddit.nl avatar

The thing is, you are absolutely free to use a /c,/d,/e mounting scheme, but you are not shackled to it like you are in Windows. Personally I like to organize my data in one big root (/) file system on my NVME drive and then /data for my bulk storage on HDD and /nas for my NAS shares. I never have any problems knowing where my data is.

BTW, I notice all your complaints revolve around “OMG it’s different” and “OMG the user can choose to do things differently… so complicated”. That is kind of the point of Linux you know?

At some point you just have to accept that it’s different and move on, or decide that it’s too complicated for you and use something else.

BTW, I wonder why people never make this complaint about Apple devices? It also has a hierarchical file structure without drive letters, after all it is also a Unix variant.

Katana314 ,

The dog whistle of “maybe it’s not for you” is pointless, since all we’re doing here is talking about preferences and opinions of design. Whether something is “complicated” or “poor design” is very subjective across many fields. It’s easy to laugh at someone pushing at a “Pull” door, but less so if there’s a pushbar there and they don’t speak English.

I could easily be facetious and suggest “Maybe Windows is just too complicated for you” but that’s similarly needlessly talking down to people’s intelligence. The topic only came up because it’s frustrating there’s no operating system out there that:

  • Has wide support
  • Doesn’t nag you with AI features
  • Designs its filesystem paths in a way that is consistent, informative, and readable between devices, regardless of user preference or configuration.

For now, issues like the last one are what keep me on Windows, and I’m not even claiming they’re easy to solve.

SpaceCadet ,
@SpaceCadet@feddit.nl avatar

Well keep dreaming then. If that is what keeping you on Windows, you will never leave Windows. Nobody in their right mind is ever going to create a new OS with drive letters.

/thread

sturmblast ,

This is really what people should understand, you CAN do all these things in Linux… you can change virtually anything to your liking if you are so inclined. And it’s usually a Google search away if you aren’t sure how to go about it.

morbidcactus ,

As an interesting fact, windows totally supports mounting positions to folders and as far as I recall it’s been able to for a very long time, remember doing it as a teenager and thinking it was cool AF.

…microsoft.com/…/assign-a-mount-point-folder-path…And learn.microsoft.com/en-us/…/cc772671(v=ws.10)

SpaceCadet ,
@SpaceCadet@feddit.nl avatar

Yeah, I believe that was introduced as far back as Windows 2000. It never really caught on though.

morbidcactus ,

I think I did it back in xp, I was trying to figure out when support was added.

I don’t think it’s super advertised that it’s a capability which definitely doesn’t help its usage, heck I kinda forgot about it even though I used it until your comment triggered a memory.

SpaceCadet ,
@SpaceCadet@feddit.nl avatar

I just booted up a Windows 2000 VM to check … it’s there in the disk management tool. It looks a bit weird with the drive icon in Explorer, but ok.

https://feddit.nl/pictrs/image/480d6a9a-521a-4844-a458-dbbcc8f6e757.png

Asifall ,

I have three drives in my computer. So they’re labeled C:, D:, and E:

That’s the default configuration but there’s actually no guarantee that those drives map bijectively to physical devices.

rozodru ,
@rozodru@lemmy.ca avatar

and even the challenging part doesn’t really have to be that hard and can quickly be figured out. either via a package installer or it can be as simple as git clone <insert git repo> then makepkg -si

I mean with Arch and AUR it’s that easy. worse comes to worse if it’s not in Octopi or AUR then download the exe, wrap it in wine, and that should do it. I’ve been using Linux for almost a month now and I think the only thing I just couldn’t get working was some Mod package for a game and that’s only cause I’m lazy and gave up on it but it would work if I was dedicated to get it working.

SorryQuick ,

The issue is that you have to install it. Most users don’t have a clue how to install windows either, but it came with their PC.

sturmblast ,

You can buy linux desktops these days too.

SorryQuick ,

Right but most people have no clue, they’ll go to their local store which I guarantee you doesn’t have Linux computers. Online buyers will go on amazon and buy from “known and reputable” brands like Asus, Dell and such. Don’t get me wrong, I love linux and have been using it as my main OS for nearly a decade but to say it’s easy to get/install for your average user is just wrong. Everyone always overestimates what the average user is actually like. Your average user doesn’t even know what an OS or Linux even is.

bluewing ,

The problem with buying a Linux box is the cost. Discounting Chromebooks, (which have their own nasty issues with privacy), there are really no inexpensive ready to buy at Walmart priced, pre-installed Linux distro computers.

If you are willing to drop $1000+ for a pretty much mid grade computer, then you have a few choices. Otherwise, Linux distros are DIY. Which takes an effort most are unwilling to do - no matter how easy and how few clicks it takes to install.

Personally, I think all those cheap mini-PCs on Amazron should come pre-loaded with a distro. That would be the a great way for people to become familiar with Linux as a whole.

taggart_mccallister ,

And it doesn’t work with half the programs I use on a daily basis.

sturmblast ,

There’s ways to make A LOT of things compatible these days, or you could run a VM for your Windows apps.

M500 ,

I think a VM is a bad solution. Maybe if it’s a very rarely used program, but typically the stuff people need that don’t work in Linux are for work which is why people HAVE to use them.

If I did that, I’d just be working out of a windows vm 99% of my computing time, so it doesn’t make sense for me.

sturmblast ,

As someone that has tried nearly every Linux desktop flavor\distro, Mint is GREAT for the novice. Or a pro even.

M500 ,

I’m not a Linux wizard but I’m pretty skilled and I love mint. Although, my preference recently changed to Fedora plasma.

InternetUser2012 ,

Waaay easier. I tried to fix a work computer that someone but bitlocker on. I couldn’t do shit with windows so I threw Mint on it to format it. Loaded right up, worked great. I go to put windows 11 on it and the HD doesn’t show up… It needs drivers that I’m struggling to find. I have to run the driver setup on a different windows machine, find the driver and put it on a usb. Problem is, there’s no model number on the computer and I can narrow it down to the series that has 20 different ones. It’s unreal the pain the ass to just get it to install, meanwhile, linux has been working great on it while I mess with it here and there to try to get windows back on it. (work computer that needs windows for our software support)

CrowAirbrush ,

I’m so done with companies claiming my house for their ads.

It’s my house i decide what makes it in as i pay the rent and i bought these devices, so fuck off.

zipzoopaboop ,

The last Windows 10 update automatically installed copilot without asking. Immediately deleted that shit

sunbytes ,

Thank you for letting me know. I will too.

zipzoopaboop ,

A friend said it didn’t for him, but for me it was in slot 1 of the taskbar

sunbytes ,

It’s not on mine yet.

So some a/b testing maybe

rozodru ,
@rozodru@lemmy.ca avatar

if you’re dead set on staying on Windows then ReviOS will help with that. it removes edge, onedrive, copilot, ads, etc. improves performance only slightly.

zipzoopaboop ,

I’m playing with Linux now and swapping when support for 10 is done

thirstyhyena ,

I’m surprised they didn’t put ads in the blank area of the taskbar.

Plopp ,

Or on the entire desktop. Ad wallpapers when?

  • All
  • Subscribed
  • Moderated
  • Favorites
  • [email protected]
  • random
  • lifeLocal
  • goranko
  • All magazines