Here is the powershell script we used to regenerate CIDs in Windows 2012#View: CIDs (These must be different on all systems)ls Microsoft.PowerShell.Core\Registry::HKEY_CLASSES_ROOT\CID | select Name#reinstall MSDTC to regenerate CIDs. msdtc -uninstallsleep 5msdtc -installsleep 5Set-Service msdtc -startuptype "auto"#then reboot for changes to take effect
↧