<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to feature-requests</title><link>https://sourceforge.net/p/ext2fsd/feature-requests/</link><description>Recent changes to feature-requests</description><atom:link href="https://sourceforge.net/p/ext2fsd/feature-requests/feed.rss" rel="self"/><language>en</language><lastBuildDate>Sat, 19 May 2018 19:07:31 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/ext2fsd/feature-requests/feed.rss" rel="self" type="application/rss+xml"/><item><title>#12 Support for Volume-Labels</title><link>https://sourceforge.net/p/ext2fsd/feature-requests/12/?limit=25#a647</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I would like to add my support for this feature request.  It would be &lt;strong&gt;INCREDIBLY&lt;/strong&gt; helpful if the Volume Manager displayed the labels for the volumes (both Windowx and Linux, etc).&lt;/p&gt;
&lt;p&gt;It would also be nice if the Volume Manager window could be re-sized, and if the column order could be changed.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">3guesses</dc:creator><pubDate>Sat, 19 May 2018 19:07:31 -0000</pubDate><guid>https://sourceforge.net9a1e8afd2501dccdb77064f5ab7367f8fcbf7ac0</guid></item><item><title>Add automount support</title><link>https://sourceforge.net/p/ext2fsd/feature-requests/17/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hello&lt;/p&gt;
&lt;p&gt;Could you please add automounting support.&lt;/p&gt;
&lt;p&gt;Use case:&lt;br/&gt;
1) hdd is inserted&lt;br/&gt;
2) driver automatically mounts all its volumes as letters&lt;/p&gt;
&lt;p&gt;(no need in command line)&lt;/p&gt;
&lt;p&gt;and upon disconnecting:&lt;br/&gt;
1) click Eject&lt;br/&gt;
2) Driver will flush and unmount files&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Siarhei</dc:creator><pubDate>Sat, 13 Feb 2016 19:44:06 -0000</pubDate><guid>https://sourceforge.net7ceebca6041c3f20aebe02ffeccdad3f2b5add81</guid></item><item><title>unmount and remount options for ext3 file system devices</title><link>https://sourceforge.net/p/ext2fsd/feature-requests/16/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;This utility works very well for me using windows 7 to access ext3 file systems on a USB memory stick. However I also need to use Win32DiskImager to create ext3 file system images on a USB stick. The problem is that if a USB memory stick alread has an ext3 filesystem on it, it will be mounted automatically and Win32DiskImager cannot thewn write a new image onto it. It would be great to have an option to unmount the filesystem so that Win32DiskImager can then be used to write a new filesystem. An option to remount the filesystem after it has been re-writen would also be good. Thanks.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John</dc:creator><pubDate>Tue, 06 Oct 2015 10:15:45 -0000</pubDate><guid>https://sourceforge.netc8cb1544e2cbcdce2670c58198fcfb8f30f8c623</guid></item><item><title>#7 Ext4 support</title><link>https://sourceforge.net/p/ext2fsd/feature-requests/7/?limit=25#186b</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;v0.51 supports ext4&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Uroc327</dc:creator><pubDate>Mon, 26 Aug 2013 14:47:17 -0000</pubDate><guid>https://sourceforge.netf3f3f8f3f820b6fb96ad967a53826e93811fcadd</guid></item><item><title>Windows 8 Support</title><link>https://sourceforge.net/p/ext2fsd/feature-requests/15/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Support for Windows 8...&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ddan39</dc:creator><pubDate>Mon, 17 Dec 2012 07:34:51 -0000</pubDate><guid>https://sourceforge.net80931151ebbbb3255562d5a83c9347dd66831e64</guid></item><item><title>XFS support</title><link>https://sourceforge.net/p/ext2fsd/feature-requests/14/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;&lt;a href="http://en.wikipedia.org/wiki/XFS" rel="nofollow"&gt;http://en.wikipedia.org/wiki/XFS&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I've encountered numerous drives with XFS and have no way of reading them.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dustin Jones</dc:creator><pubDate>Thu, 11 Aug 2011 14:23:10 -0000</pubDate><guid>https://sourceforge.net0a84e0e39939a3a91106263640630f62f896d09a</guid></item><item><title>command line option to mount read write</title><link>https://sourceforge.net/p/ext2fsd/feature-requests/13/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;would it be possible to either create a command live version of Ext2Mgr or update Mount.exe to allow you to mount a volume with read write permissions?&lt;/p&gt;
&lt;p&gt;i've managed to work out that you make a change to the registry and i've writen a little powershell script to update that but it still doens't allow write access to the volume,&lt;/p&gt;
&lt;p&gt;powershell command (if anyone is interested)&lt;/p&gt;
&lt;p&gt;$Registry_Key = "HKLM:\SYSTEM\CurrentControlSet\services\Ext2Fsd\Volumes\"&lt;br /&gt;
$rk = (Get-Item -path $Registry_Key)&lt;br /&gt;
$values = Get-ItemProperty $rk.PSPath&lt;br /&gt;
$keys = $rk.Property&lt;br /&gt;
foreach($key in $keys)&lt;br /&gt;
{&lt;br /&gt;
if($values."$key" -like "Readonly*")&lt;br /&gt;
{&lt;br /&gt;
$new_value = ($values."$key").Replace("Readonly" , "Ext3ForceWriting")&lt;br /&gt;
write-host $Registry_Key "$key" $new_value&lt;br /&gt;
Set-ItemProperty $Registry_Key -name "$key" -value $new_value&lt;br /&gt;
}&lt;br /&gt;
}&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">griffia</dc:creator><pubDate>Mon, 08 Aug 2011 13:35:40 -0000</pubDate><guid>https://sourceforge.net6d2b4d1767d86ff29fa0f130e74ffc5a628038e1</guid></item><item><title>Support for Volume-Labels</title><link>https://sourceforge.net/p/ext2fsd/feature-requests/12/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I would like to see Volume-Labels in the Manager.&lt;br /&gt;
It is especially difficult to identify an ext3 partition, if they are equally sized.&lt;br /&gt;
I think the obvious way to identify a partition is it's label.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Harald</dc:creator><pubDate>Fri, 29 Jan 2010 08:38:05 -0000</pubDate><guid>https://sourceforge.netdbc9f38b2876c094547fa0a759e1f610404cb1de</guid></item><item><title>FSCTL_GET_VOLUME_BITMAP</title><link>https://sourceforge.net/p/ext2fsd/feature-requests/11/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Please implement the FSCTL_GET_VOLUME_BITMAP request, which is very useful for sector based cloning of the disk. I'd really appreciate, and can contribute code if needed.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 27 Aug 2009 22:08:13 -0000</pubDate><guid>https://sourceforge.net45db60295ea7af1171e9bcd1bd6782f3a6ca6576</guid></item><item><title>Volume Manager File Option selection displayed</title><link>https://sourceforge.net/p/ext2fsd/feature-requests/10/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Would it be a good idea to have checkmarks appear in front of the options on the File Menu, to show which choice is currently in effect?  I'm referring to:&lt;/p&gt;
&lt;p&gt;[  ]  Enable ...&lt;br /&gt;
[  ]  Disable ...&lt;br /&gt;
[  ]  Install ...&lt;br /&gt;
[  ]  Remove ...&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">RonCam</dc:creator><pubDate>Mon, 10 Aug 2009 15:12:35 -0000</pubDate><guid>https://sourceforge.net290c4290163a67d0bb7d2687eb2485b6bf36777c</guid></item></channel></rss>