Step 14: Final Cleanup
Remove old Nodinite v6 monitoring agent folders and files to complete the migration.
Prerequisites
- Step 13 completed – All configurations updated
- All v7 services running and tested
- Backup of old files taken (if needed)
Folders to Keep and Delete
In v6, monitoring agents were installed via an MSI-based installer, which allowed the admin to choose any installation path at the time. This means the old agent folders may be located on different drives or under different root folders — not necessarily under C:\Program Files\Nodinite\.
Tip
In Step 9 (Remove Old Windows Services), the script automatically captured each service's installation folder and saved them to
Nodinite-AgentFolders.txt. Use that file now — it tells you exactly where to look, regardless of where the MSI placed them. If you no longer have the file, you can also check your notes from Step 6 (Export Monitoring Agents).
Important
If you are co-hosting multiple environments on the same server, only remove the old folders for the environment you just migrated. Leave other environment folders untouched until you migrate them.
Keep This Folder
<EnvironmentName>folder (e.g.,DEV,PROD) – Contains v7 installation
Delete These Folders
Remove all old v6 monitoring agent folders. In v7, all agents run under IIS — these standalone Windows Service-based folders are no longer used.
Agent - Azure– Old Azure monitoring agent (replaced by IIS-hosted v7 agent)Agent - Azure Logic Apps– Old Azure Logic Apps logging agent (replaced by IIS-hosted v7 agent)Monitoring Agent - Database– Old database monitoring agentMonitoring Agent - DataPower– Old IBM DataPower monitoring agentMonitoring Agent - Dynamics CRM– Old Microsoft Dynamics CRM monitoring agentMonitoring Agent - File Folder– Old file folder monitoring agentMonitoring Agent - IBM MQ– Old IBM MQ monitoring agentMonitoring Agent - Log File Parser– Old log file parser agentMonitoring Agent - Message Queueing– Old MSMQ monitoring agentMonitoring Agent - Microsoft BizTalk Server– Old BizTalk Server monitoring agentMonitoring Agent - Mule– Old MuleSoft monitoring agentMonitoring Agent - Non Events– Old Non-Events monitoring agentMonitoring Agent - RabbitMQ– Old RabbitMQ monitoring agentMonitoring Agent - Web Services– Old web services monitoring agentMonitoring Agent - Windows Server– Old Windows Server monitoring agentNodinite Update– Old update service folder (only remove once all environments on this server have been migrated to v7)
Note
Only delete folders that exist. Not all environments have every monitoring agent installed.
Steps
- Verify all v7 services running correctly
- Test logging, monitoring, and alerting
- Open
Nodinite-AgentFolders.txt(generated in Step 9) to see the exact paths of all old agent folders - Review the list — remove any paths that belong to environments you are NOT cleaning up in this migration pass
- Delete each listed folder from the file system
- Delete the
Nodinite Updatefolder (only if all environments on this server have been migrated) - Do NOT delete the
<EnvironmentName>folder containing your v7 installation - Empty Recycle Bin if satisfied
Optional: Delete Using PowerShell
If you prefer to automate the deletion using Nodinite-AgentFolders.txt:
# Review first — open the file and verify paths before running
Get-Content .\Nodinite-AgentFolders.txt
# Delete each folder listed in the file
Get-Content .\Nodinite-AgentFolders.txt | ForEach-Object {
if (Test-Path $_) {
Write-Host "Removing: $_"
Remove-Item -Path $_ -Recurse -Force
} else {
Write-Host "Not found (already removed or never existed): $_"
}
}
Important
Always review
Nodinite-AgentFolders.txtbefore running the delete script. Remove any lines for environments not yet migrated.
Completion Checklist
- Old monitoring agent folders removed
-
Nodinite Updatefolder removed - Environment folder (e.g.,
DEV) preserved - File system cleaned up
- v7 still working after cleanup
Migration Complete!
Congratulations! You have successfully migrated from Nodinite v6 to v7.
Next Steps
- Test all functionality thoroughly
- Update user documentation with new URLs
- Train users on any UI changes
- Monitor system performance
- Consider future enhancements:
- Group Managed Service Accounts (gMSA)
- OAuth 2.0 / OpenID Connect authentication
Contact your Partner or Nodinite Support for guidance on advanced features.
Troubleshooting
Accidentally Deleted Environment Folder
Problem: Removed environment folder (e.g., DEV) instead of monitoring agent folders.
Solution:
- Stop - don't remove more files
- Restore from backup if available
- Re-download and run Portal PowerShell script to reinstall v7
- Contact Nodinite Support if needed
v7 Not Working After Cleanup
Problem: Services fail after removing old folders.
Solution:
- Verify you didn't remove the environment folder (e.g.,
DEV) - Check IIS application pools are running
- Restore from backup if needed
- Review Event Viewer for errors
Cannot Find Old Monitoring Agent Folders
Problem: Folders listed don't exist in your installation.
Solution:
- This is normal - only delete folders that exist
- Each environment has different monitoring agents installed
- If folder doesn't exist, skip to the next one
