This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .SYNOPSIS | |
| Monitors Syncthing connections in real-time with transfer rate calculations. | |
| .DESCRIPTION | |
| Runs every 5 seconds to display Syncthing connection status. The first iteration | |
| shows current values without rate information. Subsequent iterations include | |
| inTotalMbps showing the data transfer rate. | |
| .PARAMETER IntervalSeconds |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -- https://github.com/duckdb/odbc-scanner/discussions/115 | |
| # | |
| # Configuration | |
| # | |
| $odbcConnectionString = 'Driver={Firebird ODBC Driver};Database=/temp/test.fdb;UID=SYSDBA;PWD=masterkey;CHARSET=UTF8' | |
| $sourceQueryFile = '/temp/odbc-scanner-benchmark/source.sql' | |
| $destQueryFile = '/temp/odbc-scanner-benchmark/dest.sql' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $result = [ordered]@{ | |
| ComputerSystem = Get-CimInstance CIM_ComputerSystem | Select-Object -Property ` | |
| 'Name', | |
| 'Description', | |
| 'PrimaryOwnerName', | |
| 'ChassisSKUNumber', | |
| 'CurrentTimeZone', | |
| 'DaylightInEffect', | |
| 'DNSHostName', | |
| 'EnableDaylightSavingsTime', |
OlderNewer