Create lock-device.sh

This commit is contained in:
wattsy74
2021-09-27 13:27:57 +01:00
committed by GitHub
parent 488c391cd1
commit 3e6e8a8f23

9
lock-device.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
jssUser=$4
jssPass=$5
jssHost=$6
passcode=$7
id=$(jamf recon | grep '<computer_id>' | xmllint --xpath xmllint --xpath '/computer_id/text()' -)
/usr/bin/curl -su "${jssUser}:${jssPass}" "https://${jssHost}/JSSResource/computercommands/command/DeviceLock/passcode/${passcode}/id/${id}" -H "Content-Type: application/xml" -X POST