Search results for query: *

  1. Cryso Agori

    Implementing Multi-threading/Parallel processing in script

    It's ok, Stackoverflow and reddit got me what I needed. your fine.:yousmart
  2. Cryso Agori

    Implementing Multi-threading/Parallel processing in script

    I have this simple script that allows me to copy and paste items in a different folder while also changing their name in windows Powershell. $destfolder = '.\destfolder\' get-childitem -Recurse -File .\srcfolder\ | Foreach-Object { $newname = $_.name $newname = $_.directory.parent.name +...
Back
Top