After installation system boots directly to Windows.
Manjaro can be booted using the system's firmware boot-override.
This could be due to Windows being installed using legacy boot on GPT.
When Manjaro is booted from USB on a EFI enabled system it will boot in EFI mode and install in EFI mode.
Most firmware which provides both Legacy boot (CSM or Compatibility Mode) and EFI will try Legacy before EFI and therefore Manjaro is only bootable when selected from the firmware boot override.
In theory - it should be possible to change system boot from EFI to Legacy, by manipulating the partition table.
The following is untested - it is speculative but based on my knowledge of GPT partition table - no warrent you will succeed - manipulating the filesystem partition have the potential of being destructive - beware - there be dragons!
$ lsblk -lno NAME,PARTTYPENAME,MOUNTPOINT
To change from EFI to Legacy, by changing the EFI partition type from 0xEF00 to 0x0700 and run the grub installer for Legacy boot. This does not require booting from a live ISO - boot using your system's boot override to select Manjaro. Just in case the solution does not work - be sure to have a working bootable USB stick at hand to be able to revert the changes.
Login and open a terminal - first un-mount the EFI partition
# umount /boot/efi
Then edit your fstab and comment the line mounting your EFI partition
# nano /etc/fstab
Locate the line reading UUID=x-y where x-y is a placeholder the UUID on the system in question
UUID=x-y /boot/efi vfat umask=0077 0 2
And add a # in the beginning of the line
#UUID=x-y /boot/efi vfat umask=0077 0 2
Press F2 y to save the file
Then run a partition tool and change the partition type for the EFI partition. Depending on your system you need to replace $DEVICE with your actual device name
# cgdisk /dev/$DEVICE
First verify if a legacy boot partition exist - it is usually located at the beginning of the disk as type BIOS boot partition. The size is usually very small 1M sometimes 16M.
If it is not present you need to create it. While often located within the first MB's of the device this is not mandatory. What is mandatory is the partition type 0xEF02 and it must be unformatted.
If you have available 1024KiB space at the beginning of the disk you can create within that space
[ New ]
EF02
and press EnterSelect the EFI partition
[ Type ]
0700
and press Enteryes
in all lowercase and press EnterRun grub installer for legacy boot - target the primary device /dev/$DEVICE
# grub-install --target=i386-pc --recheck --boot-directory=/boot /dev/$DEVICE
Reboot the system