I have an existing Batch script that I need to rewrite as a Powershell script. However, it contains the following command that doesn't seem to have a Powershell equivalent.
copy *.0* /b output.bin
Is there a simpler way to do this than 'manually' iterating over each block of data in every file using [IO.File]::OpenRead() and appending it to the output?
Note that executing the copy command using cmd /c is not an option.