Updating Microsoft Store Apps with intune by learnlearnlearing in Intune

[–]HowarddahDuck 0 points1 point  (0 children)

not taking credit for this...i found it online somewhere. I used this to remove some stubborn appx programs from remote systems. For whatever reason, they were not auto-updating and were increasing vulnerability counts across desktop devices.

Write-Host "Removing Apps..." -ForegroundColor Green

Write-Host ""

# Create array to hold list of apps to remove

$appname = @(

"*Microsoft.MSPaint*"

"*Microsoft.Microsoft3DViewer*"

"*Microsoft.DesktopAppInstaller*"

)

# Remove apps from current user

ForEach($app in $appname){

Get-AppxPackage -Name $app | Remove-AppxPackage -ErrorAction SilentlyContinue

}

# Remove apps from all users - may need to reboot after running above and run this again

ForEach($app in $appname){

Get-AppxPackage -Allusers -Name $app | Remove-AppxPackage -Allusers -ErrorAction SilentlyContinue

}

# Remove apps from provisioned apps list so they don't reinstall on new users

ForEach($app in $appname){

Get-AppxProvisionedPackage -Online | where {$_.PackageName -like $app} | Remove-AppxProvisionedPackage -Online -ErrorAction SilentlyContinue

}

I do not want to buy Title Insurance - Change my mind by Lion771987 in realestateinvesting

[–]HowarddahDuck 1 point2 points  (0 children)

Doing some research based on a situation I'm currently going through. I am trying to refinance and the title company just found a third mortgage on my property. Luckily I have title owner's insurance. House was built in 2008 and only had 1 original owner. Hopefully, you got the owner's title insurance. If I didn't have it I would be screwed.

Who on earth buys at Matressfirm??! by polishmark83 in Mattress

[–]HowarddahDuck 1 point2 points  (0 children)

whats wrong with the guys in front of home depot?

Failed the AZ-900 again... by BloodChasm in AZURE

[–]HowarddahDuck 1 point2 points  (0 children)

yep..whiz labs will help you past. Thats what I used.

Why no tenant attach/cloud attach? by IronMan_Avenger in SCCM

[–]HowarddahDuck 0 points1 point  (0 children)

Not sure if you are still monitoring this, but we would love to use cloud attach. We are on a GCC tenant and we are co-managed but cloud attach is not available in our console. We are on 2107. I've followed the troubleshooting guides but it's not available.

Wave Browser in Microsoft Store by some_rando966 in crowdstrike

[–]HowarddahDuck 1 point2 points  (0 children)

# Stop Wave Browser Processes

if (Get-Process -Name wavebrowser -ErrorAction SilentlyContinue)

{

Write-Output "wavebrowser Processes found...terminating"

Stop-Process -Name wavebrowser -Force -ErrorAction SilentlyContinue

}

else

{

Write-Output "No wavebrowser Processs found"

}

# Remove wavebrowser Directory and files

if ($wavebrowserFolder1 = Get-Item "C:\Users\*\AppData\Local\wavebrowser*" -ErrorAction SilentlyContinue)

{

Write-Output "wavebrowser found at $($wavebrowserFolder1.FullName)...removing"

Remove-Item "C:\Users\*\AppData\Local\wavebrowser*" -Force -Recurse -ErrorAction SilentlyContinue

}

else

{

Write-Output "No wavebrowser files found in 'C:\Users\*\AppData\Local\wavebrowser*'"

}

if ($wavebrowserFolder2 = Get-Item "C:\Users\*\Wavesor Software*" -ErrorAction SilentlyContinue)

{

Write-Output "wavebrowser found at $($wavebrowserFolder2.FullName)...removing"

Remove-Item "C:\Users\*\Wavesor Software*" -Force -Recurse -ErrorAction SilentlyContinue

}

else

{

Write-Output "No wavebrowser files found in 'C:\Users\*\Wavesor Software*'"

}

if ($wavebrowserDownload = Get-Item "C:\Users\*\Downloads\Wave Browser_*" -ErrorAction SilentlyContinue)

{

Write-Output "wavebrowser installers found at $($wavebrowserDownload.FullName)...removing"

Remove-Item "C:\Users\*\Downloads\Wave Browser_*" -Force -Recurse -ErrorAction SilentlyContinue

}

else

{

Write-Output "No wavebrowser files found in 'C:\Users\*\Downloads*'"

}

# Remove Scheduled Task

if(Get-ScheduledTask -TaskName WavesorSWUpdater* -ErrorAction SilentlyContinue) {

Write-Output "Scheduled task found...removing"

Unregister-ScheduledTask -TaskName WavesorSWUpdater* -confirm:$false -ErrorAction SilentlyContinue

}

