NIC speed in Powershell
article #1530, updated 740 days ago

To get the link speed of all NICs in Powershell:

Get-NetAdapter | select interfaceDescription, name, status, linkSpeed.

Categories:      

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

Problem-fixing power management script
article #1521, updated 741 days ago

This one makes sure general settings are likely helpful, and also deals with two common troublemakers:

# General
powercfg /change monitor-timeout-ac 0
powercfg /change monitor-timeout-dc 15
powercfg /change standby-timeout-ac 0
powercfg /change standby-timeout-dc 120
powercfg /change hibernate-timeout-ac 0
powercfg /change hibernate-timeout-dc 180
powercfg /change disk-timeout-ac 0
powercfg /change disk-timeout-dc 60

# Unhides and zeroes hidden "System unattended sleep timeout" which can cause problems
# including, sometimes, automatic unwanted logoff
powercfg -attributes sub_sleep 7bc4a2f9-d8fc-4469-b07b-33eb785aaca0 -ATTRIB_HIDE
powercfg -setacvalueindex scheme_current sub_sleep 7bc4a2f9-d8fc-4469-b07b-33eb785aaca0 0

# Disable hybrid sleep both AC powered and DC
powercfg -setacvalueindex scheme_current sub_sleep 94ac6d29-73ce-41a6-809f-6363ba21b47e 0
powercfg -setdcvalueindex scheme_current sub_sleep 94ac6d29-73ce-41a6-809f-6363ba21b47e 0

# Reapply current power scheme
powercfg -setactive scheme_current

Categories:      

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

Very very fast Windows file deletion
article #1528, updated 748 days ago

Have not tested this yet, but looks very promising:

iobureau.com/byenow/

Categories:      

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

Update All Installed Powershell Modules
article #1527, updated 749 days ago

It also removes old versions.

Get-InstalledModule |%{if((get-module -listavailable -name $_.name).version -lt (find-module $_.name).version){update-module -name $_.name -force;Get-InstalledModule -name $_.name -allversions| where {$_.version -lt (get-installedmodule -name $_.name).version} | Uninstall-Module -force}}

From www.tbone.se/2023/02/27/update-your-windows-11-with-some-powerful-one-liners/

Categories:      

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

Send passwords securely
article #1525, updated 754 days ago

Something new:

https://pwpush.com

Categories:      

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

Initiate Windows domain controllers' replication
article #1524, updated 762 days ago

Here is the command:

repadmin /syncall /AeD

Categories:      

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

Windows 10 Update Assistant
article #1523, updated 775 days ago

A very interesting .EXE which appears to be able to upgrade Build 1909 directly to 22H2.

https://www.microsoft.com/en-us/software-download/windows10

Categories:      

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

Automatic logoff at idle by GPO
article #1522, updated 776 days ago

Go here in GPO:

Computer Configuration\Policies\Windows Settings\Security Settings\Local Policies\Security Options

and set:

Interactive logon: Machine inactivity limit

Enforce a zero to make sure it never happens.

Categories:      

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

Betterbird: Vastly Improved Fork of Thunderbird
article #1520, updated 779 days ago

Try it. https://www.betterbird.eu/. The Thunderbird team has been ignoring huge quantities of bugs and usability issues for decades. They kicked out a profoundly gifted developer several years ago, who has been leading Betterbird, a careful “soft fork” of Thunderbird, which maintains all helpful interoperability while fixing many, many bugs. Betterbird is lighter and faster, it does CardDav address books natively to Gmail and other providers, it has a far better HTML email composer, and much, more more!

Categories:      

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

Extract Windows 10 Key from Running or Nonrunning Machine
article #1519, updated 781 days ago

Try the free version here:

www.magicaljellybean.com/keyfinder/

Categories: