Question:

Can I run a script to edit the registry on Windows Mobile 6?

by  |  earlier

0 LIKES UnLike

Is it possible to run a script on Windows Mobile 6 (AT&T Tilt) that will edit the Registry? I have a manual process that I go through every so often and would just like to automate it with a script.

 Tags:

   Report

1 ANSWERS


  1. yep in .net i presume u know the .net

    in c# its

    source

                Microsoft.Win32.RegistryKey key = new Microsoft.Win32.RegistryKey();

                key.CreateSubKey("what ever");

                key.DeleteSubKey("whatever");

                key.GetValue();

        Microsoft.Win32.RegistryKey key2 = Microsoft.Win32.Registry.CurrentUser();

               key2.SetValue("whatever","value");

                // etc u can access all the registry thro this

                // this is c# .net

    as u can see microsoft.win32 has the registry thing in it just assign it create edit and manipulate registry keys does work on mobile iv just checked on visual stuido

    http://www.beansoftware.com/NET-Tutorial...

    a site the shows how to edit keys in vb but its easily convertable to any language ur using

    and about the .net

    http://www.microsoft.com/Express/

    download from free there

    however the expree edition does not suport development for smart devices such as windows mobile how ever u can download the sdk and add the refrence in to a empty project

    email me if u need any help

    i take it ur using it to unlock the spv,mda,xda lol

Question Stats

Latest activity: earlier.
This question has 1 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.