I am new to SCOM, and I have a task that I am having trouble.
A client has a SCOM 2012 R2, with Windows Server 2012 R2, and we need to upgrade it.
I was searching if we can make an in-place upgrade, but unforunately we cannot.
So a new, Windows Server 2019 VM has to be created, if we want to upgrade to SCOM 2019.
My problem: How to export the configuration, and WHAT has to be exported, in order NOT to have any problem. I saw a couple Powershell Commands like:
**Get-SCOMRule -ManagementPack $mp | Select DisplayName, Description, Name, Enabled, Target | Export-Csv -Path Rules.csv*
Get-SCOMMonitor -ManagementPack $mp | Select DisplayName, Description, Name, Enabled, Target | Export-Csv -Path Monitors.csv*
They export Rules and Monitor Alerts in an csv format, but is that enough? What about users, groups etc?
and most important, how do you import them back?Cause I can't find any info on that.
Any help will be deeply appreciated.
Thank you!