Which of the following Powershell commands will take all files from the desktop "TestArchive" directory, and archive it in a "TestArchive.zip" file?
1) Compress-Archive -Path C:\Users\Desktop\TestArchive -DestinationPath C:\Users\Desktop\TestArchive.zip
2) Copy-Item -Path C:\Users\Desktop\TestArchive -Destination C:\Users\Desktop\TestArchive.zip
3) Move-Item -Path C:\Users\Desktop\TestArchive -Destination C:\Users\Desktop\TestArchive.zip
4) New-ZipFile -Path C:\Users\Desktop\TestArchive.zip -SourcePath C:\Users\Desktop\TestArchive