Anyone using the Presario 5110 must have been stuck on the Windows 11 24H2 ARM64 update. When trying to contact the manufacturer, we only received the response that there is no support, as the product was out of warranty. So, what to do?
Well, I successfully updated to version 25H2 and want to share it with you. If you have a working notebook, you can extract the drivers, or download the version I will provide for you. There are also drivers in the manufacturer's official repository, but unfortunately, it doesn't have all of them.
DOWNLOAD the PRESARIO 5110 drivers, and save them to C:\DriveLobo. If you don't have this file, ask me in the comments at the end of this page. Your contact information will not be visible on the site.
The solution will be to create a Windows 11 25H2 ARM64 Installation USB drive with all the PRESARIO 5110 drivers already included. Below, I show the step-by-step process of how to "inject" the C:\DriveLobo folder directly into the installation media, so that the keyboard, touchpad, and internet work from the very first formatting screen.
🛠️ Prerequisites
-
USB Drive: At least 8GB of storage.
-
Windows 11 25H2 ARM64 ISO: (Tip: Since Microsoft doesn't usually provide direct ARM64 ISOs easily outside the Insider program, you can generate your updated ISO using the script tool from the UUP Dump website).
-
Driver Folder: The
C:\DriveLobofolder containing all extracted drivers. -
Rufus: To create the bootable USB drive.
Step 1: Create the Base USB Drive
-
Connect the USB drive to your computer.
-
Open Rufus.
-
Under "Device," select your USB drive.
-
Under "Boot selection," choose your Windows 11 ARM64 ISO.
-
Under "Partition scheme," leave it as GPT and the target system as UEFI (non CSM).
-
Click START and wait for the process to finish.
Step 2: Prepare the Environment for Driver Injection
We will use the native Windows tool, DISM, to put your C:\DriveLobo folder inside the Windows files.
To make the process fast and avoid USB drive read errors, we will work directly on the hard drive (C:).
-
Open File Explorer on your
C:drive. -
Create two new folders:
-
C:\Mount(This folder will serve as a "surgery table" to open the system). -
C:\WIM(Here we will place the USB drive files).
-
-
Open your newly created USB drive, go to the
sourcesfolder, and copy the filesboot.wimandinstall.wim. -
Paste these two files into the
C:\WIMfolder.
(Note: If you find install.esd instead of .wim on the USB drive, you will need to convert it first, but the default generated by UUP Dump is usually .wim).
Step 3: Inject Drivers into the Installation File (install.wim)
This is the operating system itself.
-
Click the Start menu, type CMD, right-click on Command Prompt, and select Run as administrator.
-
Paste the command below to "open" the Windows image in the mount folder:
In the Command Prompt:dism /Mount-Image /ImageFile:C:\WIM\install.wim /Index:1 /MountDir:C:\Montagem -
Now, let's inject your driver folder. Paste the command:
In the Command Prompt:
dism /Image:C:\Montagem /Add-Driver /Driver:C:\DriveLobo /Recurse(You will see a list of drivers being successfully installed. Wait for it to finish).
-
Close the image, saving the changes:
In the Command Prompt:
dism /Unmount-Image /MountDir:C:\Montagem /Commit
Step 4: Inject Drivers into the Boot File (boot.wim)
This step is crucial. It ensures that the Presario 5110's keyboard and mouse (touchpad) work during the blue screen formatting screen. The boot file has two indexes (1 is the basic WinPE and 2 is the Windows Setup). We will inject into index 2.
In the same CMD as Administrator, execute the commands one by one:
-
Mount the Boot image:
In the Command Prompt:
dism /Mount-Image /ImageFile:C:\WIM\boot.wim /Index:2 /MountDir:C:\Montagem -
Inject the drivers:
In the Command Prompt:
dism /Image:C:\Montagem /Add-Driver /Driver:C:\DriveLobo /Recurse -
Save and unmount:
In the Command Prompt:
dism /Unmount-Image /MountDir:C:\Montagem /Commit
Step 5: Finalize the USB Drive
-
Now go to your
C:\WIMfolder. -
Copy the
boot.wimandinstall.wimfiles that you just modified. -
Paste them back into the
sourcesfolder of your USB drive, replacing the originals that are there. -
You can delete the
C:\MountandC:\WIMfolders to free up space.
Done! Your USB drive is supercharged and ready to install Windows 11 25H2 ARM64 on your Compaq Presario 5110 with all factory-recognized components.
Quem usa o Presario 5110 deve ter ficado parado na atualização Windows 11 24H2 ARM64. Ao tentar contactar o fabricante, tivemos só a resposta de que não tem assistência, pois o produto saiu do período da garantia. Então, o que fazer?
Pois bem, eu atualizei com sucesso para a versão 25H2 e quero compartilhar com vocês. Caso você tenha um notebook funcionando aí, pode extrair os drivers, ou baixar a versão que eu vou disponibilizar para vocês. Existem também no repositório oficial do fabricante, mas lamentavelmente ele não tem todos os drivers.
BAIXE os drives do PRESARIO 5110, e salve em C:\DriveLobo. Se você não tem este arquivo, me peça nos comentários no fim desta página. Suas informações de contato não ficarão visíveis aqui no site.
A solução será criar um pendrive de Instalação do Windows 11 25H2 para ARM64 já com todos os drivers do PRESARIO 5110. Abaixo, mostro o passo a passo de como "injetar" a pasta C:\DriveLobo direto na mídia de instalação, para que o teclado, touchpad e internet funcionem desde a primeira tela de formatação.
🛠️ Pré-requisitos
-
Pendrive: Pelo menos 8GB de armazenamento.
-
ISO do Windows 11 25H2 ARM64: (Dica: Como a Microsoft não costuma fornecer ISOs ARM64 diretas facilmente fora do programa Insider, você pode gerar a sua ISO atualizada utilizando a ferramenta de script do site UUP Dump).
-
Pasta de Drivers: A pasta
C:\DriveLobocontendo todos os drivers extraídos. -
Rufus: Para criar o pendrive bootável.
Passo 1: Criar o Pendrive Base
-
Conecte o pendrive ao computador.
-
Abra o Rufus.
-
Em "Dispositivo", selecione o seu pendrive.
-
Em "Seleção de inicialização", escolha a sua ISO do Windows 11 ARM64.
-
Em "Esquema de partição", deixe GPT e o sistema de destino como UEFI (não CSM).
-
Clique em INICIAR e aguarde o processo terminar.
Passo 2: Preparar o Ambiente para Injeção dos Drivers
Vamos usar a ferramenta nativa do Windows, o DISM, para colocar a sua pasta C:\DriveLobo dentro dos arquivos do Windows.
Para que o processo seja rápido e evite erros de leitura do pendrive, vamos trabalhar direto no disco rígido (C:).
-
Abra o Explorador de Arquivos no seu disco
C:. -
Crie duas pastas novas:
-
C:\Montagem(Esta pasta servirá como uma "mesa de cirurgia" para abrirmos o sistema). -
C:\WIM(Aqui colocaremos os arquivos do pendrive).
-
-
Abra o seu pendrive recém-criado, vá até a pasta
sourcese copie os arquivosboot.wimeinstall.wim. -
Cole esses dois arquivos dentro da pasta
C:\WIM.
(Nota: Se no pendrive você encontrar install.esd em vez de .wim, será necessário convertê-lo primeiro, mas o padrão gerado pelo UUP Dump costuma ser .wim).
Passo 3: Injetar os Drivers no Arquivo de Instalação (install.wim)
Este é o sistema operacional em si.
-
Clique no menu Iniciar, digite CMD, clique com o botão direito em Prompt de Comando e selecione Executar como administrador.
-
Cole o comando abaixo para "abrir" a imagem do Windows na pasta de montagem:
No Prompt de Comando:dism /Mount-Image /ImageFile:C:\WIM\install.wim /Index:1 /MountDir:C:\Montagem -
Agora, vamos injetar a sua pasta de drivers. Cole o comando:
No Prompt de Comando:
dism /Image:C:\Montagem /Add-Driver /Driver:C:\DriveLobo /Recurse(Você verá uma lista de drivers sendo instalados com sucesso. Aguarde terminar).
-
Feche a imagem salvando as alterações:
No Prompt de Comando:
dism /Unmount-Image /MountDir:C:\Montagem /Commit
Passo 4: Injetar os Drivers no Arquivo de Boot (boot.wim)
Este passo é crucial. É ele que garante que o teclado e o mouse (touchpad) do Presario 5110 funcionem durante a tela azul de formatação. O arquivo de boot tem dois índices (o 1 é o WinPE básico e o 2 é o Setup do Windows). Vamos injetar no índice 2.
No mesmo CMD como Administrador, execute os comandos um por vez:
-
Montar a imagem de Boot:
No Prompt de Comando:
dism /Mount-Image /ImageFile:C:\WIM\boot.wim /Index:2 /MountDir:C:\Montagem -
Injetar os drivers:
No Prompt de Comando:
dism /Image:C:\Montagem /Add-Driver /Driver:C:\DriveLobo /Recurse -
Salvar e desmontar:
No Prompt de Comando:
dism /Unmount-Image /MountDir:C:\Montagem /Commit
Passo 5: Finalizar o Pendrive
-
Agora vá até a sua pasta
C:\WIM. -
Copie os arquivos
boot.wimeinstall.wimque você acabou de modificar. -
Cole-os de volta na pasta
sourcesdo seu pendrive, substituindo os originais que estão lá. -
Você pode excluir as pastas
C:\MontagemeC:\WIMpara liberar espaço.
Pronto! Seu pendrive está turbinado e pronto para instalar o Windows 11 25H2 ARM64 no seu Compaq Presario 5110 com todos os componentes reconhecidos de fábrica.



