LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   How to Transfer Files from Windows to Linux on a formerly Dual-Booting configured Machine? (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-transfer-files-from-windows-to-linux-on-a-formerly-dual-booting-configured-machine-4175647507/)

zavmat 02-02-2019 01:37 PM

How to Transfer Files from Windows to Linux on a formerly Dual-Booting configured Machine?
 
I can no longer boot into Windows after messing around with my partitions. Before I wipe the disk to free up some space I wanted to retrieve any surviving files from Windows.

colorpurple21859 02-02-2019 01:55 PM

from your file manager, you should be able to click on the windows partition and copy files off of it. If not post the output of
Code:

sudo fdisk -l
so we can see if your windows partition still exist and what partition it is on

zavmat 02-02-2019 02:14 PM

Code:

[root@localhost ~]# sudo fdisk -l
Disk /dev/sda: 698.7 GiB, 750156374016 bytes, 1465149168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: B7850B5C-4716-CC49-9BFC-C316EAA97D14

Device          Start        End  Sectors  Size Type
/dev/sda1        2048    411647    409600  200M EFI System
/dev/sda2      673792  552939512 552265721 263.3G Windows recovery environment
/dev/sda3  552939519 1105205239 552265721 263.3G Microsoft basic data
/dev/sda4  1360289793 1412718592  52428800    25G Microsoft basic data
/dev/sda5  1105205248 1107302399  2097152    1G Linux filesystem
/dev/sda6  1107302400 1360289791 252987392 120.6G Linux LVM

Partition 3 does not start on physical sector boundary.
Partition 4 does not start on physical sector boundary.
Partition table entries are not in disk order.




Disk /dev/mapper/fedora-root: 50 GiB, 53687091200 bytes, 104857600 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/sdb: 3.7 GiB, 4004511744 bytes, 7821312 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x7c3f77cf

Device    Boot  Start    End Sectors  Size Id Type
/dev/sdb1  *        0 3772415 3772416  1.8G  0 Empty
/dev/sdb2      116708  136667  19960  9.8M ef EFI (FAT-12/16/32)
/dev/sdb3      136668  178683  42016 20.5M  0 Empty


Disk /dev/mapper/fedora-swap: 5.9 GiB, 6266290176 bytes, 12238848 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/mapper/fedora-home: 64.8 GiB, 69575114752 bytes, 135888896 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes

Are you allowed to link to other threads? I just want to give you an idea of everything that was done so far so that we don't accidentally repeat a lot of the same stuff.

BW-userx 02-02-2019 03:06 PM

can you still boot your linux? if yes then file manger into it, or mount it then go in that way, or live usb stick and go in that way to get your files out of windows.

zavmat 02-02-2019 04:13 PM

I can still boot linux, I spent the last week with rknichols helping me get to that point. Now I just need to get my files from the unbootable windows back if possible.

lleb 02-02-2019 04:25 PM

Quote:

Originally Posted by zavmat (Post 5956940)
I can still boot linux, I spent the last week with rknichols helping me get to that point. Now I just need to get my files from the unbootable windows back if possible.

this line from your output you are looking for is:

Code:

/dev/sda3  552939519 1105205239 552265721 263.3G Microsoft basic data
That tells you it is on sda3.

https://linuxconfig.org/how-to-mount...d-write-access

read up, that should help, best of luck.

zavmat 02-02-2019 05:07 PM

Much obliged, thank you.

lleb 02-02-2019 05:14 PM

if the information helped, please mark this thread solved.

Thank you.

zavmat 02-02-2019 06:16 PM

Unfortunately not,

Code:

[root@localhost Desktop]# fdisk -l | grep NTFS
Partition 3 does not start on physical sector boundary.
Partition 4 does not start on physical sector boundary.
[root@localhost Desktop]# mkdir /mnt/ntfs
[root@localhost Desktop]# mount -t ntfs /dev/sda3 /mnt/ntfs
ntfs_mst_post_read_fixup_warn: magic: 0x00000001  size: 1024  usa_ofs: 18311  usa_count: 0: Invalid argument
Record 0 has no FILE magic (0x1)
Failed to load $MFT: Input/output error
Failed to mount '/dev/sda3': Input/output error
NTFS is either inconsistent, or there is a hardware fault, or it's a
SoftRAID/FakeRAID hardware. In the first case run chkdsk /f on Windows
then reboot into Windows twice. The usage of the /f parameter is very
important! If the device is a SoftRAID/FakeRAID then first activate
it and mount a different device under the /dev/mapper/ directory, (e.g.
/dev/mapper/nvidia_eahaabcc1). Please see the 'dmraid' documentation
for more details.


