I’ve heard about AST in the PowerShell context before, particularly during this episode of PowerShell Podcast: Holiday Special with Andrew Pla and Gilbert Sanchez: PSScriptAnalyzer, AST, and PowerShell Gifts: PS Podcast E150
[Read More]
mpremote example: run code from device memory, install missing module
demo example how to run code on device memory and install missing module if needed; great for rapid prototyping
this is a mpremote demo/example: how to run code on device memory and install missing module if needed; great for rapid prototyping
[Read More]
Using Splunk and Armis index to get an inventory list
Could be useful for inventory checks.
[Read More]
Monitoring Network Activity using Splunk index firewall-pan
Splunk query to monitor network traffic using firewall-pan index.
[Read More]
FTDI Devices on Ubuntu
How to check for FTDI USB-to-Serial adapters on Ubuntu using command line tools
FTDI devices are commonly used USB-to-Serial adapters, common enough that many operating systems have built-in support for them.
[Read More]
Monitoring (USB) Device Change Events with PowerShell
Capture system device changes using WMI to quickly identify connected or disconnected hardware
Copy
Copy
Copy
```powershell
function Start-WMIDeviceChangeMonitor {
[CmdletBinding()]
param()
[Read More]
Using FT232RNL with Sigrok/Pulseview on Windows
Getting FTDI logic analyzer working with proper drivers
Using FT232RNL with Sigrok/Pulseview on Windows
[Read More]
PowerShell Get-Member Essentials: Static vs Instance Members
Master the key distinction between static and instance members in PowerShell using Get-Member to unlock the full power of .NET objects.
[Read More]
Getting Started with mpremote for MicroPython
Learn what mpremote is, why it’s useful for MicroPython development, and how to install it on your system.
[Read More]
Reading Raw Data from a Foot Pedal HID
Learning to read raw data from a foot pedal HID device using C# and the Windows API.
[Read More]