Might be easier to do this in PowerShell ISE so you can edit these two commands. But this will first remove the installer package for OneDrive so that it can't reinstall again, and then it removes the installed app from all profiles.
I haven't personally tested this, but I use PowerShell professionally and the commands are solid. If it didn't work then it just means that Microsoft packaged OneDrive in a different manner than the other built-in apps. You can also remove other annoying apps that are pre-loaded this way. Just swap out "OneDrive" for the proper name or partial proper name of the appx app. Use Get-AppxPackage by itself to learn what the proper names are for the apps that are installed.
Same here. I think my friends have been expecting me to come crawling back to Windows but not only have I since used the SSD for other Linux projects, I have had no desire to go back to Windows. OpenSUSE Tumbleweed with KDE has been a true delight to use and learn Linux with. I smile every time the desktop loads. I use three monitors and KDE handles windows better than Windows ever could. It does it with far more customization options and its features just make sense and feel really useful, all without being forced.
Oh, and all my games run with higher FPS than they did with Windows 11.
I have had to reinstall it twice due to my learning process, but the last reinstall was a while ago and I've since learned how to fix problems that I create or the very rare update issues. It's a very different beast when you're coming from a lifelong use of Windows.
I like fedora but I'm really loving opensuse tumbleweed on both my desktop and laptop. I have Nvidia rtx cards and support is just a few mouse clicks post-image. I get better FPS now than I did in Windows 11.
I wanted to like it and I tried it over and over but I could not for the life of me get opensuse aeon or kalpa to work on my desktop when tumbleweed works perfectly. As soon as I installed the Nvidia drivers it went belly up and I couldn't find help online.
I'm still new to Linux so I'll accept that I need more experience but I can't help but feel like a degree in computer science is a recommended prereq for this stuff since there just doesn't seem to be solid documentation to get you through it.
That experience made me take microos off my server and put in proxmox instead.
Microsoft Solitaire on Android. The ads were driving me nuts so I went to pay for the app. If I recall they wanted almost 10 bucks a month for that shit. Deleted, forgotten, until now.
Mine was a very similar path to yours. Way too many little observations that alone could have been shrugged off as a rounding error but taken together it was clear that shit wasn't adding up.
Then I started listening to biblical scholars and now there's nothing that could convince me otherwise. It's a collection of human literature. The good and the bad that had come from it is only a reflection of our humanity.
You seem to only be accounting for people who are like yourself. It's hard to picture other people's minds because we only have ours to go by, but it's important to acknowledge that other minds work very differently from our own.
I was a habitual night owl in my twenties. Went to sleep at dawn and woke up around noon. I didn't have sleep issues, I was always incredibly rested and full of energy.
Now I sleep at 10 and wake up around 6. I have less energy but I am now a morning person. I can easily get up at 4 for occasions.
You're making judgements on others based on your own biased view, one that only sees it your way. That's why you're being down voted.
It's like that episode of South Park where half the town supported the war in Iraq and the other half protested the war. Except in this case it's all the same person.
Based on some articles I read I'm not too surprised. The guy sounded like he was getting looney.
But that's exactly it, from another person's perspective he's not taking away anything, he's giving. This is what I'm trying to highlight here and all I'm getting are squawks about Trump is bad, my sister is bad. To some people Trump is restoring a desecrated country. They grew up their whole lives with a certain world view of good and evil, it's not their fault religion twisted their minds, this is the nuance I'm pleading you to take notice but all you can give me are limp platitudes that most people are good and bad, but Trump and his supporters are bad bad. Not very enlightening, because it doesn't say much about the real life people we're discussing.
Those people are not evil, though they may be doing evil. Just as you said, which means I expect you to acknowledge this point, "just because someone does good it does not make them good" works the other way around: just because someone does evil does not make them evil. This is why we need to find inroads with this group to create a space that can be shared peacefully by everyone. Calling them all bad and shutting down any effort to discuss only results in something even more horrifying, and frankly, evil: war.
You are simply wrong on all points here, with the exception of emotional clouding. There may be emotional clouding going on here, but it's not with me and my sister. It's with the left and Trump. It's causing people like you to speak with insane antisocial rhetoric, and it's what's driving people further apart.
So you can play the part of the stuck-up bitch, or you can open up to people and their complex lives and beliefs, and see that things aren't as simple as you are trying to make them out to be.
While I'm not orthodox, I'm well into the left wing of politics, and even I can see that Trump isn't all bad. Few people that ever lived are all bad.
Ideally, yes. Practically? Not going to happen. We can't expect it, we can only hope that's what people are doing.
This fact is why you hear some people say that not everyone should be allowed to vote. There is a staggering amount of ignorance in our society, that's just how it is.
It's easy to excuse people when you have love in your heart. This may be what's missing in our society.
You are categorically wrong, and I'm trying to use this opportunity to shine a light on this part of you that is unable to see beyond what is black or white.
You cannot reduce a person down to good or evil based on how they voted. It's insane to think you can. It's insane to think you can tell me the truth about my sister.
This insanity is what the right sees when people like you talk, and it's what is driving the wedge further and further in-between what would otherwise be cooperative groups who want the same basic things in life, with key differences that require rational compromises.
Run a PowerShell session as admin and enter the following commands:
Get-AppxProvisionedPackage -Online | Where-Object { $_.PackageName -match "OneDrive" } | Remove-AppxProvisionedPackage -Online -AllUsers
Get-AppxPackage -AllUsers | Where-Object { $_.Name -match "OneDrive" } | Remove-AppxPackage -AllUsers
Might be easier to do this in PowerShell ISE so you can edit these two commands. But this will first remove the installer package for OneDrive so that it can't reinstall again, and then it removes the installed app from all profiles.
I haven't personally tested this, but I use PowerShell professionally and the commands are solid. If it didn't work then it just means that Microsoft packaged OneDrive in a different manner than the other built-in apps. You can also remove other annoying apps that are pre-loaded this way. Just swap out "OneDrive" for the proper name or partial proper name of the appx app. Use Get-AppxPackage by itself to learn what the proper names are for the apps that are installed.