All Projects → tonyfederer → Outlookfiledrag

tonyfederer / Outlookfiledrag

Licence: other
Drag and drop Outlook items as files into any application

Projects that are alternatives of or similar to Outlookfiledrag

Jquery Sortablejs
A jQuery binding for SortableJS
Stars: ✭ 94 (-21.01%)
Mutual labels:  drag-and-drop
Lean Mean Drag And Drop
Drag&Drop Sorting and Reordering script for complex nested structures
Stars: ✭ 107 (-10.08%)
Mutual labels:  drag-and-drop
React Smooth Dnd
react wrapper components for smooth-dnd
Stars: ✭ 1,560 (+1210.92%)
Mutual labels:  drag-and-drop
Dashboards
Drag & drop dashboard builder!
Stars: ✭ 97 (-18.49%)
Mutual labels:  drag-and-drop
React Native Draggable View
DraggableView is a component for react-native, it allows you have a vertical draggable drawer view that you can drag up or drag down. So, if you drag and release that component, then it keeps moving until reach either initial position or container border.
Stars: ✭ 103 (-13.45%)
Mutual labels:  drag-and-drop
Flowy Vue
Vue Flowy makes creating flowchart or hierarchy chart functionality an easy task. Build automation software, mind mapping tools, organisation charts, or simple programming platforms in minutes by implementing the library into your project.
Stars: ✭ 107 (-10.08%)
Mutual labels:  drag-and-drop
Angular File Uploader
Angular file uploader is an Angular 2/4/5/6/7/8/9/10 + file uploader module with Real-Time Progress Bar, Responsive design, Angular Universal Compatibility, localization and multiple themes which includes Drag and Drop and much more.
Stars: ✭ 92 (-22.69%)
Mutual labels:  drag-and-drop
Interact.js
JavaScript drag and drop, resizing and multi-touch gestures with inertia and snapping for modern browsers (and also IE9+)
Stars: ✭ 10,561 (+8774.79%)
Mutual labels:  drag-and-drop
Dazzle
🚀 Dashboards made easy in React JS.
Stars: ✭ 1,424 (+1096.64%)
Mutual labels:  drag-and-drop
Fileuploader
Beautiful and powerful HTML file uploading tool. A jQuery, PHP and Node.js plugin that transforms the standard input into a revolutionary and fancy field on your page.
Stars: ✭ 111 (-6.72%)
Mutual labels:  drag-and-drop
React Sortable Hoc
A set of higher-order components to turn any list into an animated, accessible and touch-friendly sortable list✌️
Stars: ✭ 9,747 (+8090.76%)
Mutual labels:  drag-and-drop
Html5sortable
VanillaJS sortable lists and grids using native HTML5 drag and drop API.
Stars: ✭ 1,384 (+1063.03%)
Mutual labels:  drag-and-drop
The Drag And Drop Component Suite For Delphi
Stars: ✭ 109 (-8.4%)
Mutual labels:  drag-and-drop
React Native Easy Dnd
Drag and drop with react-native made simple
Stars: ✭ 96 (-19.33%)
Mutual labels:  drag-and-drop
Svgdragtree
一个可以通过拖放 SVG 图标,来生成拥有树状结构的视图与数据的前端组件。 SDT example:
Stars: ✭ 113 (-5.04%)
Mutual labels:  drag-and-drop
Vue Drag And Drop Kanban
A simple kanban board where the items can be dragged and dropped from the list. This is a hybrid implementation of vue-smooth-dnd.
Stars: ✭ 93 (-21.85%)
Mutual labels:  drag-and-drop
Jquery Udraggable
make elements draggable by mouse or touch
Stars: ✭ 107 (-10.08%)
Mutual labels:  drag-and-drop
Rxdrag
Build front end without the tears, just drag it.不需要代码的可视化前端,基于React Mui构建。
Stars: ✭ 117 (-1.68%)
Mutual labels:  drag-and-drop
Gong Wpf Dragdrop
The GongSolutions.WPF.DragDrop library is a drag'n'drop framework for WPF
Stars: ✭ 1,669 (+1302.52%)
Mutual labels:  drag-and-drop
Bepasty Server
binary pastebin server
Stars: ✭ 111 (-6.72%)
Mutual labels:  drag-and-drop

