
Lately I have moved away from using vanila command line of windows to using powershell
For may tasks I find it useful. Some are still better in the old cmd.
Here are few commands that I have regularly used in powershell.
Create a zip file with the contents of C:\Stuff\
Compress-Archive -Path C:\Stuff -DestinationPath archive.zip
Add more files to the zip file (Existing files in the zip file with the same name are replaced)
Compress-Archive -Path C:\OtherStuff*.txt -Update -DestinationPath archive.zip
Extract the zip file to C:\Destination\
Expand-Archive -Path archive.zip -DestinationPath C:\Destination
Copy files folders
Copy-Item -Path C:\PointA\1.txt -Destination C:\PointB\
A real example, something that is part of a backup script
powershell.exe -NoP -NonI -Command "Copy-Item -Path '%root%\apps_installer' -Recurse -Destination 'path\to\directory' -Container -force"
To explore more, type powershell in your windows command prompt and then type help.
One of the best thing about powershell is it extensive help.