Does XCOPY leave credentials cached in LSASS?
When using XCOPY to copy files to a remote machine, are your credentials used to connect to the remote machine cached in the LSASS of that machine? I am trying to avoid leaving any credentials …
Start Learning to Code
When using XCOPY to copy files to a remote machine, are your credentials used to connect to the remote machine cached in the LSASS of that machine? I am trying to avoid leaving any credentials …
I wanted to use robocopy, but it is not possible due to my text file has filenames attached. I ended up have to use copy instead. I wanted to copy files like this… Source: S:folderABCDE…
I’m trying to consolidate 5 very similar but slightly different tree structures into a single one but not lose any modified data. So, I need a solution that will: 1. Copy files that exist in the …
I have a number of files that follow a pattern like this:
I need to copy a file C:plst.m3u into all subfolders of C:Music. I’m using this command: FOR /R “C:Music” %G IN (.) DO xcopy “C:plst.m3u” %G It works, but only for the paths, which doesn’t …
I have 2 directories structures (A and B) that normally don’t overlap. I want to merge A into B. The following command will merge the directories: xcopy A B /E /Y However, I want to be able to …
I would like to copy files from one drive to another, but I only want to copy source files that are newer than the destination file. BUT, I also want to only copy source files that have been changed …
Is there anyway for me to quickly take an empty folder structure I have created on my desktop and copy it to 488 other folders all located on a network drive but in the same folder? My primary …
Following on from my discussion with @JustinD in the comments here, is it technically possible to simply xcopy the contents of a Windows partition to a partition freshly created and formatted on a new …
A person I know who is not very good with computers wants to have an easy way of backing up important files on Windows, with the ideal process being: Plug in USB drive Click on Desktop shortcut Have …