[INFO - DISCUSSION + Downloads] Windows 10 1809 FINAL b 17763.xxx (PC) [RS5]

Discussion in 'Windows 10' started by Enthousiast, Sep 18, 2018.

  1. SAM-R

    SAM-R MDL Guru

    Mar 21, 2015
    5,915
    5,754
    180
    Check at the OP.
     
  2. eemuler

    eemuler MDL Senior Member

    Jul 31, 2015
    477
    182
    10
    Is it fine if I do a clean install of 17763.1 and then run WU? Will that take care of everything or will I need to download and install some updates manually?

    Apologies if this has been asked and answered earlier.
     
  3. HomeofMerlin

    HomeofMerlin MDL Novice

    Dec 26, 2013
    23
    12
    0
    I never had any brightness issue, not in 17763.1 or 17763.55 or 17763.104
     
  4. Tonyblair

    Tonyblair MDL Member

    Aug 22, 2007
    134
    143
    10
    Me too
     
  5. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,760
    997
    180
    It's only in laptop. Right?
     
  6. HomeofMerlin

    HomeofMerlin MDL Novice

    Dec 26, 2013
    23
    12
    0
    Laptop and pc ( and with both no issues whatever)
     
  7. Tonyblair

    Tonyblair MDL Member

    Aug 22, 2007
    134
    143
    10
    For those affected perhaps it is related to the graphics card driver or display driver incompatibilty .
     
  8. armond

    armond MDL Addicted

    Jun 16, 2008
    737
    240
    30
    Sure thing!
     
  9. Tonyblair

    Tonyblair MDL Member

    Aug 22, 2007
    134
    143
    10
    I Always needed an easy way to switch off and on my Internet connection without
    unplugging cables (Lan case).

    My actual solution is a script in an already opened PowerShell ISE :
    Code:
    function Go-Offline {
    Get-NetAdapter -Name Ethernet | Disable-NetAdapter -Confirm:$false
    Write-Output "You've been taken offline!"
    Sleep 1
    }
    
    function Go-Online {
    Get-NetAdapter -Name Ethernet | Enable-NetAdapter
    Write-Output "Internet access restored!"
    Sleep 1
    }
    Go-Offline
    Go-Online
    If someone can propose another easy solution you are more then welcome :cheers:
     
  10. Gem Emerald

    Gem Emerald MDL Novice

    Oct 17, 2018
    12
    1
    0
    After installing AMD Drivers version 18.10.1 the brightness issue was fixed after reboot.
     
  11. AveYo

    AveYo MDL Expert

    Feb 10, 2009
    1,836
    5,730
    60
    #2411 AveYo, Oct 18, 2018
    Last edited: Oct 18, 2018
    A one-liner for cmd:
    wmic path Win32_NetworkAdapter where (NetEnabled=False and PhysicalAdapter=True and PNPDeviceID LIKE '%PCI%') call Enable &wmic path Win32_NetworkAdapter where (NetEnabled=True and PhysicalAdapter=True and PNPDeviceID LIKE '%PCI%') call Disable
    But since this needs admin rights, a script is advised - I have one I use will attach it when I get access to my pc
    EDIT: Actually, forget about script, here's a one-liner to enter as a target for new shortcut:

    cmd /c powershell -c "start powershell -ArgumentList '-c \"gwmi Win32_NetworkAdapter -filter \\\"PNPDeviceID LIKE ''%PCI%'' AND PhysicalAdapter=True\\\"^|foreach{if($_.NetEnabled){$_.Disable()}else{$_.Enable()}}\"' -verb RunAs"


    This would take care of admin rights needed via powershell and fits the retard ~260 characters limit for a shortcut command via cmd /c (since it's shorter than the path to powershell).
    @Tonyblair
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,760
    997
    180
    #2412 cuteee, Oct 18, 2018
    Last edited: Oct 18, 2018
    I don't have settings for brightness in my PC. I don't remember I saw it somewhere.
     
  13. Chibi ANUBIS

    Chibi ANUBIS MDL Chibi Developer

    Apr 28, 2014
    1,271
    924
    60
    Build 17763.17 is for Insiders, we are the update for build 17763.104, you can integrate update :
    https://forums.mydigitallife.net/th...ld-17763-1-pc-rs5.77945/page-116#post-1473795

    Code:
    dism /mount-wim /wimfile:C:\temp\install.wim /index:1 /mountdir:C:\mount
    dism /image:C:\mount /add-package /packagepath:C:\update\windows10.0-kb4464455-x64.cab
    dism /image:C:\mount /add-package /packagepath:C:\update\windows10.0-kb4465477-x64.cab
    dism /image:C:\mount /cleanup-image /startcomponentcleanup /resetbase
    dism /unmount-wim /mountdir:C:\mount /commit
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. Xtreem

    Xtreem MDL Junior Member

    Mar 2, 2008
    73
    73
    0
    I did that and have had several updates from WU since, currently i'm on 1809 Build 17763.55 after Windows Update.
     
  15. SAM-R

    SAM-R MDL Guru

    Mar 21, 2015
    5,915
    5,754
    180
    Latest is 17763.104 for Insiders with lots of fixes.
     
  16. Teknik

    Teknik MDL Senior Member

    Oct 9, 2010
    308
    76
    10
    Build 18262 not 17763 guys
     
  17. ciger

    ciger MDL Junior Member

    Jan 13, 2009
    64
    1
    0
    Dism command gives me "Error: 0x80070003" when i tried to install 17763.104. Any solutions for this error ?
    my os is win 10 edu x64.
     
  18. harkaz

    harkaz MDL Novice

    Dec 27, 2012
    42
    87
    0
    Interesting, I will give it a try and report my experience. Thanks.
     
  19. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,669
    103,497
    450
    All updates are now for insiders only
    First install/integrate the SSU and next the CU.
     
  20. ciger

    ciger MDL Junior Member

    Jan 13, 2009
    64
    1
    0
    How to install SSU ? Can you help me ?