Outlook File Drag

Drag and drop Outlook items as files into any application

Read This First!

Microsoft Edge (as of Windows 10 1709) and Google Chrome (as of version 76) natively support drag and drop from Outlook on Windows. If you use one of these browsers, then this plugin is not necessary.

Overview

Outlook File Drag is an add-in for Outlook 2013 and 2016 that allows you to drag and drop Outlook items (messages, attachments, contacts, tasks, appointments, meetings, etc) to applications that allow physical files to be dropped, such as web browsers.

How Does it Work?

When you try to drag and drop from Outlook, Outlook correctly identifies the format as virtual files (CFSTR_FILEDESCRIPTORW) since the files do not exist directly on disk. Instead, they are contained in a PST file, OST file, or on an Exchange server.

However, many applications do not support this format, such as web browers and most .NET/Java applications.

To work around this issue, Outlook File Drag hooks the Outlook drag and drop process and adds support for physical files (CF_HDROP). When the receiving application asks for the physical files, the files are saved to a temp folder and those filenames are returned to the application. The application processes the files (such as uploading them). Outlook File Drag deletes the temp files later in a cleanup process.

Features

  • Works with Chrome, Firefox, Internet Explorer, Edge, and other applications that accept files to be dropped
  • Allows drag and drop into HTML5-based web applications
  • Drag e-mails, attachments, contacts, calendar items, and more
  • Drag multiple items at once
  • Supports Unicode characters

Installation

To install, run the installer that matches your Windows build:

After installing, restart Outlook for the add-in to take effect.

Automated (Silent) Installation

For administrators, OutlookFileDrag supports automated (silent) installation and uninstallation using msiexec with command line parameters.

Silent Installation

To silently install OutlookFileDrag, use this command:

msiexec.exe /i <pathtomsi> /qn /log <pathtolog>

  • <pathtomsi>: Path to MSI file
  • <pathtolog>: Path to log file (if folder is not specified, MSI path is used)

Example:

msiexec.exe C:\Install\OutlookFileDrag_x64.msi /qn /log C:\Logs\OutlookFileDragInstall.log

After installing, restart Outlook for the add-in to take effect.

Silent Uninstallation

To silently uninstall OutlookFileDrag, use this command:

msiexec.exe /x <productcode> /qn /log <pathtolog>

  • <productcode> for 64-bit version: {CF5F9043-967C-400D-B6D5-F41AF6AD83AE}
  • <productcode> for 32-bit version: {7EA6E17B-8802-4E1F-9669-248670B31BFB}
  • <logfile>: Path to log file

Example:

msiexec.exe /x {CF5F9043-967C-400D-B6D5-F41AF6AD83AE} /qn /log C:\Logs\OutlookFileDragUninstall.log

Acknowledgements

Outlook File Drag uses these open source projects:

Feedback/Contribute

You can view the source code, report issues, and contribute on Github.

Donate

If you find this project useful, please consider donating. Your donations are appreciated. =)

Donate

Version History

1.0.11

  • Fixed drag and drop of embedded RTF attachments (thanks chrisv2)

1.0.10

  • Fixed System.ArgumentException bug in ReadHGlobalIntoStream method when reading more than 4 KB introduced in version 1.0.8.

1.0.9

  • If files were dropped and drop effect was "move", then override to "copy" so original item is not deleted

1.0.8

  • Fixed releasing of unmanaged resources
  • Memory usage improvements
  • Added more details to log file

1.0.5

  • Fixed crash when dragging calendar items

1.0.4

  • Added additional debug logging
  • Fixed issue where STGMEDIUM was not being released after reading filenames
  • Fixed issue that where reading filenames sometimes failed
  • Fixed hooking process to allow starting and stopping hook without disposing and recreating hook

1.0.3

  • Fixed issue that prevented dragging items from one group to another

1.0.2

  • Fixed PathTooLong exception when temporary filename was longer than MAX_PATH

1.0.1

  • Fixed issues with 64-bit Outlook
  • Added self-signed certificate

1.0

  • Initial Release

Copyright

Outlook File Drag is copyright (c) 2018 by Tony Federer and released under the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].