Auf YouTube findest du die angesagtesten Videos und Tracks. Außerdem kannst du eigene Inhalte hochladen und mit Freunden oder gleich der ganzen Welt teilen.
(re)Ditched Windows on my PC a while ago, still have to use Windows at work. Just checked my work laptop running Windows 11 (standard laptop, not a “Copilot+PC”) - sure enough, that Recall shit is installed and active. Disabled it, and made a post in our main company Teams channel with screenshots. Will be interesting to see if there are any reactions to this.
To find out if it is active in Windows 11, open up ‘cmd’ and use: (typing this from memory, hope it is correct)
dism /online /get-featureinfo /featurename:Recall
to disable it, you need a ‘cmd’ instance with admin rights:
Mentioned this in another comment. Take that second dism line, and put it in a batch script and make it a scheduled task that runs at login. Or use a Powershell script to make it a little smarter - check if it’s enabled first and then disable it if it is.
My company blocks screenshots (luckily we don’t have high definition cameras in or pocket at all times, else that would seem stupid) so I’m wondering what they will do if those are user accessible.
(re)Ditched Windows on my PC a while ago, still have to use Windows at work. Just checked my work laptop running Windows 11 (standard laptop, not a “Copilot+PC”) - sure enough, that Recall shit is installed and active. Disabled it, and made a post in our main company Teams channel with screenshots. Will be interesting to see if there are any reactions to this.
To find out if it is active in Windows 11, open up ‘cmd’ and use: (typing this from memory, hope it is correct)
dism /online /get-featureinfo /featurename:Recall
to disable it, you need a ‘cmd’ instance with admin rights:
dism /online /disable-feature /featurename:Recall
I’m going to check at my work tomorrow too. I’m gonna be quite unhappy if I find it.
It will be re-enabled after update : )
Mentioned this in another comment. Take that second dism line, and put it in a batch script and make it a scheduled task that runs at login. Or use a Powershell script to make it a little smarter - check if it’s enabled first and then disable it if it is.
Modern problems require modern solutions.
Any IT admins in the audience: this is what remediation scripts were made for
My company blocks screenshots (luckily we don’t have high definition cameras in or pocket at all times, else that would seem stupid) so I’m wondering what they will do if those are user accessible.