[DISCUSSION] Windows 11 Enterprise/IoT Enterprise (N) LTSC 2024 (24H2 / 26100.x)

Discussion in 'Windows 11' started by Enthousiast, Apr 26, 2024.

  1. Itzisaacog

    Itzisaacog MDL Novice

    Apr 4, 2024
    5
    4
    0
    Any recommendations for fix?
    I tried reinstalling driver, even fix corrupt files but not working.
    Weird that it works on pro version
     
  2. Hal2000

    Hal2000 MDL Junior Member

    Apr 26, 2014
    57
    36
    0
    Wmic has been disabled with one of the updates, several programs use this.

    Try the following:-

    CMD Admin

    dism /online /add-capability /capabilityname:WMIC~~~~
     
  3. Itzisaacog

    Itzisaacog MDL Novice

    Apr 4, 2024
    5
    4
    0
    Fixed thx.
     
  4. aab_

    aab_ MDL Member

    Jun 20, 2021
    114
    93
    10
    same edition here, issue not present
     
  5. aab_

    aab_ MDL Member

    Jun 20, 2021
    114
    93
    10
    That doesn't make sense. Do you mean "If you have nothing good to say then say nothing at all"
     
  6. Bersekz

    Bersekz MDL Junior Member

    Nov 17, 2016
    59
    3
    0
    I've installed Windows 11 IoT Enterprise LTSC 2024 and found missing stuff that should have been present:
    - Windows Terminal
    - winget
    - Pwsh (Powershell 7.x)
    - WSL2

    I also couldn't find a straightforward way to install winget.
     
  7. Paul Mercer

    Paul Mercer MDL Expert

    Apr 6, 2018
    1,934
    4,148
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. Bersekz

    Bersekz MDL Junior Member

    Nov 17, 2016
    59
    3
    0
    Code:
    irm asheroto.com/winget | iex
    This worked.
     
  9. monstrocity

    monstrocity MDL Junior Member

    Jun 4, 2016
    55
    33
    0
    PowerShell Gallery scripts like,
    Code:
    Install-Script -Name winget-install
    , won't work out of the box unless you install PowerShell 7.4 or higher.

    For PowerShell 5.1 run the following commands:
    Code:
    Install-Module PowerShellGet -Force -AllowClobber
    Code:
    Install-Module Microsoft.PowerShell.PSResourceGet -Repository PSGallery
    Code:
    Install-Script -Name winget-install


    However,
    Code:
    irm asheroto.com/winget | iex
    works if you can't be bothered with PowerShell 7.4+ or PowerShell Gallery in PowerShell 5.1.
     
  10. kyrcy

    kyrcy MDL Member

    Feb 25, 2020
    219
    9
    10
    With 24H2, it seems that it is not possible to manually create one partition to install and three partitions are automatically created instead. Is there a way to install on a single partition?
     
  11. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,186
    90,642
    340
    dism /Apply-Image + bcdboot
     
  12. kyrcy

    kyrcy MDL Member

    Feb 25, 2020
    219
    9
    10
  13. Atari800XL

    Atari800XL MDL Expert

    Apr 3, 2011
    1,001
    1,740
    60
    That's the beauty of it. You manage the partitioning yourself, then WinNTSetup (or like Abbodi1406 said: manual apply) doesn't screw with how you laid out things. System and boot drive can be the same, I've been doing it like that for years.
     
  14. kyrcy

    kyrcy MDL Member

    Feb 25, 2020
    219
    9
    10
    #2537 kyrcy, Dec 26, 2024 at 12:43
    Last edited: Dec 26, 2024 at 13:30
    Previously, I could create a single partition manually during installation and Windows would install on it without complaining, but this no longer works. As I never used WinNTSetup before, do what next to accomplish the same?
     
  15. Atari800XL

    Atari800XL MDL Expert

    Apr 3, 2011
    1,001
    1,740
    60
    What do you mean with "do what next"? Of course the answer is: Click all possible buttons and avoid reading any documentation.
     
  16. kyrcy

    kyrcy MDL Member

    Feb 25, 2020
    219
    9
    10
    #2539 kyrcy, Dec 26, 2024 at 13:34
    Last edited: Dec 26, 2024 at 14:38
    I don't see how clicking buttons in WinNTSetup will help. What I am asking is how to install on a single mbr partition. This used to work in Windows 10, by creating the partition using diskpart during installation, but not in Windows 11.
     
  17. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,755
    7,688
    210
    Might still work in the old Setup.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...