colorpurple21859 02-02-2019 07:17 PM

looks like you need a windows repair disk. install disk, winpe iso something similar so you can run chkdsk, files still may not be recoverable based on your previous threads

zavmat 02-02-2019 07:31 PM

can you install winpe on linux? to be clear, are you suggesting to reinstall windows and then run checkdisk to find the files? would it be possible to do so on a virtual machine?

colorpurple21859 02-02-2019 07:57 PM

Quote:

are you suggesting to reinstall windows and then run checkdisk
no run chkdsk from a windows installation/recovery cd/iso/usb

https://www.microsoft.com/en-us/soft...d/windows10ISO
https://www.ghacks.net/2018/05/25/wi...le-usb-woeusb/
https://neosmart.net/blog/windows-recovery-discs/

BW-userx 02-02-2019 08:00 PM

repair mbr, boot might do you some good, looks like it may have been using hibernation that is why it is telling you its screwed up via linux. but you need a version of your windows install disk to repair it.

https://www.easeus.com/partition-mas...indows-10.html

if it fixes you'll be booting windows like no linux installed, then before you do this created a supergrub2 boot usb stick , it might get you back in, its been a long time sense I've had to use that in this particular issue. maybe a usb live to reinstall grub.

zavmat 02-04-2019 01:46 PM

The easeus people want money for all the software that you need to follow these instructions. The free versions do not allow you to use the part of the software needed. Likewise the software I found to mount the windows .iso image says the image is too large to mount on the current usb that I have, so I'll go to the store today and get a larger USB and an external Hard drive.

colorpurple21859 02-04-2019 04:40 PM

If you still get a file to large error install woeusb, It may be in fedoras you may be able to install with
Code:

sudo dnf install WoeUSB
https://fedora.pkgs.org/29/fedora-up...86_64.rpm.html
from your fedora
use woesusb from the command line when you run WoeUSB from graphical menu it automatically reformats the usb to fat32. Start WoeUSB from the command line with something similar to this

Code:

woeusb \
    --target-filesystem NTFS \
    --device Win10_1809Oct_EnglishInternational_x64.iso /dev/sdX

the sdx will be different and the iso may be named different.

Refer: https://github.com/slacka/WoeUSB/wik...ize-limitation for more info

zavmat 02-05-2019 11:44 AM

I'm getting this error:

Code:

[root@localhost ~]# woeusb \
> --target-filesystem NTFS \
> --device Win10_1809Oct_English_x64.iso
process_commandline_parameters: Error: --device option requires 2 arguments!

Also, going through the graphical interface still fails because "in source image has exceed the FAT32 Filesystem 4GiB Single File Size Limitation and cannot be installed.

BW-userx 02-05-2019 11:48 AM

mmm how about destination path???

colorpurple21859 02-05-2019 11:56 AM

It would be this if the iso is in your Downloads folder and your in your home directory. Change sdb if your usb isn't sdb.

[root@localhost ~]# woeusb \
> --target-filesystem NTFS \
> --device Downloads/Win10_1809Oct_English_x64.iso /dev/sdb

zavmat 02-05-2019 11:57 AM

woops

zavmat 02-05-2019 12:00 PM

Code:

[root@localhost ~]# woeusb \
> --target-filesystem NTFS \
> --device Win10_1809Oct_English_x64.iso /dev/sdb
WoeUSB v3.2.12
==============================
check_runtime_parameters: Error: source media "Win10_1809Oct_English_x64.iso" not found or not a regular file or a block device file!

The file is "Win10_1809Oct_English_x64.iso" in /home/madmin/Downloads

zavmat 02-05-2019 12:10 PM

