Category: Tools

Install Syncthing on Linux
article #1448, updated 1226 days ago

This is a great way:

webinstall.dev/syncthing/

Categories:      

==============

To Get HPE Product Number: The HPE PartSurfer!
article #1434, updated 1247 days ago

HPE must be growing a sense of humor. This thing really works well:

https://partsurfer.hpe.com/Search.aspx

Categories:      

==============

JEB's Diagnostic Sites for DNS, Internet email, and related
article #164, updated 1247 days ago

Here are web sites for diagnosing DNS, Internet email, and other issues.

http://mxtoolbox.com

A very good place to test Internet email servers and servers in general exposed to the Internet at large.

http://dnsstuff.com

DNSstuff is excellent for diagnosing DNS issues of all kinds.  Most of its tools require a small subscription fee.

http://whatismyipaddress.com/

whatismyipaddress.com is very good for obtaining geographical and ISP information for an IP address.

https://www.testexchangeconnectivity.com/

is very good for testing Exchange WAN services, e.g., smartphone access, Outlook Anywhere.

Categories:      

==============

Run CMD as SYSTEM
article #1428, updated 1268 days ago

For certain tasks, it can be helpful to run CMD as SYSTEM. This can be done with paexec:

paexec -s -i -d cmd.exe

or psexec:

psexec -sid %SYSTEMROOT%\System32\cmd.exe

Categories:      

==============

Good & simple app to burn CDs in Windows and create ISOs from disks
article #357, updated 1600 days ago

AnyBurn seems to be possibly the current best light & powerful CD/DVD toolbox item:

www.anyburn.com/download.php

It’s available in 64-bit and 32-bit versions. ImgBurn was go-to for a long time, but it hasn’t had updates since 2013. Quite a few others are gone too. But the old reliable CDBurnerXP is still being kept up to Windows 10 as well:

cdburnerxp.se/

Categories:      

==============

UDP Port Scanner
article #1387, updated 1639 days ago

Test if UDP ports are open to the Internet.

https://www.ipvoid.com/udp-port-scan/

Categories:      

==============

Sticky notes for the Windows desktop
article #750, updated 1778 days ago

I have just moved to this one:

https://www.notefly.org/

Bugs showing up in the others I’ve used, some of them only showing up at the end of the day when lots of notes exist.

Categories:      

==============

Check Your Email Blacklists
article #644, updated 1784 days ago

Here’s a great place to do so:

https://mxtoolbox.com/blacklists.aspx

And another:

https://www.ultratools.com/tools/spamDBLookup

And another:

http://www.dnsbl-check.info/

And a third, realtime:

http://www.uceprotect.net/en/rblcheck.php

Categories:      

==============

New Windows package manager: OneGet
article #1352, updated 1843 days ago

This seems to be quite the tool. Haven’t tested it yet.

https://github.com/oneget/oneget

Can be installed or updated in 10 with: Install-Module -Name PackageManagement -Force

Categories:      

==============

Clear all Windows event logs in Powershell
article #1350, updated 1844 days ago

Try this, in administrative Powershell:

wevtutil el | ForEach-Object { "$_"; wevtutil cl "$_" }

Categories: