Add username and pass into script?

So when I use this command:

/System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/Current/Resources/dotmacsyncclient

It requires a username and pass, how do I edit that to include the username and pass?

What are you trying to do exactly. That is just a POSIX path to a file, not a command.

Well I want to run that file, but it requires a username and pass.

try these…



do shell script "open -a /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/Current/Resources/dotmacsyncclient" password "YOURPASSWORD" with administrator privileges

– or


do shell script "open -a /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/Current/Resources/dotmacsyncclient" user name "YOURNAME" password "YOURPASSWORD" with administrator privileges

Tom

Browser: Safari 533.20.27
Operating System: Mac OS X (10.6)

2nd one worked perfectly, thank you!