DISCUSSION: Windows Server 2016 14393 (1607)

Discussion in 'Windows Server' started by murphy78, Jul 26, 2016.

  1. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,206
    90,780
    340
  2. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,206
    90,780
    340
    #823 abbodi1406, Oct 26, 2016
    Last edited by a moderator: Apr 20, 2017
    Group Policy
    Code:
    reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsStore\WindowsUpdate /v AutoDownload /t REG_DWORD /d 5 /f
    reg add HKLM\SOFTWARE\Microsoft\PolicyManager\current\Update /v AllowAutoUpdate /t REG_DWORD /d 5 /f
    reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU /v NoAutoUpdate /t REG_DWORD /d 1 /f
    reg add HKLM\SOFTWARE\Policies\Microsoft\MRT /v DontOfferThroughWUAU /t REG_DWORD /d 1 /f
    reg add HKLM\SOFTWARE\Policies\Microsoft\MRT /v DontReportInfectionInformation /t REG_DWORD /d 1 /f
    
     
  3. farukkaraca

    farukkaraca MDL Member

    Sep 27, 2009
    169
    97
    10
    Thank you very much Abbodi1406.
    Does above script applicable to all windows 10 versions 1511 , 1507 , 1607 ,server 2016 and even to windows 7 ?
    and what is the undo script if i want to enable windows auto update again ?
     
  4. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,206
    90,780
    340
    #825 abbodi1406, Oct 26, 2016
    Last edited by a moderator: Apr 20, 2017
    Win7/8.1 can be turned off easily, but if you wish
    Code:
    reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /f /v AUOptions /t REG_DWORD /d 1
    reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /f /v IncludeRecommendedUpdates /t REG_DWORD /d 0
    reg add HKLM\SOFTWARE\Policies\Microsoft\MRT /v DontOfferThroughWUAU /t REG_DWORD /d 1 /f
    reg add HKLM\SOFTWARE\Policies\Microsoft\MRT /v DontReportInfectionInformation /t REG_DWORD /d 1 /f
    to revert, go to registry and delete the added values
     
  5. farukkaraca

    farukkaraca MDL Member

    Sep 27, 2009
    169
    97
    10
    Yeah it is so clear now.
    Thanks for the help Abbodi the great
     
  6. guest2free

    guest2free MDL Novice

    Dec 18, 2009
    7
    1
    0
    #827 guest2free, Oct 27, 2016
    Last edited by a moderator: Apr 20, 2017


    @xinso
    Can you please reupload CONVERT.CMD rar ? It is no longer available ...
    Thank you
     
  7. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,700
    14,428
    340
  8. farukkaraca

    farukkaraca MDL Member

    Sep 27, 2009
    169
    97
    10
    Hi xinso ;

    :CONVERT
    if %~1==1 (
    dism /image:%MT% /add-package:packs
    reg load HKLM\SOFT "%MT%\Windows\System32\config\software"
    reg add "HKLM\SOFT\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-Security-SPP-Component-SKU-ServerDatacenter-GVLK-Package~31bf3856ad364e35~amd64~~10.0.14393.0" /v Visibility /t REG_DWORD /d 2 /f
    reg unload HKLM\SOFT
    )
    if %~1==2 (
    dism /image:%MT% /add-package:packs
    reg load HKLM\SOFT "%MT%\Windows\System32\config\software"
    reg add "HKLM\SOFT\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-Security-SPP-Component-SKU-ServerDatacenter-GVLK-Package~31bf3856ad364e35~amd64~~10.0.14393.0" /v Visibility /t REG_DWORD /d 2 /f
    reg unload HKLM\SOFT


    In your convert.cmd , when the index is 1 (Standard) and 2 (Standard) , you are adding both ServerDatacenter-GVLK-Package and ServerStandard-GVLK-Package and then you are making ServerDatacenter-GVLK-Package invisible with regedit.
    Why do you do that , isnt it enough just adding ServerStandard-GVLK-Package ?
     
  9. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,700
    14,428
    340
    #830 xinso, Oct 28, 2016
    Last edited by a moderator: Apr 20, 2017
    Because of

    dism /image:Z:\MT /set-edition:ServerDatacenter (Cor)
    Code:
    Microsoft-Windows-Security-SPP-Component-SKU-ServerDatacenter-Package~31bf3856ad364e35~amd64~~10.0.14393.0 (Retail)
    Microsoft-Windows-Security-SPP-Component-SKU-ServerStandard-GVLK-Package~31bf3856ad364e35~amd64~~10.0.14393.0 (Volume)
    
    Note:
    1. I am refering to VLSC SW_DVD9_Win_Svr_STD_Core_and_DataCtr_Core_2016.
     
  10. farukkaraca

    farukkaraca MDL Member

    Sep 27, 2009
    169
    97
    10
    What about Server 2016 VLSC isos for other languages , released or not ?
     
  11. mrces2

    mrces2 MDL Novice

    Mar 20, 2011
    32
    11
    0
    #832 mrces2, Nov 2, 2016
    Last edited: Nov 4, 2016
    Launching in the spring of 2017. Everything still looks absolutely experimental.

    "The next major Windows 10 update, previously known by its codename 'Redstone 2', will launch next spring as the 'Windows 10 Creators Update.'"

    From RCPmag: no_short_urls_allowed/h33zko6
     
  12. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,700
    14,428
    340
    #833 xinso, Nov 2, 2016
    Last edited: Nov 2, 2016
    Not any more - so I reckoned.
     
  13. Myrrh

    Myrrh MDL Expert

    Nov 26, 2008
    1,509
    629
    60
    OK, now that it's RTM'ed for a little while, time to ask this again.

    Is there any workaround for the SLAT (Second-Level Address Translation) requirement to enable Hyper-V? Have any of our more technical members taken a look at this yet?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,206
    90,780
    340
    #835 abbodi1406, Nov 3, 2016
    Last edited by a moderator: Apr 20, 2017
    For me, enable it with dism worked for Win10
    Code:
    Dism /Online /Enable-Feature /FeatureName:Microsoft-Hyper-V-All
     
  15. T-S

    T-S MDL Guru

    Dec 14, 2012
    3,984
    1,331
    120
    Do you mean the SLAT thing? :g:

    I doubt it will work. Seems a pretty hardcoded thing, I tried the Server 2012 R2 HV (which doesn't have the SLAT requirement) on Win 8.1, and still won't start.
     
  16. Svoll

    Svoll MDL Novice

    Sep 30, 2014
    9
    3
    0
    #837 Svoll, Nov 3, 2016
    Last edited: Nov 3, 2016
    is there a way to remove these once you have installed the OS?

    Microsoft-OneCore-AllowTelemetry-Reduced-Default-Package~31bf3856ad364e35~amd64~~10.0.14393.0
    Microsoft-OneCore-TroubleShooting-Package~31bf3856ad364e35~amd64~~10.0.14393.0
    Microsoft-OneCore-TroubleShooting-WOW64-Package~31bf3856ad364e35~amd64~~10.0.14393.0
    Microsoft-Windows-Feedback-Package~31bf3856ad364e35~amd64~~10.0.14393.0
    Microsoft-Windows-FlightSettings-Package~31bf3856ad364e35~amd64~~10.0.14393.0


    tried the dism /online /remove-package /packagename: command and got access denied. or would i have to make a new offline iso and reinstall?

    any help is appreciated.
     
  17. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,700
    14,428
    340
    #838 xinso, Nov 3, 2016
    Last edited: Nov 3, 2016
    Windows Server 10586 is working fine...
     
  18. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,206
    90,780
    340
    I actually never setup or created a VM :D
    i just ment enabling the feature, if SLAT is not available the feature is greyed in gui
     
  19. T-S

    T-S MDL Guru

    Dec 14, 2012
    3,984
    1,331
    120
    Actually I'm one of the people who faced the virtualization first.

    I was the one who talked about such nice VMware to the director of the local edition of Windows Magazine, he published even my VMware review after few months.

    The article was published in August 2000. 16+ years ago....:fear2::(