Windows dd Command: Access is Denied Error

I need to create a .dd image of one of my drive in windows, For this I chose dd utility. However it is generating aforementioned error while creating image. I have opened command line as Administrator. Below is command I am using and generated error.

C:\Users\hp\Downloads\dd-0.5>dd if=D: of=E:tempdisk1.dd bs=8M
rawwrite dd for windows version 0.5.
Written by John Newbigin <>
This program is covered by the GPL. See copying.txt for details
read 95 disk NYI
Error opening input file: 5 Access is denied

1 Answer

The references to the in and output files are wrong. In the manual of dd, it shows how to reference a partition and how to copy it:

dd if=\\.\d: of=e:\tempdisk1.dd bs=8M
1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like