Sony Xperia Mini X10 Pro: Corrupt Card “Fix”

So my phone regularly corrupts anything added to the SD card, even with various brand cards; all larger than the stock 2GB. I’d bought a 32GB one and though maybe it couldn’t handle that size (apparently it can) so went down to 16GB; still photos are corrupting as are podcast downloads, dammit!

Some people said it is linked to the phone not supporting certain class SD cards, some say certain brand, some certain size.

Bizarre fix that worked for me? Connect and mount your phone to your PC or use an IO File Manager app on the phone itself; open the two configuration xml files in the root.

Are they corrupted? Delete them and reboot – new ones are created and the phone works again.

Doubt this is in any way a long term solution, but it stops me throwing it out the window.

No warranties, it works for me, YMMV, etc.

Batch file to create an IIS7 website

Really simple stuff which is helping me out when hosting multiple sites for development on one machine; you either pass in as parameters or specify as responses

  1. the directory name of your site – e.g. “D:\Dev\MySite1” would be “MySite1”
  2. the port number you want it on
  3. the site ID

and it’ll set up the site, migrate your config settings to II7 if necessary, start the new site and let you know the URL to access it.

@echo off
setlocal EnableDelayedExpansion

REM Get parameters from user if they're not specified
if [%1]==[] set /P directory="Enter name of directory/site: "
if [%2]==[] set /P port="Enter port number: "
if [%3]==[] set /P sitenum="Enter site number: "

REM Create site in IIS
%systemroot%\system32\inetsrv\appcmd add site /name:"%directory%" /id:%sitenum% /physicalPath:"D:\Dev\%directory%" /bindings:http/*:%port%:%computername%

REM Attempt to migrate config to IIS7 stylee
%SystemRoot%\system32\inetsrv\appcmd migrate config "%directory%/"

REM Start new site
%SystemRoot%\system32\inetsrv\appcmd start site "%directory%"

echo site "%directory%" now running at http://%computername%:%port%

REM interactive mode
if [%1]==[] (if [%2]==[] (if [%3]==[] (
    pause
    exit
)))

I will change this to pull the next available site ID and port number unless someone else can tell me how to do that.

And yes, this would be very easy in Powershell but I’ve not done that version either..!

Also, if you’d like to know how I managed to get Syntaxhighlighter to work nicely with batch/cmd/dos, leave a comment. There are *no* nice, simple, tutorials out there with common mistakes, so I could paste my steps in here if necessary.