Add menu item to Windows context menu only for specific filetype

Identify the file type (ProgID) for .jpg files This can be done by checking the default value of HKEY_CLASSES_ROOT\.jpg. It could be anything based on what you’ve installed, but for the purposes of this example, we’ll call it jpegfile, a common default. Set the context menu item (verb) properties for that file type You can … Read more

Accessing a windows shared folder from Linux?

If you want to use the GUI, try clicking Places -> Connect to Server…. For Service Type choose Windows share, and fill out the fields like so: Server: 192.168.1.66 Share: SharedFolder Then download your file from the window. If you want to use a command-line interface, smbclient uses a FTP-like interface (get, put, etc.): ~$ … Read more