hi,
Will this work in powershell 2.0?. Add this function to you script. It should capture the calls to write-verbose. I do not have access to anything running powershell 2.0, so I cannot test it:
Function Global:Write-Verbose
{
Param(
[string] $Message
)
Add-Content -Path .\verbose.log -Value $Message
}