私は、在庫を追跡するために使用するプログラムが10月31日のEOLになると非常に遅く通知された状況にあります。約400台のMacコンピューターがあり、古いバージョン(必要ではありませんが適切)をアンインストールして、最新バージョンをインストールする必要があります。私はこのためにARDを使用したいと考えています(Apple Remote Desktop)が、最初にスクリプトを動作させる必要があります。
Jampfはコストのためにオプションではありません。私はMacの人ではないので、バッチファイルは特にWindowsのものであることがわかりました。以下は、フォーラムで提案されたスクリプトです。ネットワーク共有にファイルを保存しました。提案されたUnixコマンドと、明らかな置換を使用して使用しようとしているコマンドを示します。
推奨:
cd /Users/Shared/ ; curl -k -O https://server.hostingyourfiles.com/samanage.zip ; unzip samanage.zip ; /Users/Shared/samanage/Samanage_Agent_*.app/Contents/MacOS/installbuilder.sh --mode unattended ; rm -rf /Users/Shared/samanage/
私の:
cd /Users/Shared/ ; curl -k -O smb://word.word/word/word Mac/Samanage_Agent_1.1.72_1.1.37_203_30_installer ; unzip samanage.zip ; /Users/Shared/samanage/Samanage_Agent_*.app/Contents/MacOS/installbuilder.sh --mode unattended ; rm -rf /Users/Shared/samanage/
上記により、ターミナルにUnixコマンドを貼り付けると、次のエラーが表示されます。
curl:(67) login denied
curl: (6) Could not resolve host: Mac
unzip: cannot find or open samanage.zip
-bash /users/shared/samanage/smanage_agent app/contents/macos/installbuilder.sh: no such file or directory
URLにする必要がありますか?ARDを使用した最も効率的な方法でさえ、スクリプトを使用していますか?スクリプトなしでARDを使用して新しいインストールをプッシュすることはできますか?このすべてをバイパスして、インストーラーをユーザーにメールで送信する必要がありますか?このテーマに関する私の無知を失礼し、助けを事前に感謝します。