I’m working on a Powershell module for Syncthing, and results so far are promising. Its main purpose is simplifying the rest API and saving time on huge tasks, like adding MANY folders at once. For example, “Get-SyncthingConfig” is in my opinion far more intuitive for a powersheller than Invoke-RestMethod -Uri “http://$Hostname”+":"+"$Port/rest/system/config" -Method Get
Does this already exist and I haven’t found it? Do you guys here need something like this? I believe syncthing management with Powershell is a requirement for many companies who would consider Syncthing.
So far I have functions for adding folder(s), restarting, upgrading, getting API key, getting and setting config, getting devices, getting folders, getting status and getting own device id. I’m currently working on adding device.
What other features/functions would be cool and/or necessary?