Install-Dynamics365Update.psm1
function Install-Dynamics365Update { param ( [parameter(Position=0, Mandatory=$true)] [string] $MediaDir, [string] $LogFilePath = $null, [ValidateRange(1,3600)] [int] $LogFilePullIntervalInSeconds = 30, [switch] $LogFilePullToOutput = $False ) $setupFilePath = "$mediaDir\CrmUpdateWrapper.exe"; $fileVersion = [version]( Get-Command $setupFilePath ).FileVersionInfo.FileVersion; Write-Output "Version of software to be installed: $($fileVersion.ToString())"; $msCRMRegistryValues = Get-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\MSCRM -ErrorAction Ignore; if ( !$msCRMRegistryValues ) { $errorMessage = "Dynamics 365 Server for Customer Engagement is not installed on this machine"; Write-Output $errorMessage; Throw $errorMessage; } $installedVersion = Get-Dynamics365ServerVersion; Write-Output "Currently installed: $($installedVersion.ToString())"; if ( $fileVersion.Major -ne $installedVersion.Major ) { $errorMessage = "Major version of this update does not correspond to major version of installed software"; Write-Output $errorMessage; Throw $errorMessage; } if ( $fileVersion -le $installedVersion ) { $errorMessage = "Version of this update is lower than version of installed software"; Write-Output $errorMessage; Throw $errorMessage; } if([String]::IsNullOrEmpty($logFilePath) -eq $True) { $timeStamp = ( Get-Date -Format u ).Replace(" ","-").Replace(":","-"); $logFilePath = "$env:Temp\DynamicsUpdateInstallationLog_$timeStamp.txt"; } Write-Output "$(Get-Date) Starting $setupFilePath"; $installCrmScript = { param( $setupFilePath, $logFilePath ); Write-Output "Start-Process '$setupFilePath' -ArgumentList '/q /log $logFilePath /norestart' -Wait;"; Start-Process "$setupFilePath" -ArgumentList "/q /log $logFilePath /norestart" -Wait; } $job = Start-Job -ScriptBlock $installCrmScript -ArgumentList $setupFilePath, $logFilePath; Write-Output "$(Get-Date) Started installation job, log will be saved in $logFilePath"; $lastLinesCount = 0; While ( $job.State -ne "Completed" ) { Write-Output "$(Get-Date) Waiting until CRM update installation job is done, sleeping $logFilePullIntervalInSeconds sec"; Start-Sleep $logFilePullIntervalInSeconds; if(($logFilePullToOutput -eq $True) -and ((Test-Path $logFilePath) -eq $True)) { $linesCount = (Get-Content $logFilePath | Measure-Object -Line).Lines; $newLinesCount = $linesCount - $lastLinesCount; if($newLinesCount -gt 0) { Write-Output "$(Get-Date) - new logs: $newLinesCount lines"; $lines = Get-Content $logFilePath | Select-Object -First $newLinesCount -Skip $lastLinesCount; foreach($line in $lines) { Write-Output $line; } } else { Write-Output "$(Get-Date) - no new logs"; } $lastLinesCount = $linesCount; } } Write-Output "$(Get-Date) Job is complete, output:"; Write-Output ( Receive-Job $job ); Remove-Job $job; $installedVersion = Get-Dynamics365ServerVersion; Write-Output "Currently installed: $($installedVersion.ToString())"; if ( $fileVersion -ne $installedVersion ) { if( (Test-Path $logFilePath) -eq $True) { $errorLines = Get-Content $logFilePath | Select-String -Pattern "Error" -SimpleMatch; if($null -ne $errorLines) { "Errors from install log: $logFilePath"; foreach($errorLine in $errorLines) { $errorLine; } } } $errorMessage = "Version of installed software is not the same as installed update"; Write-Output $errorMessage; Throw $errorMessage; } else { Write-Output "Installation is finished and verified successfully"; } } |