What is the purpose of the .ZFSendToTarget extension?

24,659

There's an entry in the Send To menu, which is obtained by right-clicking on a file, called "Compressed (zipped) Folder".

Send To entry for "Compressed (zipped) Folder"

If you take a look at the folder specifying the entries for the Send To menu, %APPDATA%\Microsoft\Windows\SendTo, you'll find that this item is a ZFSendToTarget.

"Compressed (zipped) Folder" in <code>%APPDATA%\Microsoft\Windows\SendTo</code>

As such, the purpose of this shell extension is to allow for creating a compressed folder using Send To, as the name also hints towards.

Share:
24,659

Related videos on Youtube

poizan42
Author by

poizan42

Updated on September 18, 2022

Comments

  • poizan42
    poizan42 almost 2 years

    I learned about this from watching a video about some "Tech Support" scam (watch the last 10 minutes if you want a good laugh) where one of the tactics used by the scammer is getting the victim to list file associations and reading a GUID and they would pretend it to be the id number of the victims computer.

    Here is the association in question:
    .ZFSendToTarget=CLSID{888DCA60-FC0A-11CF-8F0F-00C04FD7D062}

    That got me wondering, what is the purpose of that? Looking at the shell extension it points to gives the description "Compressed (zipped) Folder SendTo Target" and the value NoOpen says "Drag Files onto this icon to compress them.". Renaming a file to this extension on Windows XP results in the file having a compressed folder icon and the file extension hidden (because of the NeverShowExt value I would guess). If I try to open the file Windows just claims that it doesn't have any association. Dragging a file to it, however, creates a new zip file in the same folder containing the dragged file. Note that the content of the .zfsendtotarget file is left completely untouched.

    Well it's a curious feature, but strange that you would use a file extension for that. Why it is designed that way is probably only known by a couple of people inside of Microsoft, but has someone seen it used anywhere in windows? Is there some feature somewhere that creates such a file, or some version of windows with a folder containing such a file?

  • mmj
    mmj over 3 years
    An interesting feature of this SendTo entry is that it has (apparently) no limit on number of processed files. That is, if you drag&drop or SendTo (another entry) 1000 files, you got an error message, while if you SendTo Compressed folder 15000 files it works. If anybody knows why this happens and possibly how to add to SendTo an app that works with 15000 files, please have a look at stackoverflow.com/q/66727228