It is sdb, but for some reason in Disks the size slot is blank, should say something like 32 GiB. The iso is in the downloads folder

colorpurple21859 02-05-2019 12:31 PM

so it will be:
woeusb \
> --target-filesystem NTFS \
> --device /home/madmin/Downloads/Win10_1809Oct_English_x64.iso /dev/sdb

zavmat 02-05-2019 12:38 PM

[edit] Hang on there was a typo

Code:

[root@localhost ~]# woeusb \
> --target-filesystem NTFS \
> --device /home/madmin/Downloads/Win101808Oct_English_x64.iso /dev/sdb
WoeUSB v3.2.12
==============================
check_runtime_parameters: Error: source media "/home/madmin/Downloads/Win101808Oct_English_x64.iso" not found or not a regular file or a block device file!

Here's the file list for my root directory just in case:
Code:

[root@localhost ~]# ls
anaconda-ks.cfg


BW-userx 02-05-2019 12:38 PM

OTay
first to find where to go to..
Code:

lsblk
gives you mount points, pick the right one.
cd into where your iso is at then issue the command from there, else give it absolute path to iso.
try getting a new iso...

zavmat 02-05-2019 12:48 PM

Still no luck, with everything typed in properly I'm getting this:
Code:

[root@localhost ~]# woeusb \
> --target-filesystem NTFS \
> --device /home/madmin/Downloads/Win10_1809Oct_English_x64.iso /dev/sdb
WoeUSB v3.2.12
==============================
Mounting source filesystem...
Wiping all existing partition table and filesystem signatures in /dev/sdb...

wipefs: error: /dev/sdb: probing initialization failed: No medium found
The command "wipefs --all "${target_device}"" failed with exit status "1", program is prematurely aborted
Unmounting and removing "/media/woeusb_source_1549392254_15236"...
You may now safely detach the target device

When I tried to format the flash drive, I chose to erase everything on it (warning this will take longer etc.), it took a half hour because it's 32 GiB. Before I did this the size of the flash drive said something like 27 GiB in the disks graphical utility, but afterwards it just shows a blank. Did I ruin the brand new flash drive already...

zavmat 02-05-2019 01:05 PM

No sdb
 
Code:

NAME            MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
sda              8:0    0 698.7G  0 disk
├─sda1            8:1    0  200M  0 part /boot/efi
├─sda2            8:2    0 263.3G  0 part
├─sda3            8:3    0 263.3G  0 part
├─sda4            8:4    0    25G  0 part
├─sda5            8:5    0    1G  0 part /boot
└─sda6            8:6    0 120.6G  0 part
  ├─fedora-root 253:0    0    50G  0 lvm  /
  ├─fedora-swap 253:1    0  5.9G  0 lvm  [SWAP]
  └─fedora-home 253:2    0  64.8G  0 lvm  /home
sr0              11:0    1  1024M  0 rom

I unplugged the flash drive and put it back in and now it's showing it:

Code:

NAME          MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
sda              8:0    0 698.7G  0 disk
├─sda1          8:1    0  200M  0 part /boot/efi
├─sda2          8:2    0 263.3G  0 part
├─sda3          8:3    0 263.3G  0 part
├─sda4          8:4    0    25G  0 part
├─sda5          8:5    0    1G  0 part /boot
└─sda6          8:6    0 120.6G  0 part
  ├─fedora-root
  │            253:0    0    50G  0 lvm  /
  ├─fedora-swap
  │            253:1    0  5.9G  0 lvm  [SWAP]
  └─fedora-home
              253:2    0  64.8G  0 lvm  /home
sdb              8:16  1  28.7G  0 disk
└─sdb1          8:17  1  28.7G  0 part /run/media/madmin/SanDisk Ultra USB 3.0
sr0            11:0    1  1024M  0 rom


zavmat 02-05-2019 03:39 PM

From sandisk:

Code:

[madmin@localhost SanDisk]$ woeusb \
> --target-filesystem NTFS \
> --device /home/madmin/Downloads/Win10_1809Oct_English_x64.iso /dev/sdb
WoeUSB v3.2.12
==============================
Warning: You are not running WoeUSB as root!
Warning: This might be the reason of the following failure.
Error: Target device is currently busy, unmount all mounted partitions in target device then try again
Target device is busy, please make sure you unmount all filesystems on target device or shutdown the computer before detaching it.

