Door access is controlled from:
https://scsapps.unl.edu/KeyAppWeb/Default.aspx
To request access, a new Card Access Request needs to be submitted, which includes the users’ NUID. The building is already unlocked from 6:30am-10pm, M-F, so if additional restrictions (or removal of restrictions) are necessary, then they can be added into the comments.
There is a 7am-6pm M-F restriction that can be added specifically to the “Nebraska Hall East 2 ETS Open Work W208.2” door (our main door); alternatively, it might be desirable to give 24/7 access.
Typically, these are the doors that are requested:
- Nebraska Hall East Net Controller 1\Nebraska Hall East 1 Corridor 211
- Nebraska Hall East Net Controller 1\Nebraska Hall East 1 East Stair Entrance 195 (E11)
- Nebraska Hall East Net Controller 1\Nebraska Hall East 1 ITS Northwest Corridor 2CR5.3
- Nebraska Hall East Net Controller 1\Nebraska Hall East 1 ITS Southeast Corridor 2LB1.1
- Nebraska Hall East Net Controller 1\Nebraska Hall East 1 ITS Southwest Corridor 2CR5.1
- Nebraska Hall East Net Controller 1\Nebraska Hall East 1 South Entrance East Leaf 112 (S19)
- Nebraska Hall East Net Controller 1\Nebraska Hall East 1 Southeast ADA Entrance 112 (S17)
- Nebraska Hall East Net Controller 2\Nebraska Hall East 2 ETS Corridor 2CR10.1
- Nebraska Hall East Net Controller 2\Nebraska Hall East 2 ETS Office 225.1
- Nebraska Hall East Net Controller 2\Nebraska Hall East 2 ETS Office 225.2
- Nebraska Hall East Net Controller 2\Nebraska Hall East 2 ETS Office 235.1
- Nebraska Hall East Net Controller 2\Nebraska Hall East 2 ETS Office 235.2
- Nebraska Hall East Net Controller 2\Nebraska Hall East 2 ETS Open Work W208.2
- Nebraska Hall East Net Controller 2\Nebraska Hall East 2 ETS Project Room 231.1
- Nebraska Hall East Net Controller 2\Nebraska Hall East 2 ETS Reception 219.1
- Nebraska Hall East Net Controller 2\Nebraska Hall East 2 ETS Reception 219.2
- Nebraska Hall East Net Controller 2\Nebraska Hall East 2 ETS Training Room 213.1
- Nebraska Hall West Net Controller 1\Nebraska Hall West 1 East Dock Entrance E132.1 (S14)
- Nebraska Hall West Net Controller 2\Nebraska Hall West 2 North Center Entrance W176 (N14)
- Nebraska Hall West Net Controller 1\Nebraska Hall West 1 Southwest ADA Entrance W101 (S11)
- Nebraska Hall West Net Controller 1\Nebraska Hall West 1 West Entrance W100 (W14)
- Nebraska Hall West Net Controller 1\Nebraska Hall West 1 West Stair Entrance W104A (W12)
const controllersToOpen = [
'NEBRASKA HALL EAST NET CONTROLLER 1',
'NEBRASKA HALL EAST NET CONTROLLER 2',
'NEBRASKA HALL WEST NET CONTROLLER 1',
'NEBRASKA HALL WEST NET CONTROLLER 2'
];
const doorsToCheck = [
'Nebraska Hall East Net Controller 1\\\\Nebraska Hall East 1 Corridor 211',
'Nebraska Hall East Net Controller 1\\\\Nebraska Hall East 1 East Stair Entrance 195 (E11)',
'Nebraska Hall East Net Controller 1\\\\Nebraska Hall East 1 ITS Northwest Corridor 2CR5.3',
'Nebraska Hall East Net Controller 1\\\\Nebraska Hall East 1 ITS Southeast Corridor 2LB1.1',
'Nebraska Hall East Net Controller 1\\\\Nebraska Hall East 1 ITS Southwest Corridor 2CR5.1',
'Nebraska Hall East Net Controller 1\\\\Nebraska Hall East 1 South Entrance East Leaf 112 (S19)',
'Nebraska Hall East Net Controller 1\\\\Nebraska Hall East 1 Southeast ADA Entrance 112 (S17)',
'Nebraska Hall East Net Controller 2\\\\Nebraska Hall East 2 ETS Corridor 2CR10.1',
'Nebraska Hall East Net Controller 2\\\\Nebraska Hall East 2 ETS Office 225.1',
'Nebraska Hall East Net Controller 2\\\\Nebraska Hall East 2 ETS Office 225.2',
'Nebraska Hall East Net Controller 2\\\\Nebraska Hall East 2 ETS Office 235.1',
'Nebraska Hall East Net Controller 2\\\\Nebraska Hall East 2 ETS Office 235.2',
'Nebraska Hall East Net Controller 2\\\\Nebraska Hall East 2 ETS Open Work W208.2',
'Nebraska Hall East Net Controller 2\\\\Nebraska Hall East 2 ETS Project Room 231.1',
'Nebraska Hall East Net Controller 2\\\\Nebraska Hall East 2 ETS Reception 219.1',
'Nebraska Hall East Net Controller 2\\\\Nebraska Hall East 2 ETS Reception 219.2',
'Nebraska Hall East Net Controller 2\\\\Nebraska Hall East 2 ETS Training Room 213.1',
'Nebraska Hall West Net Controller 1\\\\Nebraska Hall West 1 East Dock Entrance E132.1 (S14)',
'Nebraska Hall West Net Controller 2\\\\Nebraska Hall West 2 North Center Entrance W176 (N14)',
'Nebraska Hall West Net Controller 1\\\\Nebraska Hall West 1 Southwest ADA Entrance W101 (S11)',
'Nebraska Hall West Net Controller 1\\\\Nebraska Hall West 1 West Entrance W100 (W14)',
'Nebraska Hall West Net Controller 1\\\\Nebraska Hall West 1 West Stair Entrance W104A (W12)'
];
controllersToOpen.forEach( c=>{
const o = document.querySelector(`[data-name="${c}"] > img`);
if ( !o ) console.error(c);
else o.click();
});
/* Small Delay */
setTimeout( ()=>{
let checked=0;
doorsToCheck.forEach( dtc=>{
const dtcObj = document.querySelector(`[data-doorname="${dtc}"]`)
if ( dtcObj ) {
dtcObj.checked=true;
checked++;
} else {
console.error(`${dtc} not found.`)
}
})
console.log(`${checked} doors were checked, ${doorsToCheck.length} doors in list.`)
}, 2500);
Leave a Reply