thewebhostingdi -7 Junior Poster

I am trying to change the windows user password using windows application and windows service. I am using the below code. This works fine in my Windows XP machine under which I develop my application. But, my target platform is windows 2003 web edition and the same statements are not changing the user password. I have also checked c:\\windows\\system32\\net at windows 2003 and it is working fine when we work with it manually using command prompt. Can any body help?

Process p = System.Diagnostics.Process.Start("c:\\windows\\system32\\net","user username newpassword");
//This will update the user username with the password newpassword

Mods, I think this thread is suitable for C#. If not, please move this to the appropriate forum. Thanks.