IT Asset Desk
Equipment registration

Register your monitor

Help us keep our equipment records accurate. You can find the model and serial number on the label at the back of your monitor.

1

Your details

Tell us who this monitor is assigned to.

2

Monitor details

Copy the information exactly as shown on the device label.

Your details are used only for equipment records.

Thank you!

Your monitor details have been recorded.

Admin setup

Spreadsheet connection

Connect a Google Sheet with a deployed Apps Script web app. Until connected, submissions are safely queued on this device and can be exported as CSV.

Google Sheet setup instructions
  1. Create a Google Sheet, then open Extensions → Apps Script.
  2. Paste the script below and save it.
  3. Choose Deploy → New deployment → Web app. Set access to “Anyone”, deploy, and copy its URL here.
function doPost(e) {
  const sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
  if (sheet.getLastRow() === 0) {
    sheet.appendRow(['Submitted At', 'Name', 'Email', 'Make', 'Model Number', 'Serial Number']);
  }
  sheet.appendRow([
    e.parameter.submittedAt,
    e.parameter.name,
    e.parameter.email,
    e.parameter.make,
    e.parameter.model,
    e.parameter.serial
  ]);
  return ContentService.createTextOutput('OK');
}
0Saved locally
0Waiting to sync