アプリは起動するたびにログイン項目に自分自身を追加します


回答:


1

Unified Intents ABにお問い合わせください

あなたの最良の選択肢は、Unifed Remoteの開発者に直接連絡することです。このようにして、彼らはそれが問題であることを知り、即時の解決策を提供できるかもしれません。

ログイン項目のAppleScript削除

それ以外の場合は、ログイン項目の削除または終了のスクリプティングを調査することをお勧めします。Mac StuffのWebサイトには、AppleScriptを使用したログイン項目の追加と削除で概要が説明されています

tell application "System Events"
    --Find out what login items we have
    get the name of every login item
    --see if the item we want exists.  If so then delete it
    if login item "home" exists then
        delete login item "home"
    else
        display dialog "That login item doesn't exist"
    end if
end tell
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.