Comment by zamadatix
Windows manages volume snapshots on NTFS through VSS. I think ZFS snapshots are a bit "cleaner" of a design, and the tooling is a bit friendlier IMO, but the functionality to snapshot, rollback, and save your bacon is there regardless. Outside of the automatically enabled "System Restore" (which only uses VSS to snapshot specific system files during updates) I don't think anyone bothers to use it though.
CoW, advanced parity, and checksumming are the big ones NTFS lacks. CoW is just inherently not how NTFS is designed and checksumming isn't there. Anything else (encryption, compression, snapshots, ACLs, large scale, virtual devices, basic parity) is done through NTFS on Windows.
ZFS snapshots based on CoW are superiour to VSS previous states as they work only on a good will base on open files while ZFS snapshots represent simply the last state of the fiesystem prior a datablock write.
Luckily OpenZFS on Windows is near (currently release candidate 11) with some remaining bugs around volume mount. If you avoid encrypted volumes not a serious problem, good enough for evaluation. Development is fast with a new release candidate every few weeks to adress remaining problems.
The sister project OpenZFS on OSX has already reached release state last week.