Did you disable fast boot in Windows?
If you didn't, don't worry. I made this script. If fast boot isn't disabled, it will delete a file used to make windows boot faster. For some reason you must run first ntfsfix before being able to mount your partition.
#!/bin/bash
sudo ls >/dev/null
if sudo -n true 2>/dev/null; then
echo -e "\033[0;36mGot temporary sudo session. This script won't work if the volume is already mounted.\n \033[0m"
fdisk -l | grep -C0 'basic data'
echo -e "\n"
echo -e -n "Enter windows partition identifier (format: \033[0;36msdX#\033[0m): "
read disk
sudo ntfsfix /dev/$disk >/dev/null
sudo mkdir /kek
sudo mount -t ntfs-3g -o remove_hiberfile /dev/$disk /kek
sudo umount /kek
sudo rmdir /kek
sudo -k
echo "Temporary sudo session killed."
else
echo "Pls try again"
fi