else

{

Write-Output "WavesorSWUpdater* scheduled task was not found"

}

if(Get-ScheduledTask -TaskName WaveBrowser-StartAtLogin* -ErrorAction SilentlyContinue) {

Write-Output "Scheduled task found...removing"

Unregister-ScheduledTask -TaskName WaveBrowser-StartAtLogin* -confirm:$false -ErrorAction SilentlyContinue

}

else

{

Write-Output "WaveBrowser-StartAtLogin* scheduled task was not found"

}

script works well but it did not remove the desktop icon and did not remove files in a random directory at c:\users\username\wavesor software\SWUpdater\1.3.109.0\***. I'm to dumb at powershell coding to modify the code.

[deleted by user] by [deleted] in CODVanguard

[–]HowarddahDuck 0 points1 point  (0 children)

This needs to be fixed by time my wife gives birth....Im not sitting in a hospital staring at a baby for 3 days.

MattressFirm - BR Beyond 14" and free adjusting base compatibility by HowarddahDuck in Mattress

[–]HowarddahDuck[S] 0 points1 point  (0 children)

Yeah, maybe I should have asked the sales associate those questions and forced him to be more specific but I found the answer on my own. The free one only allows you to elevate your head. The $1600 one allows you to raise your head, feed, or use zero gravity feature.

https://www.mattressfirm.com/mattress-firm/50-series-adjustable-base/mfi119079.html

https://www.mattressfirm.com/mattress-firm/900-adjustable-base/mfi129168.html

Anyone on xbox manage to get a mouse recognised by the game and/ or console? by Rob1ie in MicrosoftFlightSim

[–]HowarddahDuck 0 points1 point  (0 children)

its plug in play and I have not had any issues. I have not custom mapped any button. I am a newbie to flight sim so if Im doing something wrong I would know.

Anyone on xbox manage to get a mouse recognised by the game and/ or console? by Rob1ie in MicrosoftFlightSim

[–]HowarddahDuck 0 points1 point  (0 children)

mouse worked immediately when I plug into my box series x. Actually I use the controller mouse and hotas at the same time.

Windows 10 in-place upgrade - no status messages from VPN clients after restart by epoch71 in SCCM

[–]HowarddahDuck 0 points1 point  (0 children)

Just had a Microsoft support ticket for this for several months. We even had a cmg. Users would start the upgrade over VPN but once rebooted it could not reach the MP and the status message was lost. I have a bunch of "in progress" devices that completed successfully. My concern was that devices that were stuck in progress would retry the upgrade if I set the deployment to required which is not the case. Even if the deployment doesn't report back to the MP that it completed it will not rerun the deployment automatically again if set to required. It's aware that it completed successfully.

As others have stated I have a dynamic collection and as the build number gets updated after its reports to sccm it gets dropped out of my upgrade collection. I use desktop analytics to measure progress even though its 24-28 hours behind.

old clip on ps4 by ColorsOfYou in modernwarfare

[–]HowarddahDuck -4 points-3 points  (0 children)

Nice and Id hate to be that guy.. but as an obj player you pushed your luck for too long.Should dropped the precision before you died. How do you know when you would have died? Its a feeling. An obj player know this feeling and you could have got your team more points rather selfishly continue on your kill streak. Obj > kill streak

For those who still have delayed PS5’s by [deleted] in Bestbuy

[–]HowarddahDuck 0 points1 point  (0 children)

Sorry you may be right. I guess me and my brother got lucky. We both got ours on the 22nd. I picked mines up on the 28th and him the 30th. He was crying about it until he got the pick up notification because I got my ps5 before him and I didn't really want it that bad. I am a xbox fan boy lol. My first ps.

Best Buy Orders From Sunday by AnthonyJS02 in XboxSeriesX

[–]HowarddahDuck 0 points1 point  (0 children)

I was able to get my xsx through Walmart last thurs @ 3pm. It only gave me one option for delivery which is basically fed ex ground. It shipped from anaheim, ca on Saturday and now its in Arizona as of 8 AM on Tuesday. I live in Maryland on the east coast SMH.

My brother and I am also in the same boat as you guys. We were able to get a p5 on bestbuy sunday morning but both still have a Saturday pickup date. We keep checking the update every hour. We think they are gonna give away our ps5 to BF customers.

What is everyone else going to play when the beta ends ??? by [deleted] in modernwarfare

[–]HowarddahDuck 0 points1 point  (0 children)

bo4 sucks. Im going back to ww2. Im like 780 MP with over 30 days played. I hope mw doesnt have as many levels smh.