Re: Disconnecting apple share users
Re: Disconnecting apple share users
- Subject: Re: Disconnecting apple share users
- From: JJ <email@hidden>
- Date: Tue, 24 Jul 2001 08:31:39 +0200
>
Am I doing something wrong? I can't get it to work. Running OS 9.1 and AS
>
1.6 the same line as you've mentioned below.
>
I get the error "File Sharing got an error: connected user 1 doesn't
>
understand the disconnect message."
>
>
-Dave
Good, let's debug:
tell application "Archivos compartidos"
repeat while (connected users {})
--repeat while there is someone connected
--or until "connected users" are an empty list {}
disconnect connected user 1
end repeat
end tell
JJ