Path: blob/master/payloads/library/general/ChromebookProvisioning/payload.txt
2968 views
REM Title: ChromeBook Provisioning1REM Author: Korben / Google2REM Description: https://support.google.com/chrome/a/answer/9412749?hl=en#zippy=3REM modified from source for easier configuration using DuckyScript 34REM REQUIRES TESTING. This is simply an updated syntax adaptation from the above link.5REM Target: Chromebook6REM Category: General789REM Required configuration10DEFINE #SSID example11DEFINE #WIFI_PASS example12DEFINE #ENROLLMENT_ACCOUNT example13DEFINE #ACCOUNT_PASSWORD example141516REM Tweak values below until reliable17DEFINE #BOOT_DELAY 300018DEFINE #WIFI_CONNECT_DELAY 900019DEFINE #ENROLLMENT_COMPLETION_DELAY 80002021LED_R2223REM Part One: Wifi Setup24DELAY #BOOT_DELAY25TAB26TAB27TAB28TAB29ENTER30DELAY 100031TAB32TAB33TAB34ENTER35DELAY 50036STRING #SSID37DELAY 50038TAB39DELAY 50040DOWN41DOWN42DELAY 50043TAB44STRING #WIFI_PASS45DELAY 50046ENTER47REM Long Pause while Connection is established.48DELAY #WIFI_CONNECT_DELAY49REM Part One and One half: Go through First run Setup.50TAB51TAB52ENTER53DELAY 50054TAB55TAB56TAB57ENTER58DELAY 50059CTRL ALT e60TAB61TAB62TAB63TAB64TAB65ENTER66REM Part Two: Enrollment (Long Pauses in case it's having issues with wifi or render)67DELAY 400068STRING #ENROLLMENT_ACCOUNT69ENTER70DELAY 500071STRING #ACCOUNT_PASSWORD72DELAY 50073ENTER74REM Long Pause while device is enrolled.75DELAY #ENROLLMENT_COMPLETION_DELAY76ENTER777879LED_G808182