Copy a file from a server to Desktop Folder of all users

Hi Experts, It’s me again…

I’m having an issue that’s probably easy but i can’t figure out.

I have one folder in my server that are mounted always when the user logged in.

I have a folder in every Desktop of all users in all computers of my internal network.

Wha i want to do is copy one file of the server folder to a desktop folder no matther who is logged in.

The problem is that the path changes depending who is logged. If user1 is logged the path is

“macintosh HD:Users:user1:Desktop:Folder:”

if andre is logged in the path chances to “macintosh HD:Users:andre:Desktop:Folder:”

What i want is a generic script to make this copy.

I try something like that but it doesnt work

tell application “Finder”
activate
move every file of folder “import” of desktop folder to “gaia” with replacing
end tell

Thanx a lot

Andre Tozzini

I got it guys…

I try this…

tell application “Finder”
activate
move every file of folder “import” of desktop to “gaia” with replacing
end tell

and works…

Thanx again

Andre Tozzini