AutoSPSourceBuilder.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 |
<#PSScriptInfo .VERSION 2.0.1.0 .GUID 6ba84db4-f1a9-4079-bd19-39cd044c6b11 .AUTHOR Brian Lalancette (@brianlala) .COMPANYNAME .COPYRIGHT 2019 Brian Lalancette .TAGS SharePoint .LICENSEURI .PROJECTURI https://github.com/brianlala/AutoSPSourceBuilder .ICONURI .EXTERNALMODULEDEPENDENCIES BitsTransfer .REQUIREDSCRIPTS .EXTERNALSCRIPTDEPENDENCIES .RELEASENOTES .PRIVATEDATA #> <# .SYNOPSIS Builds a SharePoint 2010/2013/2016/2019 Service Pack + Cumulative/Public Update (and optionally slipstreamed) installation source. .DESCRIPTION Builds a SharePoint 2010/2013/2016/2019 Service Pack + Cumulative/Public Update (and optionally, slipstreamed) installation source. Starting from existing (user-provided) SharePoint 2010/2013/2016/2019 installation media/files (and optional Office Web Apps / Online Server media/files), the script can download prerequisites, the specified Service Pack, and CU/PU packages for SharePoint/WAC, along with specified (optional) language packs, then extract them to a destination path structure. By default, automatically downloads the latest AutoSPSourceBuilder.xml inventory file as the source of product information (URLs, builds, naming, etc.) to the same local path as the AutoSPSourceBuilder.ps1 script. .EXAMPLE AutoSPSourceBuilder.ps1 -UpdateLocation "C:\Users\brianl\Downloads\SP" -Destination "D:\SP\2010" .EXAMPLE AutoSPSourceBuilder.ps1 -SourceLocation E: -Destination "C:\Source\SP\2010" -CumulativeUpdate "December 2011" -Languages fr-fr,es-es .EXAMPLE AutoSPSourceBuilder.ps1 -SharePointVersion 2013 -Destination "C:\SP" -Verbose -UseExistingLocalXML .PARAMETER SharePointVersion The version of SharePoint for which to download updates. Valid options are 2010, 2013, 2016 and 2019. This parameter is mandatory. .PARAMETER SourceLocation The location (path, drive letter, etc.) where the SharePoint binary files are located. You can specify a UNC path (\\server\share\SP\2010), a drive letter (E:) or a local/mapped folder (Z:\SP\2010). If you don't provide a value, the script will not attempt to do any slipstreaming and will only download updates (and build out some of the folder structure). .PARAMETER Destination The file path for the final slipstreamed SP2010/SP2013/2016/2019 installation files. The default value is $env:SystemDrive\SP\201x (where 201x is the version of SharePoint we want to download/integrate updates from). .PARAMETER UpdateLocation The optional file path where the downloaded service pack and cumulative update files are located, or where they should be placed in case they need to be downloaded. It's recommended to omit this parameter in order to use the default value <Destination>\Updates (so, typically C:\SP\201x\Updates). .PARAMETER GetPrerequisites Switch that specifies whether to attempt to download all prerequisite files for the selected product, which can be subsequently used to perform an offline installation. By default prerequisites are not downloaded. .PARAMETER CumulativeUpdate The name of the cumulative update (CU) you'd like to integrate. The format should be e.g. "December 2011". If no value is provided, the script will prompt for an available CU name. .PARAMETER WACSourceLocation The location (path, drive letter, etc.) where the Office Web Apps / Online Server binary files are located. You can specify a UNC path (\\server\share\SP\2010), a drive letter (E:) or a local/mapped folder (Z:\WAC). If no value is provided, the script will simply skip the WAC integration altogether. .PARAMETER Languages A comma-separated list of languages (in the culture ID format, e.g. de-de,fr-fr) used to specify which language packs to download. If no languages are provided, and PromptForLanguages isn't specified, the script will simply skip language pack/update integration altogether. .PARAMETER PromptForLanguages This switch indicates that the script should prompt the user for which languages to download updates (and language packs) for. If this switch is omitted, and no languages have been specified on the command line, languages are skipped entirely. .PARAMETER UseExistingLocalXML If you want to use a custom or pre-existing AutoSPSourceBuilder.XML file, or simply want to skip downloading the official one on-the-fly, use this switch parameter. .LINK https://github.com/brianlala/autospsourcebuilder https://github.com/brianlala/autospinstaller http://www.toddklindt.com/sp2010builds .NOTES Created & maintained by Brian Lalancette (@brianlala), 2012-2018. #> [CmdletBinding()] param ( [Parameter(Mandatory = $true)][ValidateSet("2010", "2013", "2016", "2019")] [String]$SharePointVersion, [Parameter(Mandatory = $false)][ValidateNotNullOrEmpty()] [String]$SourceLocation, [Parameter(Mandatory = $false)][ValidateNotNullOrEmpty()] [String]$Destination = $env:SystemDrive + "\SP\$SharePointVersion", [Parameter(Mandatory = $false)][ValidateNotNullOrEmpty()] [String]$UpdateLocation, [Parameter(Mandatory = $false)] [Switch]$GetPrerequisites, [Parameter(Mandatory = $false)][ValidateNotNullOrEmpty()] [String]$CumulativeUpdate, [Parameter(Mandatory = $false)][ValidateNotNullOrEmpty()] [String]$WACSourceLocation, [Parameter(Mandatory = $false)][ValidateNotNullOrEmpty()] [Array]$Languages, [Parameter(Mandatory = $false)] [switch]$PromptForLanguages, [Parameter(Mandatory = $false)] [switch]$UseExistingLocalXML = $false ) #region Functions # =================================================================================== # Func: Pause # Desc: Wait for user to press a key - normally used after an error has occured or input is required # =================================================================================== Function Pause($action, $key) { # From http://www.microsoft.com/technet/scriptcenter/resources/pstips/jan08/pstip0118.mspx if ($key -eq "any" -or ([string]::IsNullOrEmpty($key))) { $actionString = "Press any key to $action..." Write-Host $actionString $null = $host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown") } else { $actionString = "Enter `"$key`" to $action" $continue = Read-Host -Prompt $actionString if ($continue -ne $key) {pause $action $key} } } Function WriteLine { Write-Host -ForegroundColor White "--------------------------------------------------------------" } Function DownloadPackage { Param ( [Parameter()][string]$url, [Parameter()][string]$ExpandedFile, [Parameter()][string]$DestinationFolder, [Parameter()][string]$destinationFile ) $file = $url.Split('/')[-1] If (!$destinationFile) {$destinationFile = $file} If (!$expandedFile) {$expandedFile = $file} Try { # Check if destination file or its expanded version already exists If (Test-Path "$DestinationFolder\$expandedFile") # Check if the expanded file is already there { Write-Host -ForegroundColor DarkGray " - File $expandedFile exists, skipping download." } ElseIf (Test-Path "$DestinationFolder\$destinationFile") # Check if the packed downloaded file is already there (in case of a CU) { Write-Host -ForegroundColor DarkGray " - File $destinationFile exists, skipping download." } ElseIf ((($file -eq $destinationFile) -or ("$file.zip" -eq $destinationFile)) -and ((Test-Path "$DestinationFolder\$file") -or (Test-Path "$DestinationFolder\$file.zip")) -and !((Get-Item $file -ErrorAction SilentlyContinue).Mode -eq "d----")) # Check if the packed downloaded file is already there (in case of a CU or Prerequisite) { Write-Host -ForegroundColor DarkGray " - File $file exists, skipping download." If (!($file -like "*.zip")) { # Give the CU package a .zip extension so we can work with it like a compressed folder Rename-Item -Path "$DestinationFolder\$file" -NewName ($file+".zip") -Force -ErrorAction SilentlyContinue } } Else # Go ahead and download the missing package { # Begin download Write-Verbose -Message " - Attempting to download from $url..." Import-Module BitsTransfer $job = Start-BitsTransfer -Asynchronous -Source $url -Destination "$DestinationFolder\$destinationFile" -DisplayName "Downloading `'$file`' to $DestinationFolder\$destinationFile" -Priority Foreground -Description "From $url..." -RetryInterval 60 -RetryTimeout 3600 -ErrorVariable err # When proxy is enabled # $job = Start-BitsTransfer -Asynchronous -Source $url -Destination "$DestinationFolder\$destinationFile" -DisplayName "Downloading `'$file`' to $DestinationFolder\$destinationFile" -Priority Foreground -Description "From $url..." -RetryInterval 60 -RetryTimeout 3600 -ProxyList canatsrv06:80 -ProxyUsage Override -ProxyAuthentication Ntlm -ProxyCredential $proxyCredentials -ErrorVariable err Write-Host " - Connecting..." -NoNewline while ($job.JobState -eq "Connecting") { Write-Host "." -NoNewline Start-Sleep -Milliseconds 500 } Write-Host "." If ($err) {Throw} Write-Host " - Downloading $file..." while ($job.JobState -ne "Transferred") { $percentDone = "{0:N2}" -f $($job.BytesTransferred / $job.BytesTotal * 100) + "% - $($job.JobState)" Write-Host $percentDone -NoNewline Start-Sleep -Milliseconds 500 $backspaceCount = (($percentDone).ToString()).Length for ($count = 1; $count -le $backspaceCount; $count++) {Write-Host "`b `b" -NoNewline} if ($job.JobState -like "*Error") { Write-Host -ForegroundColor Yellow " - An error occurred downloading $file, retrying..." Resume-BitsTransfer -BitsJob $job -Asynchronous | Out-Null } } Write-Host " - Completing transfer..." Complete-BitsTransfer -BitsJob $job Write-Host " - Done!" } } Catch { Write-Output $err Write-Debug $_ Write-Warning " - An error occurred downloading `'$file`'" $global:errorWarning = $true break } } Function Expand-Zip ($InputFile, $DestinationFolder) { $Shell = New-Object -ComObject Shell.Application $fileZip = $Shell.Namespace($InputFile) $Location = $Shell.Namespace($DestinationFolder) $Location.Copyhere($fileZip.items()) } Function Read-Log() { $log = Get-ChildItem -Path (Get-Item $env:TEMP).FullName | Where-Object {$_.Name -like "opatchinstall*.log"} | Sort-Object -Descending -Property "LastWriteTime" | Select-Object -first 1 If ($null -eq $log) { Write-Host `n Throw " - Could not find extraction log file!" } # Get error(s) from log $lastError = $log | select-string -SimpleMatch -Pattern "OPatchInstall: The extraction of the files failed" | Select-Object -Last 1 If ($lastError) { Write-Host `n Write-Warning $lastError.Line $global:errorWarning = $true Invoke-Item $log.FullName Throw " - Review the log file and try to correct any error conditions." } Remove-Variable -Name log -ErrorAction SilentlyContinue } Function Remove-ReadOnlyAttribute ($Path) { ForEach ($item in (Get-ChildItem -File -Path $Path -Recurse -ErrorAction SilentlyContinue)) { $attributes = @((Get-ItemProperty -Path $item.FullName).Attributes) If ($attributes -match "ReadOnly") { # Set the file to just have the 'Archive' attribute Write-Host " - Removing Read-Only attribute from file: $item" Set-ItemProperty -Path $item.FullName -Name Attributes -Value "Archive" } } } # ==================================================================================== # Func: EnsureFolder # Desc: Checks for the existence and validity of a given path, and attempts to create if it doesn't exist. # From: Modified from patch 9833 at http://autospinstaller.codeplex.com/SourceControl/list/patches by user timiun # ==================================================================================== Function EnsureFolder ($Path) { If (!(Test-Path -Path $Path -PathType Container)) { Write-Host -ForegroundColor White " - $Path doesn't exist; creating..." Try { New-Item -Path $Path -ItemType Directory | Out-Null } Catch { Write-Warning " - $($_.Exception.Message)" Throw " - Could not create folder $Path!" $global:errorWarning = $true } } } #endregion #region Admin Check # First check if we are running this under an elevated session. Pulled from the script at http://gallery.technet.microsoft.com/scriptcenter/1b5df952-9e10-470f-ad7c-dc2bdc2ac946 If (!([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { Write-Warning " - You should run this script under an elevated PowerShell prompt. Launch an elevated PowerShell prompt by right-clicking the PowerShell shortcut and selecting `"Run as Administrator`"." Write-Warning " - Running without elevation may cause certain things to fail, e.g. file extraction." Pause -action "proceed if you are sure this is OK, or Ctrl-C to exit" -key "y" } #endregion #region OS Check # Then check if we are running Server 2012, Windows 8 or newer (e.g. Windows 10) $windowsMajorVersion,$windowsMinorVersion,$null = (Get-WmiObject Win32_OperatingSystem).Version -split "\." if (($windowsMajorVersion -lt 6 -or (($windowsMajorVersion -eq 6) -and ($windowsMinorVersion -lt 2)) -and $windowsMajorVersion -ne 10) -and ($Languages.Count -gt 0)) { Write-Warning "You should be running Windows Server 2012 or Windows 8 (minimum) to get the full functionality of this script." Write-Host -ForegroundColor Yellow " - Some features (e.g. image extraction) may not work otherwise." Pause "proceed if you are sure this is OK, or Ctrl-C to exit" "y" } #endregion #region Start $oldTitle = $Host.UI.RawUI.WindowTitle $Host.UI.RawUI.WindowTitle = "--AutoSPSourceBuilder--" $0 = $myInvocation.MyCommand.Definition $dp0 = [System.IO.Path]::GetDirectoryName($0) # Only needed if proxy is enabled # $proxyCredentials = (Get-Credential -Message "Enter credentials for proxy server:" -UserName "$env:USERDOMAIN\$env:USERNAME") Write-Host -ForegroundColor Green " -- AutoSPSourceBuilder SharePoint Update Download/Integration Utility --" if ($UseExistingLocalXML) { Write-Warning "'UseExistingLocalXML' specified; skipping download of AutoSPSourceBuilder.xml, and attempting to use local copy at '$dp0\AutoSPSourceBuilder.xml'." Write-Warning "This could mean you won't have the latest updates in your local copy." Write-Warning "To use the latest online AutoSPSourceBuilder.xml inventory file, omit the -UseExistingLocalXML switch." } else { # Get latest official XML file from the master GitHub repo Write-Output " - Grabbing latest AutoSPSourceBuilder.xml patch inventory file..." Start-BitsTransfer -DisplayName "Downloading AutoSPSourceBuilder.xml patch inventory file" -Description "From 'https://raw.githubusercontent.com/brianlala/AutoSPSourceBuilder/master/'..." -Destination "$dp0\AutoSPSourceBuilder.xml" -Priority Foreground -Source "https://raw.githubusercontent.com/brianlala/AutoSPSourceBuilder/master/AutoSPSourceBuilder.xml" -RetryInterval 60 -RetryTimeout 3600 if (!$?) { throw "Could not download AutoSPSourceBuilder.xml file!" } } [xml]$xml = (Get-Content -Path "$dp0\AutoSPSourceBuilder.xml" -ErrorAction SilentlyContinue) if ([string]::IsNullOrEmpty($xml)) { throw "Required AutoSPSourceBuilder.xml file not found! Please ensure it's located in the same folder as the AutoSPSourceBuilder.ps1 script ('$dp0')." } $spAvailableVersions = $xml.Products.Product.Name | Where-Object {$_ -like "SP*"} $spAvailableVersionNumbers = $spAvailableVersions -replace "SP","" #endregion #region Determine Product Version and Languages Requested if (!([string]::IsNullOrEmpty($SharePointVersion))) { Write-Host " - SharePoint $SharePointVersion specified on the command line." $spYear = $SharePointVersion } $Destination = $Destination.TrimEnd("\") # Ensure the Destination has the year at the end of the path, in case we forgot to type it in when/if prompted if (!($Destination -like "*$spYear")) { $Destination = $Destination+"\"+$spYear } Write-Verbose -Message "Destination is `"$Destination`"" if ([string]::IsNullOrEmpty($UpdateLocation)) { $UpdateLocation = $Destination+"\Updates" } Write-Verbose -Message "Update location is `"$UpdateLocation`"" if ($SourceLocation) { $sourceDir = $SourceLocation.TrimEnd("\") Write-Host " - Checking for $sourceDir\Setup.exe and $sourceDir\PrerequisiteInstaller.exe..." $sourceFound = ((Test-Path -Path "$sourceDir\Setup.exe") -and (Test-Path -Path "$sourceDir\PrerequisiteInstaller.exe")) # Inspired by http://vnucleus.com/2011/08/alphabet-range-sequences-in-powershell-and-a-usage-example/ while (!$sourceFound) { foreach ($driveLetter in 68..90) # Letters from D-Z { # Check for the SharePoint DVD in all possible drive letters $sourceDir = "$([char]$driveLetter):" Write-Host " - Checking for $sourceDir\Setup.exe and $sourceDir\PrerequisiteInstaller.exe..." $sourceFound = ((Test-Path -Path "$sourceDir\Setup.exe") -and (Test-Path -Path "$sourceDir\PrerequisiteInstaller.exe")) If ($sourceFound -or $driveLetter -ge 90) {break} } break } if (!$sourceFound) { Write-Warning " - The correct SharePoint source files/media were not found!" Write-Warning " - Please insert/mount the correct media, or specify a valid path." $global:errorWarning = $true break Pause "exit" exit } else { Write-Host " - Source found in $sourceDir." $spVer, $null, $spBuild, $null = (Get-Item -Path "$sourceDir\setup.exe").VersionInfo.ProductVersion -split "\." # Create a hash table with 'wave' to product year mappings $spYears = @{"14" = "2010"; "15" = "2013"; "16" = "2016"} # Can't use this hashtable to map SharePoint 2019 versions because it uses version 16 as well $spYear = $spYears.$spVer # Accomodate SharePoint 2019 (uses the same major version number, but 5-digit build numbers) if ($spBuild.Length -eq 5) { $spYear = "2019" } If (!$sourceDir -and ([string]::IsNullOrEmpty($SharePointVersion))) { Write-Warning " - Cannot determine version of SharePoint setup binaries, and SharePointVersion was not specified." $global:errorWarning = $true break Pause "exit" exit } Write-Host " - SharePoint $spYear detected." if ($spYear -eq "2013") { $installerVer = (Get-Command "$sourceDir\setup.dll").FileVersionInfo.ProductVersion $null,$null,[int]$build,$null = $installerVer -split "\." If ($build -ge 4569) # SP2013 SP1 { $sp2013SP1 = $true Write-Host " - Service Pack 1 detected." } } } if (!($sourceDir -eq "$Destination\SharePoint")) { WriteLine Write-Host " - (Robo-)copying files from $sourceDir to $Destination\SharePoint..." Start-Process -FilePath robocopy.exe -ArgumentList "`"$sourceDir`" `"$Destination\SharePoint`" /E /Z /ETA /NDL /NFL /NJH /XO /A-:R" -Wait -NoNewWindow Write-Host " - Done copying original files to $Destination\SharePoint." WriteLine } } else { Write-Host " - No source location specified; updates will be downloaded but slipstreaming will be skipped." if ($SharePointVersion) { Write-Host " - SharePoint $SharePointVersion specified on the command line." $spYear = $SharePointVersion } else { Write-Verbose -Message "`$SharePointVersion not specified; prompting..." Write-Host -ForegroundColor Cyan " - Please select the version of SharePoint from the list that appears..." Start-Sleep -Seconds 1 while ([string]::IsNullOrEmpty($spYear)) { Start-Sleep -Seconds 1 $spYear = $spAvailableVersionNumbers | Sort-Object | Out-GridView -Title "Please select the version of SharePoint to download updates for:" -PassThru if ($spYear.Count -gt 1) { Write-Warning "Please only select ONE version. Re-prompting..." Remove-Variable -Name spYear -Force -ErrorAction SilentlyContinue } } Write-Host " - SharePoint $spYear selected." } } if ($Languages.Count -lt 1) { Write-Host " - No languages specified on the command line.." -NoNewline if ($PromptForLanguages) { Start-Sleep -Seconds 1 Write-Host "Will prompt for language(s)" -NoNewline } Write-Host "." } #endregion #region Determine Update Requested $spNode = $xml.Products.Product | Where-Object {$_.Name -eq "SP$spYear"} # Figure out which CU we want, but only if there are any available [array]$spCuNodes = $spNode.CumulativeUpdates.ChildNodes | Where-Object {$_.NodeType -ne "Comment"} if ((!([string]::IsNullOrEmpty($CumulativeUpdate))) -and !($spNode.CumulativeUpdates.CumulativeUpdate | Where-Object {$_.Name -eq $CumulativeUpdate})) { Write-Warning " - Invalid entry for update: `"$CumulativeUpdate`"" Remove-Variable -Name CumulativeUpdate -ErrorAction SilentlyContinue } # Only prompt for an update if there are actually any to choose from, and if we haven't already specified one on the command line if (($spCuNodes).Count -ge 1 -and ([string]::IsNullOrEmpty($CumulativeUpdate))) { Start-Sleep -Seconds 1 Write-Host -ForegroundColor Cyan " - Please select ONE available $(if ($spYear -eq "2016") {"Public"} else {"Cumulative"}) Update from the list that appears..." while ([string]::IsNullOrEmpty($selectedCumulativeUpdate)) { Start-Sleep -Seconds 1 $selectedCumulativeUpdate = $spNode.CumulativeUpdates.CumulativeUpdate.Name | Select-Object -Unique | Out-GridView -Title "Please select an available $(if ($spYear -ge 2016) {"Public"} else {"Cumulative"}) Update for SharePoint $spYear`:" -PassThru if ($selectedCumulativeUpdate.Count -gt 1) { Write-Warning "Please only select ONE update. Re-prompting..." Remove-Variable -Name selectedCumulativeUpdate -Force -ErrorAction SilentlyContinue } } $CumulativeUpdate = $selectedCumulativeUpdate Write-Host " - SharePoint $spYear $CumulativeUpdate $(if ($spYear -ge 2016) {"Public"} else {"Cumulative"}) Update selected." } [array]$spCU = $spNode.CumulativeUpdates.CumulativeUpdate | Where-Object {$_.Name -eq $CumulativeUpdate} if ($spCU.Count -ge 1) # Only do this stuff if we actually have requested a CU { $spCUName = $spCU[0].Name $spCUBuild = $spCU[0].Build if ($spYear -eq "2010") # For SP2010 service packs { $null,$null,$updateSubBuild,$null = $spCU[0].Build -split "\." # Get the service pack required, based on the sp* value in the CU URL - the URL will refer to the *upcoming* service pack and not the service pack required to apply the CU... if ($spCU[0].Url -like "*sp2*" -and $CumulativeUpdate -ne "August 2013" -and $CumulativeUpdate -ne "October 2013") # As we would probably want at least SP1 if we are installing a CU prior to the August 2013 CU for SP2010 { $spServicePack = $spNode.ServicePacks.ServicePack | Where-Object {$_.Name -eq "SP1"} } elseif ($spCU[0].Url -like "*sp3*" -or $CumulativeUpdate -eq "August 2013" -or $updateSubBuild -gt 7140) # We probably want SP2 if we are installing the August 2013 CU for SP2010, or a version newer than 14.0.7140.5000 { $spServicePack = $spNode.ServicePacks.ServicePack | Where-Object {$_.Name -eq "SP2"} } } elseif ($spYear -eq "2013") # For SP2013 service packs { if ($sp2013SP1) { $spServicePack = $spNode.ServicePacks.ServicePack | Where-Object {$_.Name -eq "SP1"} } } # Check if we are requesting the August 2014 CU, which sure enough, isn't cumulative and requires SP1 + July 2014 CU if ($CumulativeUpdate -eq "August 2014") { Write-Host " - The $CumulativeUpdate CU requires the July 2014 CU to be present first; will now attempt to integrate both." [array]$spCU = ($spNode.CumulativeUpdates.CumulativeUpdate | Where-Object {$_.Name -eq "July 2014"}), $spCU } } #endregion #region SharePoint Prerequisites if ($GetPrerequisites)## -and (!([string]::IsNullOrEmpty($SourceLocation)))) { WriteLine $spPrerequisiteNode = $spNode.Prerequisites EnsureFolder -Path "$Destination\SharePoint\PrerequisiteInstallerFiles" foreach ($prerequisite in $spPrerequisiteNode.Prerequisite) { Write-Host " - Getting prerequisite `"$($prerequisite.Name)`"..." # Because MS added a newer WcfDataServices.exe (yes, with the same filename) to the prerequisites list with SP2013 SP1, we need a special case here to ensure it's downloaded with a different name if ($prerequisite.Name -eq "Microsoft WCF Data Services 5.6" -and $spYear -eq "2013") { DownloadPackage -Url $($prerequisite.Url) -ExpandedFile "WcfDataServices56.exe" -DestinationFolder "$Destination\SharePoint\PrerequisiteInstallerFiles" -DestinationFile "WcfDataServices56.exe" } else { DownloadPackage -Url $($prerequisite.Url) -DestinationFolder "$Destination\SharePoint\PrerequisiteInstallerFiles" } } # Apply KB3087184 for SharePoint 2013 installer # KB3087184 can be considered a "prerequisite" for successful installation of SharePoint 2013 on a server that already has the .Net Framework 4.6 installed # Per https://support.microsoft.com/en-us/help/3087184/sharepoint-2013-or-project-server-2013-setup-error-if-the-net-framewor If ($spYear -eq "2013") { Write-Host " - Checking version of '$Destination\SharePoint\updates\svrsetup.dll'..." # Check to see if we have already patched/replaced svrsetup.dll $svrSetupDll = Get-Item -Path "$Destination\SharePoint\updates\svrsetup.dll" -ErrorAction SilentlyContinue # Check for presence and version of svrsetup.dll if ($svrSetupDll) { $null,$null,[int]$svrSetupDllBuild,$null = $svrSetupDll.VersionInfo.ProductVersion -split "\." } else { Write-Host " - '$Destination\SharePoint\updates\svrsetup.dll' was not found (or version could not be determined); attempting to update..." } if ($null -eq $svrSetupDllBuild -or ($svrSetupDllBuild -lt 4709)) # 4709 is the version substring/build of the patched svrsetup.dll { if (Test-Path -Path "$Destination\SharePoint\PrerequisiteInstallerFiles\svrsetup_15-0-4709-1000_x64.zip" -ErrorAction SilentlyContinue) { Write-Host " - Attempting to patch SharePoint 2013 installation source with updated svrsetup.dll from KB3087184..." Write-Host " - Per https://support.microsoft.com/en-us/help/3087184/sharepoint-2013-or-project-server-2013-setup-error-if-the-net-framewor" # Rename the original file Write-Host " - Copying patched version of svrsetup.dll to '$Destination\SharePoint\updates'..." Expand-Zip -InputFile "$Destination\SharePoint\PrerequisiteInstallerFiles\svrsetup_15-0-4709-1000_x64.zip" -DestinationFolder "$Destination\SharePoint\updates" Write-Host " - Done." $patchedForKB3087184 = $true } else { Write-Host -ForegroundColor Yellow " - Package for KB3087184 was not found; skipping patching of SharePoint $spYear installation source." } } else { Write-Host -ForegroundColor DarkGray " - `"$Destination\SharePoint\updates\svrsetup.dll`" already exists and is already updated ($svrSetupDllBuild)." $patchedForKB3087184 = $true } } WriteLine } else { Write-Verbose -Message "Skipping prerequisites since GetPrerequisites or SourceLocation were not specified." } #endregion #region Prompt for Language Packs if (($PromptForLanguages)) { $lpNode = $spNode.LanguagePacks # Prompt for an available language pack $availableLanguageNames = $lpNode.LanguagePack | Where-Object {$null -ne $_.Url} | Select-Object Name | Sort-Object Name Write-Host -ForegroundColor Cyan " - Please select one or more available language pack(s) from the list that appears..." Start-Sleep -Seconds 2 [array]$Languages = $availableLanguageNames.Name | Out-GridView -Title "Please select one or more available language pack(s). Hold down Ctrl to select multiple, or click Cancel to skip:" -PassThru if ($Languages.Count -eq 0) { Write-Host " - No languages selected." } } #endregion #region SharePoint Service Pack If ($spServicePack -and ($spYear -ne "2013") -and (!([string]::IsNullOrEmpty($SourceLocation)))) # Exclude SharePoint 2013 service packs as slipstreaming support has changed { if ($spServicePack.Name -eq "SP1" -and $spYear -eq "2010") {$spMspCount = 40} # Service Pack 1 should have 40 .msp files if ($spServicePack.Name -eq "SP2" -and $spYear -eq "2010") {$spMspCount = 47} # Service Pack 2 should have 47 .msp files else {$spMspCount = 0} WriteLine # Check if a SharePoint service pack already appears to be included in the source If ((Get-ChildItem "$sourceDir\Updates" -Filter *.msp).Count -lt $spMspCount) # Checking for specific number of MSP patch files in the \Updates folder { Write-Host " - $($spServicePack.Name) seems to be missing, or incomplete in $sourceDir\; downloading..." # Set the subfolder name for easy update build & name identification, for example, "15.0.4481.1005 (March 2013)" $spServicePackSubfolder = $spServicePack.Build+" ("+$spServicePack.Name+")" EnsureFolder -Path "$UpdateLocation\$spServicePackSubfolder" DownloadPackage -Url $($spServicePack.Url) -DestinationFolder "$UpdateLocation\$spServicePackSubfolder" Remove-ReadOnlyAttribute -Path "$Destination\SharePoint\Updates" # Extract SharePoint service pack patch files $spServicePackExpandedFile = $($spServicePack.Url).Split('/')[-1] Write-Verbose -Message " - Extracting from '$UpdateLocation\$spServicePackSubfolder\$spServicePackExpandedFile'" Write-Host " - Extracting SharePoint $($spServicePack.Name) patch files..." -NoNewline Start-Process -FilePath "$UpdateLocation\$spServicePackSubfolder\$spServicePackExpandedFile" -ArgumentList "/extract:`"$Destination\SharePoint\Updates`" /passive" -Wait -NoNewWindow Read-Log Write-Host "done!" } Else {Write-Host " - $($spServicePack.Name) appears to be already slipstreamed into the SharePoint binary source location."} ## Extract SharePoint w/SP1 files (future functionality?) ## Start-Process -FilePath "$UpdateLocation\en_sharepoint_server_2010_with_service_pack_1_x64_759775.exe" -ArgumentList "/extract:$Destination\SharePoint /passive" -NoNewWindow -Wait -NoNewWindow WriteLine } else { Write-Verbose -Message "Not processing service pack." } #endregion #region March PU for SharePoint 2013 # Since the March 2013 PU for SharePoint 2013 is considered the baseline build for all patches going forward (prior to SP1), we need to download and extract it if we are looking for a SP2013 CU dated March 2013 or later If ($spCU.Count -ge 1 -and $spCU[0].Name -ne "December 2012" -and $spYear -eq "2013" -and !$sp2013SP1 -and !([string]::IsNullOrEmpty($SourceLocation))) { WriteLine $march2013PU = $spNode.CumulativeUpdates.CumulativeUpdate | Where-Object {$_.Name -eq "March 2013"} Write-Host " - Getting SharePoint $spYear baseline update $($march2013PU.Name) PU:" $march2013PUFile = $($march2013PU.Url).Split('/')[-1] if ($march2013PU.Url -like "*zip.exe") { $march2013PUFileIsZip = $true $march2013PUFile += ".zip" } # Set the subfolder name for easy update build & name identification, for example, "15.0.4481.1005 (March 2013)" $updateSubfolder = $march2013PU.Build+" ("+$march2013PU.Name+")" EnsureFolder -Path "$UpdateLocation\$updateSubfolder" DownloadPackage -Url $($march2013PU.Url) -ExpandedFile $($march2013PU.ExpandedFile) -DestinationFolder "$UpdateLocation\$updateSubfolder" -destinationFile $march2013PUFile # Expand PU executable to $UpdateLocation\$updateSubfolder If (!(Test-Path "$UpdateLocation\$updateSubfolder\$($march2013PU.ExpandedFile)") -and $march2013PUFileIsZip) # Ensure the expanded file isn't already there, and the PU is a zip { $march2013PUFileZipPath = Join-Path -Path "$UpdateLocation\$updateSubfolder" -ChildPath $march2013PUFile Write-Host " - Expanding $($march2013PU.Name) Public Update (single file)..." # Remove any pre-existing hotfix.txt file so we aren't prompted to replace it by Expand-Zip and cause our script to pause if (Test-Path -Path "$UpdateLocation\$updateSubfolder\hotfix.txt" -ErrorAction SilentlyContinue) { Remove-Item -Path "$UpdateLocation\$updateSubfolder\hotfix.txt" -Confirm:$false -ErrorAction SilentlyContinue } Expand-Zip -InputFile $march2013PUFileZipPath -DestinationFolder "$UpdateLocation\$updateSubfolder" } Remove-ReadOnlyAttribute -Path "$Destination\SharePoint\Updates" $march2013PUTempFolder = "$Destination\SharePoint\Updates\March2013PU_TEMP" # Remove any existing .xml or .msp files foreach ($existingItem in (Get-ChildItem -Path $march2013PUTempFolder -ErrorAction SilentlyContinue)) { $existingItem | Remove-Item -Force -Confirm:$false } # Extract SharePoint PU files to $march2013PUTempFolder Write-Verbose -Message " - Extracting from '$UpdateLocation\$updateSubfolder\$($march2013PU.ExpandedFile)'" Write-Host " - Extracting $($march2013PU.Name) Public Update patch files..." -NoNewline Start-Process -FilePath "$UpdateLocation\$updateSubfolder\$($march2013PU.ExpandedFile)" -ArgumentList "/extract:`"$march2013PUTempFolder`" /passive" -Wait -NoNewWindow Read-Log Write-Host "done!" # Now that we have a supported way to slispstream BOTH the March 2013 PU as well as a subsequent CU (per http://blogs.technet.com/b/acasilla/archive/2014/03/09/slipstream-sharepoint-2013-with-march-pu-cu.aspx), let's make it happen. Write-Host " - Processing $($march2013PU.Name) Public Update patch files (to allow slipstreaming with a later CU)..." -NoNewline # Grab every file except for the eula.txt (or any other text files) and any pre-existing renamed files foreach ($item in (Get-ChildItem -Path "$march2013PUTempFolder" | Where-Object {$_.Name -notlike "*.txt" -and $_.Name -notlike "_*SP0"})) { $prefix,$extension = $item -split "\." $newName = "_$prefix-SP0.$extension" if (Test-Path -Path "$march2013PUTempFolder\$newName") { Remove-Item -Path "$march2013PUTempFolder\$newName" -Force -Confirm:$false } Rename-Item -Path "$($item.FullName)" -NewName $newName -ErrorAction Inquire } # Move March 2013 PU files up into \Updates folder foreach ($item in (Get-ChildItem -Path "$march2013PUTempFolder")) { $item | Move-Item -Destination "$Destination\SharePoint\Updates" -Force } Remove-Item -Path $march2013PUTempFolder -Force -Confirm:$false Write-Host "done!" WriteLine } #endregion #region SharePoint Updates If ($spCU.Count -ge 1) { $null,$null,[int]$spServicePackBuildNumber,$null = $spServicePack.Build -split "\." $null,$null,[int]$spCUBuildNumber,$null = $spCUBuild -split "\." if (($spCU.Url[0] -like "*`/$($spServicePack.Name)`/*") -and ($spServicePackBuildNumber -gt $spCUBuildNumber)) # New; only get the CU if its URL doesn't contain the service pack we already have and if the build is older, as it will likely be older { Write-Host -ForegroundColor DarkGray " - The $($spCU.Name[0]) update appears to be older than the SharePoint $spYear service pack or binaries, skipping." # Mark that the CU, although requested, has been skipped for the reason above. Used so that the output .txt file report remains accurate. $spCUSkipped = $true } else { WriteLine foreach ($spCUpackage in $spCU) { $spCUpackageIndex ++ $spCUPackageName = $spCUpackage.Name $spCUPackageBuild = $spCUpackage.Build $spCUFile = $($spCUPackage.Url).Split('/')[-1] Write-Host " - Getting SharePoint $spYear $($spCUPackageName) update file ($spCUFile):" if ($spCUPackage.Url -like "*zip.exe") { $spCuFileIsZip = $true $spCuFile += ".zip" } # Set the subfolder name for easy update build & name identification, for example, "15.0.4481.1005 (March 2013)" $updateSubfolder = $spCUPackageBuild+" ("+$spCUPackageName+")" EnsureFolder -Path "$UpdateLocation\$updateSubfolder" DownloadPackage -Url $($spCUPackage.Url) -ExpandedFile $($spCUPackage.ExpandedFile) -DestinationFolder "$UpdateLocation\$updateSubfolder" -destinationFile $spCuFile # Only do this if we are interested in slipstreaming, e.g. if we have a $SourceLocation if (!([string]::IsNullOrEmpty($SourceLocation))) { # Expand CU executable to $UpdateLocation\$updateSubfolder if (!(Test-Path "$UpdateLocation\$updateSubfolder\$($spCUPackage.ExpandedFile)") -and $spCuFileIsZip) # Ensure the expanded file isn't already there, and the CU is a zip { $spCuFileZipPath = Join-Path -Path "$UpdateLocation\$updateSubfolder" -ChildPath $spCuFile Write-Host " - Expanding $spCuFile $(if ($spYear -ge 2016) {"Public"} else {"Cumulative"}) Update (single file)..." # Remove any pre-existing hotfix.txt file so we aren't prompted to replace it by Expand-Zip and cause our script to pause if (Test-Path -Path "$UpdateLocation\$updateSubfolder\hotfix.txt" -ErrorAction SilentlyContinue) { Remove-Item -Path "$UpdateLocation\$updateSubfolder\hotfix.txt" -Confirm:$false -ErrorAction SilentlyContinue } Expand-Zip -InputFile $spCuFileZipPath -DestinationFolder "$UpdateLocation\$updateSubfolder" } Remove-ReadOnlyAttribute -Path "$Destination\SharePoint\Updates" # Extract SharePoint CU files to $Destination\SharePoint\Updates (but only if the source file is an .exe) if ($spCUPackage.ExpandedFile -like "*.exe") { # Assuming this is the the "launcher" package and the only one with an .exe extension. This is to differentiate from the ubersrv*.cab files included recently as part of CUs [array]$spCULaunchers += $spCUPackage.ExpandedFile } if ($spCUpackageIndex -eq $spCU.Count) # Now that all packages have been downloaded we can call the launcher .exe to extract the CU { if ($spYear -eq "2013") { Write-Host -ForegroundColor Cyan " - NOTE: SP2013 updates can take a VERY long time to extract, so please be patient!" } Write-Host " - Extracting $($spCUName) $(if ($spYear -ge 2016) {"Public"} else {"Cumulative"}) Update patch files..." foreach ($spCULauncher in $spCULaunchers) { Write-Verbose -Message " - Extracting from '$UpdateLocation\$updateSubfolder\$spCULauncher'" Write-Host " - $spCULauncher..." -NoNewline Start-Process -FilePath "$UpdateLocation\$updateSubfolder\$spCULauncher" -ArgumentList "/extract:`"$Destination\SharePoint\Updates`" /passive" -Wait -NoNewWindow Write-Host "done!" Read-Log } Write-Host " - Extracting update patch files done!" } } else { Write-Verbose -Message "Skipping slipstreaming since no source location was specified." } WriteLine } } } else { Write-Verbose -Message "Skipping SharePoint updates since no SharePoint $spYear updates were found." } #endregion #region Office Web Apps / Online Server if ($spYear -le 2013) {$wacProductName = "Office Web Apps"; $wacNodeName = "OfficeWebApps"} elseif ($spYear -ge 2016) {$wacProductName = "Office Online Server"; $wacNodeName = "OfficeOnlineServer"} if ($WACSourceLocation) { $wacNode = $xml.Products.Product | Where-Object {$_.Name -eq "$wacNodeName$spYear"} $wacServicePack = $wacNode.ServicePacks.ServicePack | Where-Object {$_.Name -eq $spServicePack.Name} # To match the chosen SharePoint service pack if ($wacServicePack.Name -eq "SP1" -and $spYear -eq "2010") {$wacMspCount = 16} if ($wacServicePack.Name -eq "SP2" -and $spYear -eq "2010") {$wacMspCount = 32} else {$wacMspCount = 0} # Create a hash table with some directories to look for to confirm the valid presence of the WAC binaries. Not perfect. $wacTestDirs = @{"2010" = "XLSERVERWAC.en-us"; "2013" = "wacservermui.en-us"; "2016" = "wacserver.ww"} ##if ($spYear -eq "2010") {$wacTestDir = "XLSERVERWAC.en-us"} ##elseif ($spYear -eq "2013") {$wacTestDir = "wacservermui.en-us"} # Try to find a OWA/OOS update that matches the current month for the SharePoint update [array]$wacCU = $wacNode.CumulativeUpdates.CumulativeUpdate | Where-Object {$_.Name -eq $spCUName} [array]$wacCUNodes = $wacNode.CumulativeUpdates.ChildNodes | Where-Object {$_.NodeType -ne "Comment"} if ([string]::IsNullOrEmpty($wacCU)) { Write-Host " - There is no $($spCUName) update for $wacProductName available." Start-Sleep -Seconds 1 while ([string]::IsNullOrEmpty($wacCUName) -and (($wacCUNodes).Count -ge 1)) { Write-Host -ForegroundColor Cyan " - Please select another available $wacProductName update..." Start-Sleep -Seconds 1 $wacCUName = $wacNode.CumulativeUpdates.CumulativeUpdate.Name | Select-Object -Unique | Out-GridView -Title "Please select another available $wacProductName update:" -PassThru if ($wacCUName.Count -gt 1) { Write-Warning "Please only select ONE update. Re-prompting..." Remove-Variable -Name wacCUName -Force -ErrorAction SilentlyContinue } } [array]$wacCU = $wacNode.CumulativeUpdates.CumulativeUpdate | Where-Object {$_.Name -eq $wacCUName} } else { Write-Host " - $($wacCU[0].Name) update found for $wacProductName." } if ($wacCU.Count -ge 1) { $wacCUName = $wacCU[0].Name $wacCUBuild = $wacCU[0].Build } WriteLine # Download Office Web Apps / Online Server? # Download Office Web Apps / Online Server 2013 Prerequisites If ($GetPrerequisites -and $spYear -ge 2013) { WriteLine $wacPrerequisiteNode = $wacNode.Prerequisites EnsureFolder -Path "$Destination\$wacNodeName\PrerequisiteInstallerFiles" foreach ($prerequisite in $wacPrerequisiteNode.Prerequisite) { Write-Host " - Getting $wacProductName prerequisite `"$($prerequisite.Name)`"..." DownloadPackage -Url $($prerequisite.Url) -DestinationFolder "$Destination\$wacNodeName\PrerequisiteInstallerFiles" } WriteLine } { Write-Verbose -Message "Skipping $wacProductName updates since GetPrerequisites wasn't specified or $wacProductName is older than 2013." } # Extract Office Web Apps / Online Server files to $Destination\$wacNodeName $sourceDirWAC = $WACSourceLocation.TrimEnd("\") Write-Host " - Checking for $sourceDirWAC\$($wacTestDirs.$spYear)\..." $sourceFoundWAC = (Test-Path -Path "$sourceDirWAC\$($wacTestDirs.$spYear)" -ErrorAction SilentlyContinue) if (!$sourceFoundWAC) { Write-Warning " - The correct $wacProductName source files/media were not found!" Write-Warning " - Please specify a valid path." $global:errorWarning = $true break Pause "exit" exit } else { Write-Host " - Source found in $sourceDirWAC." } if (!($sourceDirWAC -eq "$Destination\$wacNodeName")) { Write-Host " - (Robo-)copying files from $sourceDirWAC to $Destination\$wacNodeName..." Start-Process -FilePath robocopy.exe -ArgumentList "`"$sourceDirWAC`" `"$Destination\$wacNodeName`" /E /Z /ETA /NDL /NFL /NJH /XO /A-:R" -Wait -NoNewWindow Write-Host " - Done copying original files to $Destination\$wacNodeName." } if (!([string]::IsNullOrEmpty($wacServicePack.Name))) { # Check if WAC SP already appears to be included in the source if ((Get-ChildItem "$sourceDirWAC\Updates" -Filter *.msp).Count -lt $wacMspCount) # Checking for ($wacMspCount) MSP patch files in the \Updates folder { Write-Host " - WAC $($wacServicePack.Name) seems to be missing or incomplete in $sourceDirWAC; downloading..." # Download Office Web Apps / Online Server service pack Write-Host " - Getting $wacProductName $($wacServicePack.Name):" # Set the subfolder name for easy update build & name identification, for example, "15.0.4481.1005 (March 2013)" $wacServicePackSubfolder = $wacServicePack.Build+" ("+$wacServicePack.Name+")" EnsureFolder -Path "$UpdateLocation\$wacServicePackSubfolder" DownloadPackage -Url $($wacServicePack.Url) -DestinationFolder "$UpdateLocation\$wacServicePackSubfolder" Remove-ReadOnlyAttribute -Path "$Destination\$wacNodeName\Updates" # Extract Office Web Apps / Online Server service pack files to $Destination\$wacNodeName\Updates $wacServicePackExpandedFile = $($wacServicePack.Url).Split('/')[-1] Write-Verbose -Message " - Extracting from '$$UpdateLocation\$wacServicePackSubfolder\$wacServicePackExpandedFile'" Write-Host " - Extracting $wacProductName $($wacServicePack.Name) patch files..." -NoNewline Start-Process -FilePath "$UpdateLocation\$wacServicePackSubfolder\$wacServicePackExpandedFile" -ArgumentList "/extract:`"$Destination\$wacNodeName\Updates`" /passive" -Wait -NoNewWindow Read-Log Write-Host "done!" } else {Write-Host " - WAC $($wacServicePack.Name) appears to be already slipstreamed into the SharePoint binary source location."} } else {Write-Host " - No WAC service packs are available or applicable for this version."} if ($spCU.Count -ge 1 -and [string]::IsNullOrEmpty($wacCU)) { } if (!([string]::IsNullOrEmpty($wacCU))) # Only attempt this if we actually have a CU for WAC that matches the SP revision { # Download Office Web Apps / Online Server CU foreach ($wacCUPackage in $wacCU) { Write-Host " - Getting $wacProductName $wacCUName update:" $wacCuFileZip = $($wacCUPackage.Url).Split('/')[-1] +".zip" # Set the subfolder name for easy update build & name identification, for example, "15.0.4481.1005 (March 2013)" $wacUpdateSubfolder = $wacCUBuild+" ("+$wacCUName+")" EnsureFolder -Path "$UpdateLocation\$wacUpdateSubfolder" DownloadPackage -Url $($wacCUPackage.Url) -ExpandedFile $($wacCUPackage.ExpandedFile) -DestinationFolder "$UpdateLocation\$wacUpdateSubfolder" -destinationFile $wacCuFileZip # Expand Office Web Apps / Online Server CU executable to $UpdateLocation\$wacUpdateSubfolder If (!(Test-Path "$UpdateLocation\$wacUpdateSubfolder\$($wacCUPackage.ExpandedFile)")) # Check if the expanded file is already there { $wacCuFileZipPath = Join-Path -Path "$UpdateLocation\$wacUpdateSubfolder" -ChildPath $wacCuFileZip Write-Host " - Expanding $wacProductName $(if ($spYear -ge 2016) {"Public"} else {"Cumulative"}) Update (single file)..." EnsureFolder -Path "$UpdateLocation\$wacUpdateSubfolder" # Remove any pre-existing hotfix.txt file so we aren't prompted to replace it by Expand-Zip and cause our script to pause if (Test-Path -Path "$UpdateLocation\$wacUpdateSubfolder\hotfix.txt" -ErrorAction SilentlyContinue) { Remove-Item -Path "$UpdateLocation\$wacUpdateSubfolder\hotfix.txt" -Confirm:$false -ErrorAction SilentlyContinue } Expand-Zip -InputFile $wacCuFileZipPath -DestinationFolder "$UpdateLocation\$wacUpdateSubfolder" } Remove-ReadOnlyAttribute -Path "$Destination\$wacNodeName\Updates" # Extract Office Web Apps / Online Server CU files to $Destination\$wacNodeName\Updates Write-Verbose -Message " - Extracting from '$UpdateLocation\$wacUpdateSubfolder\$($wacCUPackage.ExpandedFile)'" Write-Host " - Extracting $wacProductName $(if ($spYear -ge 2016) {"Public"} else {"Cumulative"}) Update patch files..." -NoNewline Start-Process -FilePath "$UpdateLocation\$wacUpdateSubfolder\$($wacCUPackage.ExpandedFile)" -ArgumentList "/extract:`"$Destination\$wacNodeName\Updates`" /passive" -Wait -NoNewWindow Write-Host "done!" } } else {Write-Host " - No $wacProductName updates are available or applicable for this version."} WriteLine } else { Write-Verbose -Message "Skipping $wacProductName updates since no $wacProductName location was specified." } #endregion #region Language Packs if ($Languages.Count -gt 0) { # Remove any spaces or quotes and ensure each one is split out [array]$languages = $Languages -replace ' ','' -split "," Write-Host " - Languages requested:" foreach ($language in $Languages) { Write-Host " - $language" } $lpNode = $spNode.LanguagePacks ForEach ($language in $Languages) { WriteLine $spLanguagePack = $lpNode.LanguagePack | Where-Object {$_.Name -eq $language} If (!$spLanguagePack) { Write-Warning " - Language Pack `"$language`" invalid, or not found - skipping." } if ([string]::IsNullOrEmpty($spLanguagePack.Url)) { Write-Warning " - There is no download URL for Language Pack `"$language`" yet - skipping. You may need to download it manually from MSDN/Technet." } Else { # Download the language pack [array]$validLanguages += $language $lpDestinationFile = $($spLanguagePack.Url).Split('/')[-1] # Give it a more descriptive name if the language sub-string is not already present if (!($lpDestinationFile -like "*$language*")) { if ($spver -eq "14") { $lpDestinationFile = $lpDestinationFile -replace ".exe","_$language.exe" } else { $lpDestinationFile = $lpDestinationFile -replace ".img","_$language.img" } } Write-Host " - Getting SharePoint $spYear Language Pack ($language):" # Set the subfolder name for easy update build & name identification, for example, "15.0.4481.1005 (March 2013)" $spLanguagePackSubfolder = $spLanguagePack.Name EnsureFolder -Path "$UpdateLocation\$spLanguagePackSubfolder" DownloadPackage -Url $($spLanguagePack.Url) -DestinationFolder "$UpdateLocation\$spLanguagePackSubfolder" -DestinationFile $lpDestinationFile Remove-ReadOnlyAttribute -Path "$Destination\LanguagePacks\$language" # Extract the language pack to $Destination\LanguagePacks\xx-xx (where xx-xx is the culture ID of the language pack, for example fr-fr) if ($lpDestinationFile -match ".img$" -or $lpDestinationFile -match ".iso$") { # Mount the ISO/IMG file ($UpdateLocation\$spLanguagePackSubfolder\$lpDestinationFile) and robo-copy the files to $Destination\LanguagePacks\$language Write-Host " - Mounting language pack disk image..." -NoNewline Mount-DiskImage -ImagePath "$UpdateLocation\$spLanguagePackSubfolder\$lpDestinationFile" -StorageType ISO $isoDrive = (Get-DiskImage -ImagePath "$UpdateLocation\$spLanguagePackSubfolder\$lpDestinationFile" | Get-Volume).DriveLetter + ":" Write-Host "Done." # Copy files Write-Host " - (Robo-)copying language pack files from $isoDrive to $Destination\LanguagePacks\$language" Start-Process -FilePath robocopy.exe -ArgumentList "`"$isoDrive`" `"$Destination\LanguagePacks\$language`" /E /Z /ETA /NDL /NFL /NJH /XO /A-:R" -Wait -NoNewWindow Write-Host " - Done copying language pack files to $Destination\LanguagePacks\$language." # Dismount the ISO/IMG Dismount-DiskImage -ImagePath "$UpdateLocation\$spLanguagePackSubfolder\$lpDestinationFile" } else { Write-Verbose -Message " - Extracting from '$UpdateLocation\$spLanguagePackSubfolder\$lpDestinationFile'" Write-Host " - Extracting Language Pack files ($language)..." -NoNewline Start-Process -FilePath "$UpdateLocation\$spLanguagePackSubfolder\$lpDestinationFile" -ArgumentList "/extract:`"$Destination\LanguagePacks\$language`" /quiet" -Wait -NoNewWindow Write-Host "done!" } [array]$lpSpNodes = $splanguagePack.ServicePacks.ChildNodes | Where-Object {$_.NodeType -ne "Comment"} if (($lpSpNodes).Count -ge 1 -and $spServicePack) { # Download service pack for the language pack $lpServicePack = $spLanguagePack.ServicePacks.ServicePack | Where-Object {$_.Name -eq $spServicePack.Name} # To match the chosen SharePoint service pack $lpServicePackDestinationFile = $($lpServicePack.Url).Split('/')[-1] Write-Host " - Getting SharePoint $spYear Language Pack $($lpServicePack.Name) ($language):" EnsureFolder -Path "$UpdateLocation\$spLanguagePackSubfolder" DownloadPackage -Url $($lpServicePack.Url) -DestinationFolder "$UpdateLocation\$spLanguagePackSubfolder" -DestinationFile $lpServicePackDestinationFile if (Test-Path -Path "$Destination\LanguagePacks\$language\Updates") {Remove-ReadOnlyAttribute -Path "$Destination\LanguagePacks\$language\Updates"} # Extract each language pack to $Destination\LanguagePacks\xx-xx (where xx-xx is the culture ID of the language pack, for example fr-fr) if ($lpServicePackDestinationFile -match ".img$") { # Mount the ISO/IMG file ($UpdateLocation\$spLanguagePackSubfolder\$lpDestinationFile) and robo-copy the files to $Destination\LanguagePacks\$language Write-Host " - Mounting language pack service pack disk image..." -NoNewline Mount-DiskImage -ImagePath "$UpdateLocation\$spLanguagePackSubfolder\$lpServicePackDestinationFile" -StorageType ISO $isoDrive = (Get-DiskImage -ImagePath "$UpdateLocation\$spLanguagePackSubfolder\$lpServicePackDestinationFile" | Get-Volume).DriveLetter + ":" Write-Host "Done." # Copy files Write-Host " - (Robo-)copying language pack service pack files from $isoDrive to $Destination\LanguagePacks\$language" Start-Process -FilePath robocopy.exe -ArgumentList "`"$isoDrive`" `"$Destination\LanguagePacks\$language`" /E /Z /ETA /NDL /NFL /NJH /XO /A-:R" -Wait -NoNewWindow Write-Host " - Done copying language pack service pack files to $Destination\LanguagePacks\$language." # Dismount the ISO/IMG Dismount-DiskImage -ImagePath "$UpdateLocation\$spLanguagePackSubfolder\$lpServicePackDestinationFile" } else { Write-Verbose -Message " - Extracting from '$UpdateLocation\$spLanguagePackSubfolder\$lpServicePackDestinationFile'" Write-Host " - Extracting Language Pack $($lpServicePack.Name) files ($language)..." -NoNewline Start-Process -FilePath "$UpdateLocation\$spLanguagePackSubfolder\$lpServicePackDestinationFile" -ArgumentList "/extract:`"$Destination\LanguagePacks\$language\Updates`" /quiet" -Wait -NoNewWindow Write-Host "done!" } } } If ($spCU.Count -ge 1 -and (Test-Path -Path "$Destination\LanguagePacks\$language\Updates") -and (!([string]::IsNullOrEmpty($SourceLocation)))) { # Copy matching culture files from $Destination\SharePoint\Updates folder (e.g. spsmui-fr-fr.msp) to $Destination\LanguagePacks\$language\Updates Write-Host " - Updating $Destination\LanguagePacks\$language with the $($spCUName) SharePoint update..." ForEach ($patch in (Get-ChildItem -Path $Destination\SharePoint\Updates -Filter *$language*)) { Copy-Item -Path $patch.FullName -Destination "$Destination\LanguagePacks\$language\Updates" -Force } } else { Write-Verbose -Message "Skipping language pack slipstreaming since no source location was specified." } WriteLine } } else { Write-Verbose -Message "Skipping language packs & language updates since no language was specified." } #endregion #region Wrap Up WriteLine if (!([string]::IsNullOrEmpty($SourceLocation))) { $textFileName = "_SLIPSTREAM_HISTORY.txt" } else { $textFileName = "_UPDATE_HISTORY.txt" } # Append the history file if it already exists if (Get-item -Path "$Destination\$textFileName" -ErrorAction SilentlyContinue) { Write-Output " - Appending version history file `"$textFileName`"..." } else { Write-Output " - Adding a version history file `"$textFileName`"..." Set-Content -Path "$Destination\$textFileName" -Value "This media source directory has been prepared with:" -Force } Add-Content -Path "$Destination\$textFileName" -Value "-------------------------------------------------------------------------------------------------------------------------------------" -Force Add-Content -Path "$Destination\$textFileName" -Value "$(Get-Date):" -Force if (!([string]::IsNullOrEmpty($SourceLocation))) { Add-Content -Path "$Destination\$textFileName" -Value "- SharePoint $spYear" -Force } If (!([string]::IsNullOrEmpty($spServicePack))) { Add-Content -Path "$Destination\$textFileName" -Value " - $($spServicePack.Name) for SharePoint $spYear" -Force } If (!([string]::IsNullOrEmpty($march2013PU))) { Add-Content -Path "$Destination\$textFileName" -Value " - $($march2013PU.Name) Public Update for SharePoint $spYear" -Force } If (($spCU.Count -ge 1) -and !$spCUSkipped) { Add-Content -Path "$Destination\$textFileName" -Value " - $($spCUName) $(if ($spYear -ge 2016) {"Public"} else {"Cumulative"}) Update for SharePoint $spYear" -Force } If ($GetPrerequisites -and !([string]::IsNullOrEmpty($SourceLocation))) { Add-Content -Path "$Destination\$textFileName" -Value " - Prerequisite software for SharePoint $spYear" -Force } if ($patchedForKB3087184) { Add-Content -Path "$Destination\$textFileName" -Value " - .Net Framework 4.6 installation compatibility update (KB3087184) for SharePoint $spYear" -Force } If ($validLanguages.Count -gt 0) # Add the language packs to the txt file only if they were actually valid { Add-Content -Path "$Destination\$textFileName" -Value " - Language Packs:" -Force ForEach ($language in $validLanguages) { Add-Content -Path "$Destination\$textFileName" -Value " - $language" -Force } } If (!([string]::IsNullOrEmpty($WACSourceLocation))) { Add-Content -Path "$Destination\$textFileName" -Value "- $wacProductName $spYear" -Force if (!([string]::IsNullOrEmpty($wacPrerequisiteNode))) { Add-Content -Path "$Destination\$textFileName" -Value " - Prerequisite software for $wacProductName $spYear" -Force } if (!([string]::IsNullOrEmpty($wacServicePack))) { Add-Content -Path "$Destination\$textFileName" -Value " - $($wacServicePack.Name) for $wacProductName $spYear" -Force } if (!([string]::IsNullOrEmpty($wacCU))) { Add-Content -Path "$Destination\$textFileName" -Value " - $($wacCUName) $(if ($spYear -ge 2016) {"Public"} else {"Cumulative"}) Update for $wacProductName $spYear" -Force } } Add-Content -Path "$Destination\$textFileName" -Value "Using AutoSPSourceBuilder (https://github.com/brianlala/autospsourcebuilder)." -Force Add-Content -Path "$Destination\$textFileName" -Value "-------------------------------------------------------------------------------------------------------------------------------------" -Force If ($errorWarning) { Write-Host -ForegroundColor Yellow " - At least one non-trivial error was encountered." if (!([string]::IsNullOrEmpty($SourceLocation))) { Write-Host -ForegroundColor Yellow " - Your SharePoint installation source could therefore be incomplete." } Write-Host -ForegroundColor Yellow " - You should re-run this script until there are no more errors." } Write-Output " - Done!" Write-Output " - Review the output and check your source/update file integrity carefully." Start-Sleep -Seconds 3 Invoke-Item -Path $Destination WriteLine $Host.UI.RawUI.WindowTitle = $oldTitle Pause "exit" #endregion |