Scripts for migrating ConnectWise RMM agents between tenants.
📥 rmm-migration-launcher.bat 📥 rmm-migration-worker.batStep 1: Get Your New Tenant URL
In ConnectWise Automate, navigate to your new tenant location and generate the MSI installer package. The URL will look like:
https://prod.setup.itsupport247.net/windows/BareboneAgent/32/YOUR_TENANT_NAME/MSI/setup
Step 2: Run the Migration Command
Replace NEW_TENANT_URL with your actual tenant MSI URL from Step 1:
mkdir C:\Temp & powershell -Command "& {(New-Object System.Net.WebClient).DownloadFile('https://scripts.pembrix.com/rmm-migration/rmm-migration-launcher.bat', 'C:\Temp\launcher.bat')}"; C:\Temp\launcher.bat "NEW_TENANT_URL"
Example:
mkdir C:\Temp & powershell -Command "& {(New-Object System.Net.WebClient).DownloadFile('https://scripts.pembrix.com/rmm-migration/rmm-migration-launcher.bat', 'C:\Temp\launcher.bat')}"; C:\Temp\launcher.bat "https://prod.setup.itsupport247.net/windows/BareboneAgent/32/YourCompany_Location/MSI/setup"
What Happens: