PowerShell Enumerate Folder with -exclude and returning resulting folders/files

Create a Batch file containing the following:

@echo off
@echo 100...
@powershell "Get-ChildItem -Path \\192.168.1.1\Data\Splitting\100_*.* | Select-Object FullName"
@echo Alle anderen (ausser excluded)...
@powershell "Get-ChildItem -Path \\192.168.1.1\Data\Splitting\*.* -Exclude @('100_*.*','_a file to exclude containing Spaces.bat') | Select-Object FullName"
pause