07-18-2023 10:27 AM
Hi everybody,
I was wondering if anyone has or knows a script for jumpcloud to pull out the list of devices with operating system, version and build.
Many thanks
Dario
Solved! Go to Solution.
07-21-2023 09:39 AM - edited 07-21-2023 09:42 AM
Hi Dario,
Thank you for your patience with this. It took some asking around on my part. Here's a short version that gives you just the patch number.
Get-JCSystem | Select-Object -Property id, os, version, @{ Name = 'Patch No.' ; Expression = {$_.osVersionDetail.patchnumber}} | Format-Table -Autosize
I've attached a longer version with more available details you can pull up. Hope this helps!
Many thanks to @scott_reed for all the help on this one!
07-19-2023 08:50 AM
Hi Dario,
I'm taking a look at this. I'll get back to you once I have more info 🙂
Urvashi
07-21-2023 09:39 AM - edited 07-21-2023 09:42 AM
Hi Dario,
Thank you for your patience with this. It took some asking around on my part. Here's a short version that gives you just the patch number.
Get-JCSystem | Select-Object -Property id, os, version, @{ Name = 'Patch No.' ; Expression = {$_.osVersionDetail.patchnumber}} | Format-Table -Autosize
I've attached a longer version with more available details you can pull up. Hope this helps!
Many thanks to @scott_reed for all the help on this one!
07-21-2023 10:17 AM
07-21-2023 10:23 AM
Glad to hear that 😄 Happy to help!
New to the site? Take a look at these additional resources:
Ready to join us? You can register here.