this post was submitted on 08 May 2024
17 points (84.0% liked)

Technology

57453 readers
4354 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
 

Does anyone know how Connectwise RMM does scripting deployments FROM other RMM tools? We are having a tough time trying to figure out how to pass our site tokens through as part of an installation script from DattoRMM, and none of the documentation seems to align correctly. Someone told us it would be something like 

 

msiexec /q /i "%tempdir%\AsioAgentIinstaller.msi"  TOKEN=@RMMSiteToken@ /L*V "%tempdir%\AsioAgentInstaller.log"

 

but we're not seeming to have much luck with that.

 

Has anyone successfully scripted their deployment/migration from DattoRMM to CWRMM, and if so, how? We're absolutely vexed at this.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 3 months ago

Strangely enough, I may be able to help...

When creating the component in Datto RMM, you should be able to upload the MSI file. Then you can call it via the script by just giving it the file name (the component uploads the file to the working directory).

For the token, you can create a variable called %token% via the UI, which will cause Datto RMM to prompt the token every time the component is scheduled.

So your batch "script" would be:

msiexec /qn AsioAgentInstaller.msi TOKEN=%token%