DOMAINS
- DNS STUFF (http://www.dnsstuff.com/)
- NETWORK TOOLS (http://network-tools.com/)
- WHATISMYIPADDRESS (http://whatismyipaddress.com/)
HOUSING
HEAD HUNTERS
- Michael Page
- Hays
- EgoValeo
SPEED / NETWORK GENERIC TEST
- EOLO TEST (http://test.eolo.it/)
- SPEEDTEST (http://www.speedtest.net)
- VISUALROUTE (http://www.visualroute.it/myspeed/)
DOTCOM MONITORS / ADVANCED NETWORK TESTS
- DNS TRACE (https://www.dotcom-tools.com/DNS-lookup-tools.aspx)
A DNS performance test that traverses the DNS tree starting at the root server level - EMAIL SERVER TEST (https://www.dotcom-tools.com/email-server-test.aspx)
Test POP3, IMAP or SMTP mail server performance and availability - EMAIL SERVER BLACKLIST TEST (https://www.dotcom-tools.com/blacklist-check-email.aspx)
DNSBL lookup checks to see if your email server is listed in major spam blacklists - FTP SERVER TEST (https://www.dotcom-tools.com/ftp-server-test.aspx)
Check Test FTP server performance and verify file availability - NETWORK TRACEROUTE TEST (https://www.dotcom-tools.com/online-traceroute-network-latency-test.aspx)
A remote traceroute test tool that will help you troubleshoot network and connection issues - PING TET (https://www.dotcom-tools.com/ping-test.aspx)
Test website availability from multiple locations around the world with this global ICMP pingtest - STREAMING SERVER TEST (https://www.dotcom-tools.com/streaming-server-monitoring.aspx)
A streaming video test tool that checks performance and availability of your streaming media files - WEB SERVER TEST (https://www.dotcom-tools.com/web-server-performance-test.aspx)
Availability and server performance information for your HTTP or HTTPS website - WEBSITE SPEED TEST (https://www.dotcom-tools.com/website-speed-test.aspx)
Receive a detailed, element level waterfall chart from this browser- based website speed test
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
- McLink: 195.78.215.228 / 195.78.223.228
- 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