Hi , I've been lurking and reading for a while, particularly over the last weekend. I've been following the MSFN Unattended XP CD How-To guide, and so far it has been going well. I always install most of my programs to my second partition, D:\. The CD will always/only be used for my computer, so there's no worries of the D: ever changing. So I've made this script with AutoIT for PowerDVD6. Obviously it is not finished yet, but I'm having trouble entering the install path 'D:\Program Files\CyberLink\PowerDVD' $MYPATH= "D:\Program Files\CyberLink\PowerDVD" Run("PowerDVD6.exe") ; Wait for Initial Setup Screen WinWaitActive("CyberLink PowerDVD v6.0 Setup...", "&Next >") Send("!n") ;Send Alt+N WinWaitActive("CyberLink PowerDVD v6.0 Setup...", "License Agreement") Send("!y") WinWaitActive("CyberLink PowerDVD v6.0 Setup...", "default media player for the following file types") send("!n") WinWaitActive("CyberLink PowerDVD v6.0 Setup...", "Setup will install the following programs") send("!n") WinWaitActive("CyberLink PowerDVD v6.0 Setup...", "Customer Information") send("!n") WinWaitActive("CyberLink PowerDVD v6.0 Setup...", "Choose Destination Location") send("!r") WinWaitActive("Choose Folder", "Choose Destination Location") Send($MYPATH);---------------------------------------------PROBLEM Send("{Enter}") WinWaitActive("CyberLink PowerDVD v6.0 Setup...", "Confirm Destination") send("!n") At the WinWaitActive("Choose Folder", "Choose Destination Location") stage, the path is pre-selected (as Attachment) - so I thought if I just send the new path it would overwrite it, and then press <enter> to confirm it? But it doesn't work - it stops at this point. I've tried Send("D:\Program Files\CyberLink\PowerDVD") too without success.. I've browsed through the help file but that got a bit heavy going (+ I'm a very slow reader) and it wasn't really relevant. Hope someone can put this right and that it isn't anything difficult. Keep in mind I'm completely new to AutoIT - only started using it last night. Thanks in advance