Unmounted:

Code:

[madmin@localhost SanDisk]$ woeusb \
> --target-filesystem NTFS \
> --device /home/madmin/Downloads/Win10_1809Oct_English_x64.iso /dev/sdb
shell-init: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
ERROR: error getting working directory name: no such file or directory
WoeUSB v3.2.12
==============================
Warning: You are not running WoeUSB as root!
Warning: This might be the reason of the following failure.
Mounting source filesystem...
mkdir: cannot create directory ‘/media/woeusb_source_1549403184_21191’: Permission denied
mount_source_filesystem: Error: Unable to create "/media/woeusb_source_1549403184_21191" mountpoint directory
mount: only root can use "--options" option
mount_source_filesystem: Error: Unable to mount source media
Error: Unable to mount source filesystem
You may now safely detach the target device


BW-userx 02-05-2019 03:46 PM

Code:

su //login as root run it again
cheers

Oh SH^^ if it does not have root use sudo

colorpurple21859 02-05-2019 03:50 PM

Quote:

Error: Target device is currently busy, unmount all mounted partitions
sudo umount /dev/sdb1

sudo woeusb \
> --target-filesystem NTFS \
> --device /home/madmin/Downloads/Win10_1809Oct_English_x64.iso /dev/sdb

zavmat 02-05-2019 03:52 PM

Code:

[root@localhost SanDisk]# sudo umount /dev/sdd1
[root@localhost SanDisk]# sudo woeusb \
> --target-filesystem NTFS \
> --device /home/madmin/Downloads/Win10_1809Oct_English_x64.iso /dev/sdd
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
WoeUSB v3.2.12
==============================
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
Mounting source filesystem...
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
Wiping all existing partition table and filesystem signatures in /dev/sdd...
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
/dev/sdd: 2 bytes were erased at offset 0x000001fe (dos): 55 aa
/dev/sdd: calling ioctl to re-read partition table: Success
Ensure that /dev/sdd is really wiped...
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
Creating new partition table on /dev/sdd...
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
Creating target partition...
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
Making system realize that partition table has changed...
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
Wait 3 seconds for block device nodes to populate...
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
Cluster size has been automatically set to 4096 bytes.
Creating NTFS volume structures.
mkntfs completed successfully. Have a nice day.
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
--2019-02-05 17:41:03--  https://github.com/pbatard/rufus/raw/master/res/uefi/uefi-ntfs.img
Resolving github.com (github.com)... 192.30.253.112, 192.30.253.113
Connecting to github.com (github.com)|192.30.253.112|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/pbatard/rufus/master/res/uefi/uefi-ntfs.img [following]
--2019-02-05 17:41:04--  https://raw.githubusercontent.com/pbatard/rufus/master/res/uefi/uefi-ntfs.img
Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 151.101.184.133
Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|151.101.184.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 524288 (512K) [application/octet-stream]
Saving to: ‘/tmp/WoeUSB.csS6z6.tempdir/uefi-ntfs.img’

uefi-ntfs.img      100%[===================>] 512.00K  993KB/s    in 0.5s   

2019-02-05 17:41:05 (993 KB/s) - ‘/tmp/WoeUSB.csS6z6.tempdir/uefi-ntfs.img’ saved [524288/524288]

job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
1024+0 records in
1024+0 records out
524288 bytes (524 kB, 512 KiB) copied, 0.190939 s, 2.7 MB/s
Mounting target filesystem...
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
Applying workaround to prevent 64-bit systems with big primary memory from being unresponsive during copying files.
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
Copying files from source media...
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
pushd: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
The command "pushd "${source_fs_mountpoint}" > /dev/null" failed with exit status "1", program is prematurely aborted
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error
/usr/bin/woeusb: line 1782: local: only_for_gui: readonly variable
The command "pushd "${source_fs_mountpoint}" > /dev/null" failed with exit status "1", program is prematurely aborted
job-working-directory: error retrieving current directory: getcwd: cannot access parent directories: Input/output error


