is it possible to add Desktop shortcut to Windows 10 user profiles via BigFix? i would like to add “My Computer” to users desktop
Absolutely! You can do anything with BigFix 
In this case I would probably figure out how to do this in powershell or with a batch file and then moving it into BigFix is easy!
I recommend taking one of two approaches:
Find a way to script create a shortcut and create a shortcut in C:\users\public\desktop which will create it for all users.
Create a shortcut and upload it to your bigfix server, download it onto the client and move it into C:\users\public\desktop
The location of the “Public Desktop” folder can vary by OS version between 2000, XP, Win10, and probably future versions. To make the fixlet generic you should use the API to get the correct path via something like “csidl folders”
q: pathname of csidl folder 25
A: C:\Users\Public\Desktop
Here is a very old example that creates the shortcut on the user’s desktop, which I probably wouldn’t recommend, I would instead make it on the Public Desktop, but the script used is a good example: https://bigfix.me/fixlet/details/720
This is a better example in terms of not creating a user specific link, but this is for the start menu instead: https://bigfix.me/fixlet/details/741
I would write the relevance differently and better today, but these old examples should still be functional.
Also, I would definitely recommend checking BigFix.Me for examples in general.