Unable to boot windows after starting latest installer

Hi, i’m unable to boot into windows 10 1909 enterprise after booting into the manjaro installer. I’ve encountered this problem before when installing ubuntu. Is this a problem with manjaro, the linux kernel, windows or my stupidity?
Thanks

Hello @pro0110 :wink:

That are very vague information. Maybe check your UEFI Bootloader?

What information do you need? I have not modified the UEFI bootloader in any way.

Systeminformation:

inxi -Fxza --no-host

Calamares log:

sudo calamares -d

(Should be also available at /var/log/calamares.log or similar)

Check if you booted in EFI or BIOS mode:

test -d /sys/firmware/efi && echo efi || echo bios

UEFI Entries:

efibootmgr -v

Partitioning:

sudo parted -l

Additional information for partitioning:

lsblk -o PATH,LABEL,PTTYPE,PARTTYPE,FSTYPE,PARTTYPENAME,FSUSE%,MOUNTPOINT

Please always use this for each output:

```
terminal output
```

or

~~~
terminal output
~~~

Note: For very long logs like calamares.log, please use an external service of your choice.

My eyes will be greatly thankful :slight_smile:

inxi -Fxza --no-host - Pastebin.com inxi -Fxza --no-host
sudo calamares -d returns sudo: calamares: command not found
/var/log/calamares.log does not exist
Booted into EFI
efibootmgr -v - Pastebin.com efibootmgr -v
sudo parted -l - Pastebin.com sudo parted -l
lsblk -o PATH,LABEL,PTTYPE,PARTTYPE,FSTYPE,PARTTYPENAME,FSUSE%,MOUNTPOINT - Pastebin.com lsblk -o PATH,LABEL,PTTYPE,PARTTYPE,FSTYPE,PARTTYPENAME,FSUSE%,MOUNTPOINT

It would probably be worth saying that i am dual booting manjaro and windows now.

@pro0110 sorry for the late answer. I have not received any notification.

Model: ATA WDC WD3200AAKX-7 (scsi)
Disk /dev/sda: 320GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags: 

Number  Start   End    Size    File system  Name                          Flags
 1      17.4kB  134MB  134MB                Microsoft reserved partition  msftres
 2      135MB   690MB  555MB   ntfs         Basic data partition          hidden, diag
 3      690MB   795MB  105MB   fat32        EFI system partition          boot, esp
 4      795MB   235GB  235GB   ext4
 5      235GB   320GB  84.6GB  ntfs         Basic data partition          msftdata

What I see here at least is that Windows was installed first, but i guess in BIOS mode on a GPT partition table (or did you convert it?). Manjaro created a EFI partition, since it was booted in EFI mode. And here is the problem. If Windows has not been installed in EFI mode, then Grub will not find the Windows Bootloader. Both OSs have to be installed with the same mode. BIOS or UEFI.

Hope that makes it clear.