Strumenti

DOMAINS

HOUSING

HEAD HUNTERS (in ordine alfabetico)

SPEED / NETWORK GENERIC TEST

DOTCOM MONITORS / ADVANCED NETWORK TESTS

DNS (Primary / Secondary)

  • Albacom: 212.17.192.49 / 212.17.192.216
  • Fastweb: 85.18.200.200 / 89.97.140.140
  • Google: 8.8.8.8 / 8.8.4.4
  • Infostrada/Libero: 193.70.152.15 / 193.70.152.25
  • OpenDNS: 208.67.222.222 / 208.67.220.220
  • Telecom ALICE: 212.216.112.112 / 212.216.172.62
  • Telecom BUSINESS: 151.99.125.1 / 151.99.125.2 / 151.99.125.3
  • Telecom ALICE HOME (OK autosearch): 85.37.17.7 / 85.38.28.95
  • Telecom ALICE HOME (NO autosearch): 62.211.69.170 / 212.48.4.30
  • Tele2: 130.244.127.161 / 130.244.127.169
  • TeleTu: 208.67.222.222 / 208.67.220.220
  • Tiscali: 213.205.32.70 / 213.205.36.70
  • Vodafone HOME: 91.80.35.134 / 91.80.35.166

USEFUL COMMANDS

  • Uninstall all apps from Windows 10:
    From Windows Powershell (admin)
    Get-AppxPackage -AllUsers | where-object {$_.name –notlike “*store*”} | Remove-AppxPackage
  • Uninstall all Network added printers but not drivers:
    From Windows Powershell (admin)
    Get-WMIObject Win32_Printer | where{$_.Network -eq 'true'} | foreach{$_.delete()}
  • Registry Position of Users Profiles
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows NT\CurrentVersion\ProfileList
  • Disable Network Printers automatic installation
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\NcdAutoSetup\Private\AutoSetup
    Set it to 0.
  • Delete undeletable registry keys using PSEXEC: psexec -s -i regedit
    https://docs.microsoft.com/it-it/sysinternals/downloads/psexec       OR     LOCAL FILE
  • Update all Win programs via shell:
    CMD (admin) --> winget upgrade --all
  • Reset IMAP folder names
    https://learn.microsoft.com/it-it/outlook/troubleshoot/user-interface/incorrect-folder-names Outlook.exe /resetfolders
    Outlook.exe /resetfoldernames
Torna in alto