I have a very simple script that uses Copy-Item in the Task Build section following the psake conventions (and examples). Right now that's all it does in an attempt to simplify the script to debug this issue.

The Error:

18/07/2011 5:40:57 PM: An Error Occurred:

Exec: Error executing command: Copy-Item "$src_dir..\somefolder*.dll" $bin_dir

I have tried just outputting the file paths via Write-Host and they look fine.

I need some help please debugging this, getting the script code (Copy-Item) to work in isolation to psake isn't an objective.

The Script:

Properties {
    $src_dir = Split-Path $psake.build_script_file
    $bin_dir= "$build_dir\..\Binaries\"
}

include .\psake_ext.ps1

Task Build -Depends Clean, Init {
    Write-Host "about to error here:"

    Exec { Copy-Item "$src_dir\..\somefolder\*.dll" $bin_dir }

    Write-Host "do NOT get this far"
    #more similar Exec copy commands, that don't execute
}

Task Clean {    

}

Also note:

This script was working and only intermittently failing in the very recent past, but now seems to fail more consistently.

Executed via:

.\psake.ps1 "failing-copy-script.ps1" Build
link|improve this question

71% accept rate
1  
Why is this question closed?? Voted for reopening.. – stej Jul 18 '11 at 21:20
I don't use PSake, but I would bet that it isn't blocking errors from being stored in $Error. – JasonMArcher Jul 18 '11 at 21:29
The error was something strange happening with locking of files, something external to the script. It would always be solved by closing a few applications / system restart, so I flagged the question for closing myself. Did not think "have you tried turning it off and on again" was a good answer. – Nick Josevski Jul 18 '11 at 22:04
Part of the problem was using 'Exec { Copy-Item }' -- advice is don't. Just call 'Copy-Item' – Nick Josevski Jul 19 '11 at 3:41
@Dori♦ @Dori - Why was this closed?? – manojlds Jul 22 '11 at 7:03
show 2 more comments
feedback

1 Answer

up vote 1 down vote accepted

So this question has an answer, summarizing the comments from question and other info:

If you are experiencing this issue diagnostic steps to take:

  1. "Have you tried turning it off and on again?" - Close anything that may have to do with the script, including your IDE, even restart your machine.
  2. Try a tool like lockhunter
  3. Avoid using 'Exec { bla }' command if it is not required.
  4. Search for hooks with Process Explorer
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.