[DISCUSSION] Windows 10 Enterprise (N) LTSC 2019

Discussion in 'Windows 10' started by Tito, Feb 1, 2018.

  1. kgtuning

    kgtuning MDL Member

    Joined:
    Aug 26, 2015
    Messages:
    120
    Likes Received:
    68
    Trophy Points:
    10
    #4181 kgtuning, Jul 28, 2019
    Last edited: Jul 29, 2019
    430.86 ran terrible for me. The last driver that ran good was 430.64 from a while ago.... I stepped away into linux land so this ltsc is a fresh install.

    Edit... I’ll roll back the driver
     
  2. ralf ralf

    ralf ralf MDL Novice

    Joined:
    May 11, 2017
    Messages:
    26
    Likes Received:
    4
    Trophy Points:
    0
  3. Enthousiast

    Enthousiast MDL Tester

    Joined:
    Oct 30, 2009
    Messages:
    35,561
    Likes Received:
    59,622
    Trophy Points:
    450
  4. jagth

    jagth MDL Novice

    Joined:
    Jul 24, 2019
    Messages:
    18
    Likes Received:
    1
    Trophy Points:
    0
    is that better than normal windows pro? I honestly don't want install anything for the third time after I played with linuxes, so if anyone can HONESTLY tell me why this versions is any better I would be glad
     
  5. Enthousiast

    Enthousiast MDL Tester

    Joined:
    Oct 30, 2009
    Messages:
    35,561
    Likes Received:
    59,622
    Trophy Points:
    450
    Do you need the store? Then use normal Enterprise, Pro or Education.
     
  6. kgtuning

    kgtuning MDL Member

    Joined:
    Aug 26, 2015
    Messages:
    120
    Likes Received:
    68
    Trophy Points:
    10
    I think its subjective. If I didn't game, I would stay with manjaro linux. I like LTSC because it doesn't have the store and it doesn't get feature updates.
     
  7. extaticadam

    extaticadam MDL Novice

    Joined:
    Aug 1, 2019
    Messages:
    4
    Likes Received:
    0
    Trophy Points:
    0
    Hi all,

    Recently purchased a new cpu/mobo/ram and attempted to install ltsc using an image i have on a flash drive.

    I was unsuccessful after 20+ attempts where the installation would freeze. Twice the installation worked but it would never get past the bios splash screen.

    As a last resort i created a win 10 image from the media creation tool, install was successful and finally booted into windows.

    Truthfully i didnt know now with new hardware you had to reinstall windows. Is there something im missing as to why i cant use ltsb right away?

    Thanks
     
  8. Enthousiast

    Enthousiast MDL Tester

    Joined:
    Oct 30, 2009
    Messages:
    35,561
    Likes Received:
    59,622
    Trophy Points:
    450
    Please do not crosspost: https://forums.mydigitallife.net/threads/ltsc-2019-new-pc-install-fail.80049/#post-1539849
     
  9. Species8472

    Species8472 MDL Novice

    Joined:
    Nov 18, 2012
    Messages:
    23
    Likes Received:
    1
    Trophy Points:
    0
    Anyone know how to stop the notifications for the windows defender updates ? I keep getting one every 2 days now since a about a month ago.
    Before that I didn't have this problem.
     
  10. Thomas Dubreuil

    Thomas Dubreuil MDL Senior Member

    Joined:
    Aug 29, 2017
    Messages:
    357
    Likes Received:
    594
    Trophy Points:
    10
    #4190 Thomas Dubreuil, Aug 2, 2019
    Last edited: Aug 2, 2019
    You can totally control Windows defender and its behavior from Group Policy Editor.
    Like number of days between notification for out of date definitions, or remove every notification, or disable Windows Defender completely etc.

    Type GPedit.msc and go to:
    Computer configuration/administrative templates/Windows Components/Windows Defender Antivirus.

    Highly recommend GPO for every tweaking task, because it's easily reversible, upgrade resistant, and I find easier to manage my tweaks from one place.

    Here my parsed defender policies if anyone interested :
    Code:
    ; ----------------------------------------------------------------------
    ; PARSING Computer POLICY
    ; Source file:  Machine\Registry.pol
    
    Computer
    Software\Policies\Microsoft\Windows Defender
    DisableRoutinelyTakingAction
    DWORD:1
    
    Computer
    Software\Policies\Microsoft\Windows Defender
    PUAProtection
    DWORD:1
    
    Computer
    Software\Policies\Microsoft\Windows Defender\Reporting
    DisableEnhancedNotifications
    DWORD:1
    
    Computer
    Software\Policies\Microsoft\Windows Defender\Reporting
    DisableGenericRePorts
    DWORD:1
    
    Computer
    Software\Policies\Microsoft\Windows Defender\Scan
    ScanOnlyIfIdle
    DWORD:1
    
    Computer
    Software\Policies\Microsoft\Windows Defender\Scan
    ScanParameters
    DWORD:1
    
    Computer
    Software\Policies\Microsoft\Windows Defender\Scan
    ScheduleDay
    DWORD:8
    
    Computer
    Software\Policies\Microsoft\Windows Defender\SmartScreen
    ConfigureAppInstallControl
    SZ:Anywhere
    
    Computer
    Software\Policies\Microsoft\Windows Defender\SmartScreen
    ConfigureAppInstallControlEnabled
    DWORD:0
    
    Computer
    Software\Policies\Microsoft\Windows Defender\Spynet
    DisableBlockAtFirstSeen
    DWORD:1
    
    Computer
    Software\Policies\Microsoft\Windows Defender\Spynet
    LocalSettingOverrideSpynetReporting
    DWORD:0
    
    Computer
    Software\Policies\Microsoft\Windows Defender\Spynet
    SpynetReporting
    DWORD:0
    
    Computer
    Software\Policies\Microsoft\Windows Defender\Spynet
    SpyNetReportingLocation
    DWORD:0
    
    Computer
    Software\Policies\Microsoft\Windows Defender\Spynet
    SubmitSamplesConsent
    DWORD:2
    
    ; PARSING COMPLETED.
    ; ----------------------------------------------------------------------
    
    
    ps: you can use LGPO to add/merge them. For example:
    let's say you copy the parsed text to file named DEFENDER.txt

    to make .pol from .txt :
    LGPO.exe /r "DEFENDER.txt" /w "DEFENDER.pol"
    (/r for read /w for write)

    to add registry keys from text: LGPO.exe /t "DEFENDER.txt"
    (don't remove "computer" from .txt otherwise it doesn't know where to add between HKLM or HKCU)
    I compared and it's a bit faster than same reg add commands.

    to add/merge policies to Group Policy editor :
    LGPO.exe /m "DEFENDER.pol"
    ( /m stands for machine policies, same for user would be /u )

    add /q switch for quiet mode and/or you can add >nul 2>&1 for batch files.
    for ex: "%Tmp_Folder%\Files\Utilities\LGPO.exe" /m "%Tmp_Folder%\Files\LGPO\DEFENDER.pol" /q >nul 2>&1
     
  11. Species8472

    Species8472 MDL Novice

    Joined:
    Nov 18, 2012
    Messages:
    23
    Likes Received:
    1
    Trophy Points:
    0
    Noted Thomas. Thanks very much for the help
     
  12. Feniksrising

    Feniksrising MDL Member

    Joined:
    Nov 27, 2016
    Messages:
    174
    Likes Received:
    129
    Trophy Points:
    10
    Also if you are a gamer who plays the latest games with the latest GPU/CPU don't use LTSC. You will run into problems because Nvidia is not targeting 1903 with their drivers. Edit ltsc was 1809 how time flies.
     
  13. AndyMutz

    AndyMutz MDL Senior Member

    Joined:
    Jun 30, 2011
    Messages:
    272
    Likes Received:
    547
    Trophy Points:
    10
    please post details about such problems, as I still game on LTSB 2016 with a nvidia 1080TI and I have not encountered any problems to date.

    -andy-
     
  14. hakah

    hakah MDL Member

    Joined:
    Apr 4, 2014
    Messages:
    171
    Likes Received:
    101
    Trophy Points:
    10
    Enthousiast : Can you please provide me with the valid download link of the software below :
    Windows 10 Enterprise LTSC 2019 .
    Thanks very much for the help!
     
  15. Grosminet

    Grosminet MDL Novice

    Joined:
    Jul 8, 2016
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    0
    Hello,
    I have Windows 10 Entreprise LTSC French version 1809 (17763.615) .I would like to upgrate for the french version 1903. Could you help me because I am bad in computers….
     
  16. whitestar_999

    whitestar_999 MDL Addicted

    Joined:
    Dec 9, 2011
    Messages:
    584
    Likes Received:
    255
    Trophy Points:
    30
    There is no LTSC version 1903,only 1809.If you want 1903 use non-LTSC/regular win 10 pro.
     
  17. Techseeder

    Techseeder MDL Novice

    Joined:
    Jul 14, 2017
    Messages:
    36
    Likes Received:
    10
    Trophy Points:
    0
    What happened to s1ave77s S-M-R-T SVF ISO CONVERTER? Did he left and not going to come back?
     
  18. whitestar_999

    whitestar_999 MDL Addicted

    Joined:
    Dec 9, 2011
    Messages:
    584
    Likes Received:
    255
    Trophy Points:
    30
    Converter was long dead before he left.As for coming back,no idea but doesn't look like anytime soon.You can still find him though on select online places(but not often I think compared to here).
     
  19. 7Lover

    7Lover MDL Novice

    Joined:
    Oct 17, 2009
    Messages:
    37
    Likes Received:
    14
    Trophy Points:
    0
  20. Techseeder

    Techseeder MDL Novice

    Joined:
    Jul 14, 2017
    Messages:
    36
    Likes Received:
    10
    Trophy Points:
    0
    any other way to acquire ltsc 2019 iso?