Ability to "Create VBScripts"
No Option for "Scripts"
Below our case already shared with Bill Frankel and your Support Team:
Basically we would like to have the ability to create VBScripts and distribute them to the devices we want them on it.
Below one example of how we use the VBScripts to be able to distribute and push the script (before via Ninja without any issue) to All workstations and servers. We normally upgrade the version of the Dental Software that the practices use (PMS and Xray Software) and after the upgrade the install will push the icons by default, so we nee to push our customize icon using a VBScript to all workstations and servers (something that we noticed last week when we ran the upgrades is that Atera does not allow us to create VBScripts) and we was needed to do manually to all devices!
Basically, we modified the “properties” for the icon adding the Server IP (per practice) and the credentials for the SQL database – end users. As we discussed I think this is something that can’t be 24/7 support because is something for your development team.
Below the example:
“Set sh = CreateObject("WScript.Shell")
Set shortcut = sh.CreateShortcut("C:\Users\Public\Desktop\softwarerelated.lnk")
shortcut.TargetPath = "C:\Program Files (x86)\software related\softwarerelated.exe"
shortcut.Arguments = "ServerName=xxx.xxx.xxx.xxx DatabaseName=software related MySqlUser=username MySqlPassword=password"
shortcut.Save”