diff --git a/docs/docs/user-guide/get-started/how-to-install.md b/docs/docs/user-guide/get-started/how-to-install.md
index df0f8f21b1..c15e403c35 100644
--- a/docs/docs/user-guide/get-started/how-to-install.md
+++ b/docs/docs/user-guide/get-started/how-to-install.md
@@ -15,7 +15,7 @@ Executing this command can take a minute or two to complete, after which the bas
## Dependencies
-However, Microsoft365DSC depends on several other modules to function properly. For example, it uses the MSCloudLoginAssistant module to delegate all authentication logic to the various workloads, it leverages a dozen Microsoft Graph PowerShell modules to interact with various configuration settings, etc. Current versions of Microsoft365DSC no longer download all the required prerequisites by default. When you install the Microsoft365DSC, you only get the core component after which you have to download all prerequisite modules as well. It is our recommendation that you run the following command to update all dependencies on the system after installing the module:
+However, Microsoft365DSC depends on several other modules to function properly. For example, it uses the MSCloudLoginAssistant module to delegate all authentication logic to the various workloads, it leverages a dozen Microsoft Graph PowerShell modules to interact with various configuration settings, etc. Current versions of Microsoft365DSC no longer download all the required prerequisites by default. When you install the Microsoft365DSC module, you only get the core component after which you have to download all prerequisite modules as well. It is our recommendation that you run the following command to update all dependencies on the system after installing the module:
```PowerShell
Update-M365DSCDependencies
@@ -41,11 +41,10 @@ Get-Module Microsoft365DSC -ListAvailable | select ModuleBase, Version
## Updating To A Newer Version
-To update an older version of Microsoft365DSC, use the **Update-Module** cmdlet and run the **Update-M365DSCDependencies** cmdlet again to update any dependencies.
+To update an older version of Microsoft365DSC, use the **Update-M365DSCModule** cmdlet. This will update the current version of Microsoft365DSC and all dependencies in one go as well as uninstalling all outdated versions.
```PowerShell
-Update-Module Microsoft365DSC
-Update-M365DSCDependencies
+Update-M365DSCModule
```
## More Information
@@ -55,7 +54,7 @@ More information about installing modules:
- Installing a PowerShell module
- Find-Module cmdlet
- Install-Module cmdlet
-- Update-Module cmdlet
+- Update-M365DSCModule cmdlet
- Save-Module cmdlet
- About PSModulePath
diff --git a/docs/docs/user-guide/get-started/troubleshooting.md b/docs/docs/user-guide/get-started/troubleshooting.md
index f974c666ae..5ace1769bd 100644
--- a/docs/docs/user-guide/get-started/troubleshooting.md
+++ b/docs/docs/user-guide/get-started/troubleshooting.md
@@ -64,3 +64,28 @@ Optionally, for improved performance, you can increase the handles and threads p
$quotaConfiguration.HandlesPerHost = 8192
$quotaConfiguration.ThreadsPerHost = 512
```
+
+
+## Error "InvalidOperation: Cannot index into a null array" when creating a report from configuration
+
+### ISSUE
+
+When creating a report from either running `New-M365DSCDeltaReport` or `New-M365DSCReportFromConfiguration`, you might receive the following error and the generated report is empty:
+
+```powershell
+Cannot index into a null array.
+At C:\Program Files\WindowsPowerShell\Modules\DSCParser\2.0.0.5\Modules\DSCParser.psm1:**456** char:9
++ $resourceType = $resource.CommandElements[0].Value
++ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ + CategoryInfo : InvalidOperation: (:) [], RuntimeException
+ + FullyQualifiedErrorId : NullArray
+```
+
+### CAUSE
+
+This issue might occur if there are multiple versions of Microsoft365DSC present on the current machine and the configuration contains nested objects.
+The nested objects are resolved from their CIM definitions, and if multiple versions of Microsoft365DSC are present, multiple versions of these CIM definitions exist.
+
+### RESOLUTION
+
+Update and install to the latest supported version of Microsoft365DSC using `Update-M365DSCModule`. This will uninstall all outdated versions and dependencies and update to the latest version available on the PowerShell Gallery.
\ No newline at end of file