How to get copilot on the 11 iot ltsc? Has anyone found a way to get it working on iot? Even in future, please tag
I'm really satisfied with what I have seen and tested so far with Windows 11 Enterprise LTSC 2024. I will make final preparations to install it on my main machines as soon as possible now that the testing is done in Hyper-V. I'm exited to finally start migrating and leave Windows 10 Enterprise LTSC 2021 behind, Windows 10 in general (although I always keep a clean ISO lying around of everything just in case) Great times will come!
For days I couldn't install LTSC 2024. Finally installed it just today when I disabled "VMD controller" in BIOS
You don't gots the driver for it? If it's an 11th-13th gen platform, 19.5.7.1058 is the driver for you. But disabling the controller is a solution as well.
This didn't work for me in IoT LTSC either, no matter what i tried. I also could not uninstall edge even though i am in the EU region. I switched to regular Enterprise LTSC and now both work.
Right. Thank you. I should be adding my drivers to the Install.wim before installing because I was using WinNTSetup to do my testing
Hi, I've read on the first page of this thread that "Windows 11 IoT Enterprise 2024 LTSC doesn't check for the Win 11 system requirements": TPM / Secure boot / UEFI / 4GB RAM. But what about installing it on an unsupported CPU? Thanks NB: I'm very happy with Windows 10 IoT Enterprise 2021 LTSC, don't intend to upgrade before 2032!!!!
I have got it installed on a 2014 Mac Mini and it doesnt care about processor. Providing you have POPCNT you should be fine. Windows 11 24H2 IOT LTSC funnily enough runs better than macOS 12 Monterrey does on it. Makes a really useful mini PC for me. Might use it with the TV eventually for media center purposes. I just booted by using option key and wiped the macOS 12 install with Windows as I didn't want to dual boot and have no need for another mac. I have an M1 Air on macOS 14 Sonoma along with a 4,1 Mac Pro running 10.13 High Sierra, 10.9 Mavericks and 10.6 Snow Leopard so can even run old PowerPC mac apps under rosetta via Snow Leopard.
Well it is possible to unlock Edge uninstall on IOT LTSC by using the same underlying mechanism that Microsoft put in place to meet DMA requirements. However it behaves a little strange on IOT, leaving behind some files and does not remove the registered MicrosoftEdge.Stable appx entries.
OS Name Microsoft Windows 10 Enterprise LTSC Processor Intel(R) Pentium(R) CPU G2030 @ 3.00GHz, 3000 Mhz, 2 Core(s), 2 Logical Processor(s) BIOS Version/Date American Megatrends Inc. 0503, 21-07-2014 SMBIOS Version 2.7 Embedded Controller Version 255.255 BIOS Mode Legacy BaseBoard Manufacturer ASUSTeK COMPUTER INC. BaseBoard Product H61M-CS BaseBoard Version Rev X.0x Secure Boot State Unsupported Hardware Abstraction Layer Version = "10.0.17763.4644" Installed Physical Memory (RAM) 4.00 GB Total Physical Memory 3.88 GB Available Physical Memory 1.19 GB Total Virtual Memory 5.76 GB Available Virtual Memory 2.77 GB Device Encryption Support Reasons for failed automatic device encryption: TPM is not usable, PCR7 binding is not supported, Hardware Security Test Interface failed and device is not InstantGo, Un-allowed DMA capable bus/device(s) detected, TPM is not usable Hyper-V - VM Monitor Mode Extensions Yes Hyper-V - Second Level Address Translation Extensions Yes Hyper-V - Virtualization Enabled in Firmware No Hyper-V - Data Execution Protection Yes Can i install windows 11 ltsc iot on this hardware ?
Actually, I am always using the English display language and only adding my local language from the control panel under the region to support non-English applications. So can I use this OEM?
Found some more reg entries for nipping copilot. Spoiler: reg Code: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Copilot] "IsCopilotAvailable"=dword:00000000 "CopilotDisabledReason"="FeatureIsDisabled" [HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Copilot\BingChat] "IsUserEligible"=dword:00000000 And here is the .bat form for making it default for all users. Apply preferably during clean install with autounattend or OEM folder. Alternatively, run it for future users on your current install, or mount the install.wim's correct ntuser.dat and manually add the entries. Spoiler: c:\users\default Code: @Echo Off :: :: REQUESTING ADMIN :: >nul 2>&1 reg query "HKU\S-1-5-19\Environment" if '%errorlevel%' NEQ '0' ( (echo.Set UAC = CreateObject^("Shell.Application"^)&echo.UAC.ShellExecute "%~s0", "", "", "runas", 1)>"%tmp%\getadmin.vbs" "%tmp%\getadmin.vbs" exit /B ) else ( >nul 2>&1 del "%tmp%\getadmin.vbs" ) :: Reg.exe load HKU\DefaultUser "C:\Users\Default\NTUSER.DAT" timeout 1 /nobreak > nul Reg.exe add "HKU\DefaultUser\Software\Microsoft\Windows\Shell\Copilot" /v "IsCopilotAvailable" /t REG_DWORD /d "0" /f Reg.exe add "HKU\DefaultUser\Software\Microsoft\Windows\Shell\Copilot" /v "CopilotDisabledReason" /t REG_SZ /d "FeatureIsDisabled" /f Reg.exe add "HKU\DefaultUser\Software\Microsoft\Windows\Shell\Copilot\BingChat" /v "IsUserEligible" /t REG_DWORD /d "0" /f timeout 1 /nobreak > nul Reg.exe unload HKU\DefaultUser Exit