i did this,
This instance of the problem is easy to fix. Go to a command prompt (Start|Programs|Accessories|Command Prompt) and type
Set
followed by the Enter key
The resulting output usually contains a line like:
TEMP=C:\DOCUME~1\UserName\LOCALS~1\Temp
The stuff after the = sign is the path to the temporary files folder. You need to change directory to the parent folder of this temporary files folder (usually C:\DOCUME~1\UserName\LOCALS~1) by executing command
CD C:\DOCUME~1\UserName\LOCALS~1
followed by the Enter key
Then check that the Temp sub-folder exists using the dir command. If it doesn't already exist, create it using
MD Temp
followed by the Enter key
In my case the folder was there but the attributes included the read-only flag, so I reset the attributes by executing command
attrib -r +a -s -h Temp
followed by the Enter key
Start Movie Maker and it works.
works fine now.