Can I somehow exclude a folder when I compress an archive like this?
$compress = Compress-Archive $DestinationPath $DestinationPath\ARCHIVE\archiv-$DateTime.zip -CompressionLevel Fastest
Now it always saves the whole folder structure of $destinationpath
to the archive, but since the archive is in the same folder, it always gets zipped into a new archive, making the archive double in size every time I run the command.