« More on Windows 8 and Office 2013 | Main | Patently Idiotic »

August 20, 2012

Comments

I just figured out how to create the csv...this is great...

Here the basis for a powershell script do something along the same lines.
---------------
$csvdata = import-csv -path 'c:\test.csv'

foreach ($row in $csvdata){

$src = $row.location.replace("profile group","basepath")
$dst = 'c:\docprod'
$description = $row.description
$docid = $row.docid
$switches = "robocopy switches"

robocopy $src $dst $docid $switches

}

powershell cmdlets import-csv and copy-item would do the trick too.

How do you print a worldox list to csv? haven't been able to figure that out.

I'm a new Worldox install and just came across your blog. It is fantastic. Thank You

The comments to this entry are closed.