[DISCUSSION] Windows 10 Demoted Back to Insider Preview 17133.1 (PC) [RS4_Release]

Discussion in 'Windows 10' started by Enthousiast, Mar 27, 2018.

  1. tonyh2004

    tonyh2004 MDL Member

    Aug 2, 2011
    173
    39
    10
    give it time mine worked after a few days
     
  2. I just wait a few other days when it comes available on MCT :p
     
  3. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    35,561
    59,622
    450
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. Ratha ITC

    Ratha ITC MDL Member

    Jul 13, 2013
    243
    134
    10
    Mine still has no update

    Capture.PNG
     
  5. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    6,207
    7,533
    210
  6. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    35,561
    59,622
    450
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,013
    775
    180
    I know what it is and I want to delete it.
     
  8. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    35,561
    59,622
    450
    Get the device out of the system and it will be gone from devicemanager.....
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. sandrini

    sandrini MDL Novice

    Aug 30, 2013
    20
    0
    0
    Today I've upgraded to Windows10, RS4(1803).
    The brightness adjustment feature is not working.
    Windows running with full brightness.

    Any idea or solution?
     
  10. aquarius84

    aquarius84 MDL Member

    Oct 3, 2012
    182
    51
    10
    @Enthousiast did you test the ESD ?
    about the "problem" detecting the integrated serial key...
    the ESD I downloaded was taken from this topic, on the Pastebin file, this one: 17133.1.180323-1312.rs4_release_clientconsumer_ret_x64fre_it-it
     
  11. SM03

    SM03 MDL Expert

    Dec 16, 2012
    1,067
    527
    60
    already answered this issue, take a look at some earlier post of mine
     
  12. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,013
    775
    180
    But I still see uknown driver. When I make clean install of Windows I see it too. It's look like the system want it (the driver).
     
  13. JayPea

    JayPea MDL Novice

    Feb 28, 2009
    49
    22
    0
    So get the VID & PID Hardware ID, Google them and then leech the driver.
     
  14. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,013
    775
    180
    I don't understand you.
     
  15. JayPea

    JayPea MDL Novice

    Feb 28, 2009
    49
    22
    0
    OK, take it back a step. Google 'what is vid and pid' and then read about how to get them. Once obtained, Google the VID & PID to find your driver and then install it. At a guess it's probably some stupid Intel Management Engine driver or similar.
     
  16. BAU

    BAU MDL Addicted

    Feb 10, 2009
    943
    2,042
    30
    #1077 BAU, Apr 5, 2018
    Last edited: Apr 5, 2018
    Or you could just use a simple powershell script in the same folder as the esd file:
    $ESDFilePath=Get-ChildItem *.esd
    $ImageExclusions=@('Windows Setup Media','Microsoft Windows PE (x64)','Microsoft Windows Setup (x64)','Microsoft Windows PE (x86)','Microsoft Windows Setup (x86)')
    $AllImages=Get-WindowsImage -ImagePath $ESDFilePath
    write-host $AllImages.ImageName
    $SetupMediaImage=$AllImages.Where({$_.ImageName -eq "Windows Setup Media"})
    $SetupImage=$AllImages.Where({$_.ImageName -eq "Microsoft Windows Setup (x64)" -or $_.ImageName -eq "Microsoft Windows Setup (x86)"})
    New-Item -Path ".\ISOFiles" -ItemType Directory -ErrorAction SilentlyContinue
    Expand-WindowsImage -ImagePath $ESDFilePath -Index $SetupMediaImage.ImageIndex -ApplyPath ".\ISOFiles"
    Export-WindowsImage -SourceImagePath $ESDFilePath -SourceIndex $SetupImage.ImageIndex -CompressionType Maximum -DestinationImagePath ".\ISOFiles\Sources\boot.wim" -DestinationName $SetupImage.ImageName
    $AllImages.Where({$_.ImageName -notin $ImageExclusions}).foreach( {
    Export-WindowsImage -SourceImagePath $ESDFilePath -SourceIndex $_.ImageIndex -CompressionType Maximum -DestinationImagePath ".\ISOFiles\Sources\Install.wim" -DestinationName $_.ImageName
    } )


    Will create the ISOFiles subdirectory that you can simply run setup from or copy over to a usb stick / make an iso out of it.

    Edit: oops I had this on queue to submit and more posts have been added hence it looks out of place
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. Ratha ITC

    Ratha ITC MDL Member

    Jul 13, 2013
    243
    134
    10
    #1078 Ratha ITC, Apr 5, 2018
    Last edited: Apr 6, 2018
    Is there anyone using Visual Studio 2017 for C++ development on this build? I failed to build some libraries.. I'm not sure if it was the RS4 or something else.

    Edit: Everything are fine now. The causes of the problem was not this build of RS4.
     
  18. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,013
    775
    180
    Yes. It's Intel Management Engine that installed when I install Intel Desktop Utilities that make BSOD. For what I need Intel Management Engine ?
     
  19. endbase

    endbase MDL Guru

    Aug 12, 2012
    4,522
    1,602
    150
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...