• Welcome to TechPowerUp Forums, Guest! Please check out our forum guidelines for info related to our community.
  • The forums have been upgraded with support for dark mode. By default it will follow the setting on your system/browser. You may override it by scrolling to the end of the page and clicking the gears icon.

Why does Windows 10 microsoft photos.exe always run and connect to the internet?

Space Lynx

Astronaut
Joined
Oct 17, 2014
Messages
18,359 (4.68/day)
Location
Kepler-186f
Processor 7800X3D -25 all core
Motherboard B650 Steel Legend
Cooling RZ620 (White/Silver)
Memory 32gb ddr5 (2x16) cl 30 6000
Video Card(s) Merc 310 7900 XT @3200 core -.75v
Display(s) Agon QHD 27" QD-OLED Glossy 240hz
Case NZXT H710 (Black/Red)
Power Supply Corsair RM850x
clean install of win 10 and latest nvidia drivers released today. just have a couple games installed on steam is all.

rebooted a few times, etc etc. its been idle for awhile, etc.

last 3-4 hours it shows photos.exe has been active under my 1070 even though i have not opened it even once.... and it shows internet activity... im really tired of M$'s crap. I think I might be making switch to Linux permanently unless someone can tell me how to disable photos in full, I never use it anyway.

7c75e3d336.png
 
It's a UWP app, so it'd just be trying to connect to the Windows store to update. Either that or you have OneDrive enabled and it's checking for photos there.

To disable it in full, maybe check in the Services app, see if it runs any processes at start (which you can disable from there). Although I doubt it takes any resources worth caring about.
 
It's a UWP app, so it'd just be trying to connect to the Windows store to update. Either that or you have OneDrive enabled and it's checking for photos there.

To disable it in full, maybe check in the Services app, see if it runs any processes at start (which you can disable from there). Although I doubt it takes any resources worth caring about.

hmm ok thanks for answer, i have windows store uninstalled, as well as Edge, and one drive and defender disabled with Shut Up Ten... so its prob just constantly looking for a hookup and never get its... story of my life too photos.exe

yeah thats a joke for you dense folks ^
 
In power shell you can do it by

Code:
get-appxpackage *Microsoft.Windows.Photos* | remove-appxpackage

but it will probably come back during the next build update, and remember you need to set the default picture software after. You can just set it to paint or something.
 
In power shell you can do it by

Code:
get-appxpackage *Microsoft.Windows.Photos* | remove-appxpackage

but it will probably come back during the next build update, and remember you need to set the default picture software after. You can just set it to paint or something.

That worked great, thanks! Do you have a command line that removes Cortana, cause I still see its processes running in task manager even though Shut Up Ten disabled it, lol

Also I won't be upgrading to next build. probably will wait 12 months, do the second next major build, since its every 6 months. and then do all this crap all over. :D
 
I'm just gonna say more power to you, to start with. :p

But I wouldn't touch any of this myself (unless it was that edition of Windows that is completely stripped). I tend to find that screwing with MS stuff causes issues. And if you think about it too much, you're going to find it's tentacles reaching out to areas you didn't even notice before (*cough* registry). It can really be aggravating trying to run a "clean slate" type of Windows. Best not think about it imHo. And with modern computers, it barely makes a dent on performance anyhow. I used to be more obsessed about it in the Win9x days.
 
That worked great, thanks! Do you have a command line that removes Cortana, cause I still see its processes running in task manager even though Shut Up Ten disabled it, lol

Also I won't be upgrading to next build. probably will wait 12 months, do the second next major build, since its every 6 months. and then do all this crap all over. :D

No unfortunetly you can use powershell to remove uwp's but cortana is integrated. there is a way but its manual and will break windows search I do not reccomend it

if you would like I have a script I run on my master image I deploy and I can give you the powershell to remove all apps, I think I leave calculator and the store itself.

Ill do it anyway for acedemic shouldnt matter if you want it or not others might.

Code:
Get-AppxPackage -AllUsers | where-object {$_.name -notlike "*Store*" -and $_.name -notlike "*Calculator*"} | Remove-AppxPackage -erroraction silentlycontinue

Get-AppxProvisionedPackage -online | where-object {$_.displayname -notlike "*Store*" -and $_.displayname -notlike "*Calculator*"} | Remove-AppxProvisionedPackage -online -erroraction silentlycontinue

it removes all but the store and calculator.
 
Last edited:
No unfortunetly you can use powershell to remove uwp's but cortana is integrated. there is a way but its manual and will break windows search I do not reccomend it

if you would like I have a script I run on my master image I deploy and I can give you the powershell to remove all apps, I think I leave calculator and the store itself.

Ill do it anyway for acedemic shouldnt matter if you want it or not others might.

Code:
Get-AppxPackage -AllUsers | where-object {$_.name -notlike "*Store*" -and $_.name -notlike "*Calculator*"} | Remove-AppxPackage -erroraction silentlycontinue

Get-AppxProvisionedPackage -online | where-object {$_.displayname -notlike "*Store*" -and $_.displayname -notlike "*Calculator*"} | Remove-AppxProvisionedPackage -online -erroraction silentlycontinue

it removes all but the store and calculator.


Worked great, thank you. I just bookmarked this thread in my mods folder in chrome so I will always have those scripts handy for future clean installs.
 
Last edited by a moderator:
Back
Top