Hi @sandy.sidhu,
You should be able to create a pair of scripts that will automatically deploy/update and download any new versions of the Fusion 360 Software.
I assume you're wanting windows.
In this document - https://me3d.com.au/wp-content/uploads/2016/09/fusion-360_lab-installation-instructions_anz.pdf
It has the links to the installer for the admin lab install.
More importantly the link does not change and merely downloads the most recent version of the software.
There is another address inside that you can query and get the current release version.
One script you will need to use and record the version you are deploying somewhere inside - eg 2.0045
That way you can check the local machine to see if it is a) installed and b) the current version.
The second script you can setup on a daily schedule and it will query Autodesk and read the version info from the json data (powershell has support for this!)
You can then use regular expressions to locate the version info in your deploy script and compare the two.
If they don't match then download a newer copy of the admin installer and update the deploy script version number!
I've set this up personally at the schools I work at and it makes my life easier, instead of being reactive to a staff member saying its out of date! 🙂
I'm unable to share the script as its the property of the company I work for, but I hope this gives you an idea on how you can automate the deployment to your computers!
I also record the version numbers to see how often it downloads a new copy.
This is a small excerpt:
02/08/2021 | Version:2.0.10564
24/08/2021 | Version:2.0.10806
26/08/2021 | Version:2.0.10811
27/08/2021 | Version:2.0.10813
08/09/2021 | Version:2.0.10940
21/09/2021 | Version:2.0.11183
30/09/2021 | Version:2.0.11186
19/10/2021 | Version:2.0.11405
26/10/2021 | Version:2.0.11415
30/11/2021 | Version:2.0.11680
08/12/2021 | Version:2.0.11685
14/12/2021 | Version:2.0.11894
Thanks,
Dion