setup.ps1 223 B

12345678
  1. Push-Location fmus\ThirdParty
  2. $fmus = Get-ChildItem | Where-Object {$_.Extension -eq ".fmu"}
  3. ForEach ($fmu In $fmus){
  4. $fNameString = $fmu.BaseName
  5. 7z x "$fNameString.fmu" -o".\$fNameString" -aoa
  6. }
  7. Pop-Location
  8. pause