colorpurple21859 02-05-2019 04:00 PM

Fedora uses sudo by default.
sudo su will let you become root

zavmat 02-05-2019 04:49 PM

Now the file manager is showing an "UEFI_NTFS" and a blank "Windows USB" where the flash drive was

colorpurple21859 02-05-2019 05:27 PM

If you didn't get no errors, see if it will boot.

zavmat 02-05-2019 05:43 PM

I tried to boot from the UEFI flash drive and got this in big yellow letters:

'\efi\boot\boot x64.efi': [14] Not Found

also sdb split in two:

Code:

sdb              8:16  1  28.7G  0 disk
├─sdb1            8:17  1  28.7G  0 part /run/media/madmin/Windows USB
└─sdb2            8:18  1  512K  0 part /run/media/madmin/UEFI_NTFS


BW-userx 02-05-2019 05:58 PM

did it show you a directory tree of sorts that you can navigate through it and look for a file to try booting it? (mine does)

zavmat 02-05-2019 06:18 PM

It hadn't, but I just went through the process again and is says target device should be bootable now.
I wonder if it is because there were actually files to be overridden this time that it worked. Another question I have is why the graphical utility had a maximum file size but the terminal command did not. I'll try booting now and let you know the results.

zavmat 02-05-2019 06:28 PM

I didn't get that error thankfully and it booted, I'm sending this from my phone now. I'm sitting at the choose an option menu. My next step according to your earlier suggestions is to run chkdsk. My choices are to do a recovery or install.

BW-userx 02-05-2019 06:33 PM

Quote:

Originally Posted by zavmat (Post 5958262)
I didn't get that error thankfully and it booted, I'm sending this from my phone now. I'm sitting at the choose an option menu. My next step according to your earlier suggestions is to run chkdsk. My choices are to do a recovery or install.

recovery first, to see if you can fix your mbr and boot list, you're going to lose linux grub but that is be gotten back..

zavmat 02-05-2019 06:34 PM

Unfortunately it needs a serial key to install which makes this basically useless. I'll try to fund a recovery specific windows 10 iso.

BW-userx 02-05-2019 06:35 PM

Quote:

Originally Posted by zavmat (Post 5958265)
Unfortunately it needs a serial key to install which makes this basically useless. I'll try to fund a recovery specific windows 10 iso.

did you try recovery yet?

also I just hit skip on that key thing and install and they have the key on the server with win 10, second time I had to install win10 it skipped the key thing and it is still a valid install os. but if you install you might lose your stuff, so again try repair to fix your mbr and boot list.

colorpurple21859 02-05-2019 06:44 PM

Ntfs doesn' have the file size limit that Fat32 has and the file size limit is exceded by the iso. The graphic utility defaults to fat32 which can be overridden when done from cli

zavmat 02-05-2019 06:57 PM

Repair failed, and I hear you on the installation precaution. I'm at a command prompt and I ran chkdsk but it only processed 7 files. Are these just on the usb?

colorpurple21859 02-05-2019 07:52 PM

What happens if at the cmd:
cmd: C:
cmd: chkdsk

BW-userx 02-05-2019 08:04 PM

I have no idea I am not there looking at it, to ever try to figure that one out.

zavmat 02-05-2019 10:06 PM

"Errors found cannot continue in read-only mode."

colorpurple21859 02-06-2019 05:04 AM

boot usb get to cmd
Code:

cmd chkdsk C:/f
cmd chkdsk C:/r

Don't do cmd C:

zavmat 02-06-2019 04:11 PM

I did that and nothing seems to have happened

colorpurple21859 02-06-2019 04:25 PM

did it come up with any errors, or the read only error again. Maybe you didn't give it long enough. As said in an earlier post, still may not be able to recover files if chkdsk can't fix the filesystem. maybe there needs to be a space between C: /r

zavmat 02-06-2019 04:37 PM

[edit] chkdsk c:/f is running now (I was writing cmd before it) right now C:/r is running there's about an hour left

zavmat 02-06-2019 06:21 PM

Chkdsk completed it says it made some recoveries, reallocated space and moved around some files. Still no luck booting into windows


All times are GMT -5. The time now is 01:52 PM.