Category Archives: Uncategorized

Kontrollere om recall kjører

 

  • Open PowerShell as an administrator
  • Run the following command:
      DISM /Online /Get-FeatureInfo /FeatureName:Recall
    

This command will show whether the Recall feature is enabled on your system.

Alternatiely,

  • Press Win + R
  • Type regedit, and press Enter to open the Registry Editor
  • Navigate to the following path: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Features
  • Look for an entry named Recall. If it exists, the Recall feature is enabled.

The Recall feature is exclusive to Copilot+ PCs, which are designed with enhanced security features likeMicrosoft Pluton security processor and Windows Hello Enhanced Sign-in Security (ESS)34. If your PC is not a Copilot+ PC, it is unlikely that the Recall feature is enabled

Skifte DNS server

Man går inn i PowerShell med Admin rettigheter.

For å se status over bruk av DNS servere:

Get-DnsClientServerAddress AddressFamily IPv4

For å sette Google og Cloudfalre som DNS servere for WiFi:

Set-DnsClientServerAddress InterfaceAlias “WiFi” ServerAddresses (“8.8.8.8”,“1.1.1.1”)

For å sette DNS til AdGuard som blokkerer for annonser:

Set-DnsClientServerAddress InterfaceAlias “WiFi” ServerAddresses (“94.140.14.14”,“94.140.15.15”)