Remotely check Umbraco version
j
Hi, we have a lot of Umbraco project with all different version. Every couple of months someone goes through the company and asking all the team to check if there versions are up to date in our overall list. This takes a lot of time, and is annoying to do. Is there a way to get the version number of Umbraco remotely (via scripting or API or whatever)?
s
Drop in an ApiController.. make sure to authenticate as you don't want the bad people to find it and enumerate your versions 😅
j
You could also build your own package that posts the data to a site where you could then pick it up and have it shown in a dashboard. As the code for it is pretty basic you can multi target quite easily
d
We already made a thing that sends your Umbraco version along with several other values to an endpoint of your choice for consumption. https://github.com/Infocaster/Telemetry-Package
k
https://github.com/Jumoo/uSync.CommandLine 😄
Copy code
usync run info -s <server> -user <user> -p <pass>
or
Copy code
usync run info -s <server> -key <secret-key>
6 Views