Hello, here is the new Tool developed by @contable that Unlocks the System files on SD Card.
Added a .XAP file plus Source Code.
v1.0
- Manual control for "Path".
Thanks @contable for great stuff.
<!-- Older Post -->
Hello,
I've found a simple method to gain access into WPSystem Folder, Browse Isolated Storage directly.
We can now browse WPSystem Folder from any favorite File manager also we can access folder during the attachment or uploading processes.
Open Pocket File Manager 4.3.6.0.
Touch and hold on WPSystem Folder pop up menu will opened, select Info.
3. Unchecked both check marks.
A. Hidden File.
B. System File.
And save the changes.
Done.
Now browse WPSystem Folder from any favorite File Manager.
We all know that when we does a same procedure on other version of P.F.M. it crashes every time. We was not able to make changes on WPSystem Directory.
Luckily this version able to change the WPSystem Folder permissions
Added a .XAP file plus Source Code.
v1.0
- Manual control for "Path".
Code:
private void unlock_click(object sender, RoutedEventArgs e)
{
try
{
var directory = new DirectoryInfo("D:\\WPSystem\\") { Attributes = System.IO.FileAttributes.Normal };
foreach (var info in directory.GetFileSystemInfos("*"))
{
info.Attributes = System.IO.FileAttributes.Normal;
}
MessageBox.Show("Success !");
Application.Current.Terminate();
}
catch
{
MessageBox.Show("Error");
}
}
<!-- Older Post -->
Hello,
I've found a simple method to gain access into WPSystem Folder, Browse Isolated Storage directly.
We can now browse WPSystem Folder from any favorite File manager also we can access folder during the attachment or uploading processes.
Open Pocket File Manager 4.3.6.0.
Touch and hold on WPSystem Folder pop up menu will opened, select Info.
3. Unchecked both check marks.
A. Hidden File.
B. System File.
And save the changes.
Done.

Now browse WPSystem Folder from any favorite File Manager.
We all know that when we does a same procedure on other version of P.F.M. it crashes every time. We was not able to make changes on WPSystem Directory.
Luckily this version able to change the WPSystem Folder permissions
Attachments
Last edited: