Menu

#13 command line option to mount read write

open
nobody
None
5
2011-08-08
2011-08-08
griffia
No

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?

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,

powershell command (if anyone is interested)

$Registry_Key = "HKLM:\SYSTEM\CurrentControlSet\services\Ext2Fsd\Volumes\"
$rk = (Get-Item -path $Registry_Key)
$values = Get-ItemProperty $rk.PSPath
$keys = $rk.Property
foreach($key in $keys)
{
if($values."$key" -like "Readonly*")
{
$new_value = ($values."$key").Replace("Readonly" , "Ext3ForceWriting")
write-host $Registry_Key "$key" $new_value
Set-ItemProperty $Registry_Key -name "$key" -value $new_value
}
}

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.