Tagged Questions
The copy-item tag has no wiki summary.
9
votes
2answers
3k views
Progress during large file copy (Copy-Item & Write-Progress?)
Is there any way to copy a really large file (from one server to another) in Powershell AND display it's progress?
There are solutions out there to use Write-Progress in conjunction with looping to ...
5
votes
3answers
13k views
Powershell Copy-Item but only copy changed files
I am trying to recurse through a directory and copy it from A to B. That can be done with the following:
Copy-Item C:\MyTest C:\MyTest2 –recurse
I want to be able though to only copy new files ...
3
votes
1answer
2k views
What is the meaning of Powershell's Copy-Item's -container argument?
I am writing a script for MS PowerShell. This script uses the Copy-Item command. One of the optional arguments to this command is "-container". The documentation for the argument states that ...
2
votes
1answer
2k views
PowerShell: Copy-Item Cannot find path
I'm trying to get PowerShell to copy files from a remote computer (on which I have admin rights through AD) to the local computer.
It fails in the strangest place. Here's a snippet of the script:
...
1
vote
1answer
309 views
Copy-Item cmdlet should only copy difference
Im writeing a backupscript useing powershell. I know that i could just use robocopy or rsync but i would like to do this in powershell. The problem i have has to do with the copy-item cmdlet. What my ...
1
vote
2answers
438 views
PowerShell copy fails without warning
Howdy, am trying to copy a file from IE cache to somewhere else. This works on w7, but not Vista Ultimate.
In short:
copy-item $f -Destination "$targetDir" -force
(I also tried $f.fullname)
The ...
1
vote
1answer
708 views
PowerShell Copy-Item what I'm doing wrong?
Given the dir structure:
x\Code
x\Script\Backup.ps1
Backup.ps1 contains:
$BackupDirectoy = "..\Backup"
$CodeDirectory = "..\Code"
function BackupCurrentVersion()
{
New-Item ...
1
vote
2answers
1k views
How Do I copy the files and the Folder Tree to Remote Machine?
I have two machines Server A and Server B I want to copy all the files and folder tree from Server A to Server B and create the same file and folder tree using powershell scripting
I have tried the ...
0
votes
1answer
564 views
powershell error checking during file copy with recursion
I have a program that copies folders and files recursively.
example:
Copy-Item -path "$folderA" -destination "$folderB" -recurse
Sometimes the files do not copy. Is there a way to "step inside the ...
0
votes
1answer
824 views
Powershell filter files by SQL Server result set and copy
I am executing a query in SQL Server and returning a single column result set. I need to loop through the result set and find file names matching the record from the result set. Part of the file name ...