Guest frmariam Posted October 18, 2009 Report Posted October 18, 2009 Does anyone know how to toggle between Active Sync and Mass Storage with one click? Trying to implement this feature from Today2 into an HS++ skin but so far no luck... Does anyone know if it's a registry key or a command? Is there a MortScript or an app for this? What's the control panel shortcut for "USB Connection Mode"? Any help is apreciated. Really...
Guest joweedeame Posted October 19, 2009 Report Posted October 19, 2009 +1 to this looking for an apllication like "torchbutton" for flashlight that will toggle activesync/usb mass storage... (the omnia i900 favorite settings has this,.. but i dont wanna go to the favorite settings just to this...)
Guest frmariam Posted November 23, 2009 Report Posted November 23, 2009 (edited) Ouch... So much time has passed and noboby knows of such an app (well I also figure this thread got burried a long while ago...). Anyway I did this quick and dirty MortScript that does the job (pitty the USB Mode Settings windows shows for a fraction of a second...): usb = RegRead ( "HKLM", "Drivers\USB\FunctionDrivers", "DefaultClientDriver" ) If ( usb eq "RNDIS" ) Run ( "\Windows\USBSetting.exe" ) Sleep ( 200 ) SendSpecial ( "Down" ) Sleep ( 50 ) SendSpecial ( "CR" ) Sleep ( 50 ) SendOK ElseIf ( usb eq "Mass_Storage_Class" ) Run ( "\Windows\USBSetting.exe" ) Sleep ( 200 ) SendSpecial ( "Up" ) Sleep ( 50 ) SendSpecial ( "CR" ) Sleep ( 50 ) SendOK EndIf If it doesn't work in your device it may be because the "Sleep" time is too low... Try changing it to a higher value. I'm not very experienced at doing this sort of scripts so if someone out there can do a better version please post it here. I haven't had much luck in my search for an app to toggle USB storage modes... Any coder out there up for a proper solution to this (would be useful to many users...)? Edited November 23, 2009 by frmariam
Guest LiveDuo Posted February 25, 2010 Report Posted February 25, 2010 how is going guys? Does anyone figure it out?
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now