ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    WSUS preparation for Windows 10 Feature Upgrades

    Scheduled Pinned Locked Moved IT Discussion
    wsusupgrade1709windows updatesserver 2012 r2
    5 Posts 3 Posters 2.2k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • dbeatoD
      dbeato
      last edited by dbeato

      After battling for a while with WSUS and Windows 10 Feature Upgrades, I have compiled the following based on the experience:

      1- Download SQL Server Management Studio
      https://www.microsoft.com/en-us/download/confirmation.aspx?id=29062

      2- Install SQL Server Management Studio and reboot the server.

      3- Open your SQL Server Management Studio and connect to the WSUS Database:
      0_1510898608390_2017-11-17_0102.png

      4- Select the SUSDB Database
      0_1510898701062_2017-11-17_0104.png
      5- Run the following query:
      select Count(*) from tbFile as f, tbFileForRevision as fr, tbRevision as r, tbUpdate as u, tbProperty as p where f.FileDigest = fr.FileDigest and fr.RevisionID = r.RevisionID and r.LocalUpdateID = u.LocalUpdateID and p.RevisionID = r.RevisionID and (f.FileName like '%15063%.esd' or f.FileName like '%14393%.esd' or f.IsEncrypted = 1) and f.DecryptionKey is null and p.PublicationState = 0

      6-If the results are > 0 then you need to continue below. If not you can service Windows 10 Feature upgrades by making sure your WSUS server has this:
      https://support.microsoft.com/en-us/help/3159706/update-enables-esd-decryption-provision-in-wsus-in-windows-server-2012

      7- Run the following powershell (As admin):
      Get-WsusClassification | Where-Object -FilterScript {$_.Classification.Title -Eq “Upgrades”} | Set-WsusClassification -Disable

      8- Decline all the Windows 10 Upgrades through Powershell ISE (As admin
      [reflection.assembly]::LoadWithPartialName("Microsoft.UpdateServices.Administration") $wsus = [Microsoft.UpdateServices.Administration.AdminProxy]::GetUpdateServer(); $wsus.GetUpdates() | Where {$_.UpdateClassificationTitle -eq 'Upgrades' -and $_.Title -match 'Windows 10'} ` | ForEach-Object {$_.Decline(); Write-Host $_.Title declined}

      9- Remove all the Upgrades from the Database through Powershell ISE
      [reflection.assembly]::LoadWithPartialName("Microsoft.UpdateServices.Administration") $wsus = [Microsoft.UpdateServices.Administration.AdminProxy]::GetUpdateServer(); $wsus.GetUpdates() | Where {$_.UpdateClassificationTitle -eq 'Upgrades' -and $_.Title -match 'Windows 10'} ` | ForEach-Object {$wsus.DeleteUpdate($_.Id.UpdateId.ToString()); Write-Host $_.Title removed}
      0_1510899060620_2017-11-17_0110.png

      10- Run the following query on SQL Management Studio
      declare @NotNeededFiles table (FileDigest binary(20) UNIQUE) insert into @NotNeededFiles(FileDigest) (select FileDigest from tbFile where FileName like '%.esd%' except select FileDigest from tbFileForRevision) delete from tbFileOnServer where FileDigest in (select FileDigest from @NotNeededFiles) delete from tbFile where FileDigest in (select FileDigest from @NotNeededFiles)

      0_1510899109080_2017-11-17_0111.png

      11- Enable Upgrades in WSUS again via powershell
      Get-WsusClassification | Where-Object -FilterScript {$_.Classification.Title -Eq “Upgrades”} | Set-WsusClassification

      12- Sync WSUS
      $s = Get-WsusServer $sub = $s.GetSubscription() $sub.StartSynchronization()

      13- Approve the Feature Upgrade you want.
      0_1510899248368_2017-11-17_0113.png

      14- Now ready to install on workstations.

      1 Reply Last reply Reply Quote 5
      • travisdh1T
        travisdh1
        last edited by

        @dbeato Thanks for writing this up. The amount of pain to get this done tho, yuck.

        dbeatoD 1 Reply Last reply Reply Quote 1
        • dbeatoD
          dbeato @travisdh1
          last edited by

          @travisdh1 said in WSUS preparation for Windows 10 Feature Upgrades:

          @dbeato Thanks for writing this up. The amount of pain to get this done tho, yuck.

          It was painful even to write it 🙂

          1 Reply Last reply Reply Quote 2
          • momurdaM
            momurda
            last edited by

            Wow. Definitely not doing that if I have the same problems as you.
            Ill just go around and install the upgrade manually.
            Not even sure why MS still has WSUS, it is nothing but problems unless you spend hours a week fixing and maintaining it.

            dbeatoD 1 Reply Last reply Reply Quote 2
            • dbeatoD
              dbeato @momurda
              last edited by

              @momurda said in WSUS preparation for Windows 10 Feature Upgrades:

              Wow. Definitely not doing that if I have the same problems as you.
              Ill just go around and install the upgrade manually.
              Not even sure why MS still has WSUS, it is nothing but problems unless you spend hours a week fixing and maintaining it.

              I hear ya, this took me an hour to research, make sure to gather correct logs and then do the how-tos.

              1 Reply Last reply Reply Quote 0
              • 1 / 1
              • First post
                Last post