368d6fafea
Code backup
11 lines
459 B
PowerShell
11 lines
459 B
PowerShell
$program = "C:\Users\cbo\Desktop\IfcConvert.exe";
|
|
$elements = @(
|
|
"C:\Users\cbo\Desktop\IFC\ABI\2024-12-18\Recycling-Foundation.ifc C:\Users\cbo\Desktop\IFC\ABI\2024-12-18\Recycling-Foundation.stp"
|
|
"C:\Users\cbo\Desktop\IFC\ABI\2024-12-18\Recycling-Other building.ifc C:\Users\cbo\Desktop\IFC\ABI\2024-12-18\Recycling-Other building.stp"
|
|
)
|
|
|
|
foreach ($e in $elements) {
|
|
Start-Process -FilePath $program -ArgumentList $e
|
|
}
|
|
|
|
Write-Output "All Process started" |