Using Powershell's Tee-Object you can view the output and pipe it to a file ping 10.17.66.100 -t | Tee-Object -FilePath teed_ping_results.txt
IT Tips
Herules Comms tool
Serial tool: https://www.hw-group.com/software/hercules-setup-utility
Replacing SFP’s in Cisco 2960x Switches
I have 3 Cisco ws-c2960x-24pd-l switches on a site with SFP+ slots (10GB) The switches were relocated when the business moved to another factory. The old factory must of had single-mode fibre links because the switches had SFP-10G-LR-S SFP+'s which are single-mode...
Can You Upgrade Windows 7 Pro to Windows 10 Pro RemoteLy over N-Able Take Control? Yes!
TLDR; Yes you can update Window 7 Pro to Windows 10 Pro remotely (I am in Melbourne PC was near Newcastle) Takes about 2 1/2 hours HP Laptop Latest version of N-Sight RMM Agent and Take Control also have the latest version of TightVNC Copy the Windows 10 Pro ISO...
A Bunch of Awesome Windows Utilities
https://www.nirsoft.net/
Wake-on-Lan MSI b450m pro-m2 Motherboard Ubuntu 22.04
Just took a while to get Wake-On-Lan Running on an MSI B450M Pro-M2 motherboard running Ubuntu 22.04 Using the WakeMeOnLan windows utility installed by choco install wakemeonlan and the default settings: Enable Wake-On-LAN in the BIOS Press delete at startup to get...
Cisco Router Wake On Lan
Haven't confirmed this to work yet but leaving here so I have a reference for later In the Cisco enable prompt Router# tclsh proc WakeOnLan {broadcastAddr macAddr} { set net [binary format H* [join [split $macAddr -:] ""]] set pkt [binary format c* {0xff 0xff 0xff...
Cisco Zone Based Firewall
https://www.cisco.com/c/en/us/support/docs/security/ios-firewall/98628-zone-design-guide.html
PGAdmin4 on M1 Mac fails to connect
Trying to connect PGAdmin 4 (pgadmin4-7.2-x86_64.dmg) on an M1 Macbook to a remote Postgres server using SSH tunnelling and SSH username/password auth and you get: Unable to connect to server: Failed to decrypt the SSH tunnel password. Error: 'ServerManager' object...
Turn XDebug Off in a Powershell Terminal
To turn off Xdebug in a Powershell terminal $env:XDEBUG_MODE = "off" To turn on Xdebug in a Powershell terminal $env:XDEBUG_MODE = "off" Windows 11 VSCode Terminal: XDebug output and then without when XDEBUG_MODE = "off"