Files
2026-02-16 15:05:15 +01:00

35 lines
1.7 KiB
Bash

#!/bin/sh
/Library/Application\ Support/JAMF/bin/jamfHelper.app/Contents/MacOS/jamfHelper -windowType fs -title "This is the title" -heading "Übertrage deine Account Daten an Jamf" -description "Completing Step 1 of 4" -icon /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/AllMyFiles.icns &
pid1=$!
sleep 10
/Library/Application\ Support/JAMF/bin/jamfHelper.app/Contents/MacOS/jamfHelper -windowType fs -title "This is the title" -heading "Installiere SmartCard" -description "Completing Step 2 of 4" -icon /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/com.apple.cinema-display.icns &
pid2=$!
sleep 2
kill $pid1
/Library/Application\ Support/JAMF/bin/jamfHelper.app/Contents/MacOS/jamfHelper -windowType fs -title "This is the title" -heading "Prüfe den Status der FileVailt Verschlüsselung" -description "Completing Step 3 of 4" -icon /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/FileVaultIcon.icns &
pid3=$!
sleep 2
kill $pid2
/Library/Application\ Support/JAMF/bin/jamfHelper.app/Contents/MacOS/jamfHelper -windowType fs -title "This is the title" -heading "Übertrage Informationen" -description "Completing Step 4 of 4" -icon /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/com.apple.xserve.icns &
pid4=$!
sleep 2
kill $pid3
/Library/Application\ Support/JAMF/bin/jamfHelper.app/Contents/MacOS/jamfHelper -windowType fs -title "This is the title" -heading "This is the heading" -description "Dein Gerät ist startklar. Der Benutzer wird abgemeldet." -icon /System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/com.apple.cinema-display.icns &
pid5=$!
sleep 2
kill $pid4
sleep 2
kill $pid5
exit 0