A Few Questions: Determining Calendar Ownership, and Shared Comps with Chrome

17 views
Skip to first unread message

Joel Lowsky

unread,
Mar 27, 2014, 9:11:18 AM3/27/14
to K12 Google Apps Tech List
Hi All,

Two questions that I could use some help with:

1. Any ideas on how to view the owner of a non-primary calendar?  (Primary calendars being the default calendar created for a new user ... typically the primary calendar is named "Firstname Lastname").  The scenario is this ... you have a shared calendar that someone shared with you years go ... want to know who created it and/or owns it now.  In the "Calendar Details" of primary calendars, there is a "Calendar Owner:" field, but for secondary calendars, the field doesn't show up.

The sharing rights don't give this info away either ... they will show users' access rights, but not ownership.

Inline image 1

Inline image 2

(Both of these screenshots are from a Super Admin account).

Question 2: How do you manage ensuring that users log out of Google Apps and, perhaps more importantly, logging out of Chrome, on shared computers, (library or labs)?  Do you have a technical way to enforce logouts (time or boot-based) or is it a cultural method?  We're seeing lots of people signing into both Chrome and Google Apps and not signing out of either or both.  This is on Win and Mac, but also Chrome OS.

Thanks,

Joel

PS: Got one of the new Chromeboxes, 179$ on Amazon.  Comes with a mount for installation on the back of monitors.  Lots of potential here for a lightweight classroom or shared comp.

Melinda Waffle

unread,
Mar 27, 2014, 9:20:31 AM3/27/14
to Joel Lowsky, K12 Google Apps Tech List
Joel,

I can answer the first question but not the second :-)

With the shared calendars, look at the Share This Calendar screen.  The owner's settings cannot be changed (see below) and they have the highest level of access.  I've checked this both as a super-admin, and general user to verify it.  

Inline image 1

Have a great day!




Melinda Waffle
Educational Technology Consultant
Calhoun Intermediate School District
Marshall, MI
---------------

Your work may be finished someday, but your education, never.  -Alexandre Dumas the Elder




--
--
You received this message because you are subscribed to the Google
Groups "Google Apps K12 Technical Forum" group.
To post to this group, send email to k12ap...@googlegroups.com
To unsubscribe from this group, send email to
k12appstech...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/k12appstech?hl=en?hl=en

---
You received this message because you are subscribed to the Google Groups "Google Apps K12 Technical Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to k12appstech...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Joel Lowsky

unread,
Mar 27, 2014, 9:22:26 AM3/27/14
to Melinda Waffle, K12 Google Apps Tech List
Thank you, Melinda, that's helpful ... but if there is a Super Admin who is also on the list of users, then the Super also shows up with non-changeable rights.  Ditto certain other types of admins.  So there could be more than one user in the list that has non-changeable rights.

I appreciate the help.

Joel

Chris Franzen

unread,
Mar 27, 2014, 9:25:04 AM3/27/14
to Joel Lowsky, Melinda Waffle, K12 Google Apps Tech List
Joel,
Would a script like this work?  

@echo off
set ChromeDir=C:\Users\%USERNAME%\AppData\Local\Google\Chrome\User Data
del /q /s /f "%ChromeDir%"
rd /s /q "%ChromeDir%"
cls
IF %ERRORLEVEL%==0 (
@echo "Success Message"
exit0
) ELSE (
@echo "Error Message"
exit 1001
)
Then set it to run every so often in the background?

--
Chris Franzen
Technology Coordinator Nokomis School District
511 Oberle St. | Nokomis, IL  62075
QR
Please consider the environment before printing this email.

Melinda Waffle

unread,
Mar 27, 2014, 9:41:35 AM3/27/14
to Joel Lowsky, K12 Google Apps Tech List
That's interesting, Joel, as I don't have that happening in our domain.  I just double-checked to be sure, but on ours it has a message under the emails of the admin, but it still makes it appear as their settings are changeable:
Inline image 1



Melinda

---------------

Your work may be finished someday, but your education, never.  -Alexandre Dumas the Elder


Joel Lowsky

unread,
Mar 27, 2014, 9:50:32 AM3/27/14
to Melinda Waffle, K12 Google Apps Tech List
Good point!  Thanks, Melinda, this is helpful.

Joel

Chris Franzen

unread,
Mar 27, 2014, 11:22:34 AM3/27/14
to Joel Lowsky, K12 Google Apps Tech List
Joel,
After some testing this script would clean out the profile, but first it must close down chrome.
 

:: kill chrome
taskkill /im chrome.exe
:: remove user settings for a XP chrome user
IF EXIST "C:\Documents and Settings\%username%\Local Settings\Application Data\Google\Chrome\User Data\Default" (
    rmdir "C:\Documents and Settings\%username%\Local Settings\Application Data\Google\Chrome\User Data\Default" /s /q
)
:: remove user settings for a 7 chrome user
IF EXIST "C:\Users\%username%\AppData\Local\Google\Chrome\User Data\Default" (
    rmdir "C:\Users\%username%\AppData\Local\Google\Chrome\User Data\Default" /s /q
)



--
Chris Franzen
Technology Coordinator Nokomis School District
511 Oberle St. | Nokomis, IL  62075
QR
Please consider the environment before printing this email.



Ian Byerrum

unread,
Mar 27, 2014, 12:05:31 PM3/27/14
to K12 Google Apps Tech List
We're a Windows and ChromeOS district, and we've solved the logout issue on Windows by using Chrome group policy settings. You can set Chrome to delete cookies and prevent logging into Chrome for shared computers. This basically enforces an incognito-like mode, where everything is cleared once the window is closed. Then it's just a matter of reminding the students to close all windows prior to leaving the computer.
Ian Byerrum
Technology Coordinator
CETPA Certified CTO
CoSN Certified Education Technology Leader (CETL)
Ackerman Charter School District
Ph: (530) 885-1974 x116
Fx: (530) 888-8175
ibye...@ackerman.k12.ca.us
@ibyerrum

Bjorn Behrendt

unread,
Mar 27, 2014, 12:07:14 PM3/27/14
to Ian Byerrum, K12 Google Apps Tech List
Why not just use incognito for shared computers.  It can be set by group policies as well.

Bjorn Behrendt M.Ed ~ Never Stop Learning
   Google Apps For Education Certified Trainer & Administrator
My Sites
 ~ Edlisten.com Educational Podcast
 ~ AskBj.net ~ Online Training and Ed Tech Resources
 ~ VTed.org ~ Vermont's Personal Learning Network

gClassFolders ~ Create Google folders for your class.

Ian Byerrum

unread,
Mar 27, 2014, 12:15:10 PM3/27/14
to K12 Google Apps Tech List
Incognito mode deletes the browser history (and I believe cache) when a window is closed. By just deleting the cookies, it keeps the history for accountability and forensics.

Joel Lowsky

unread,
Mar 27, 2014, 3:12:37 PM3/27/14
to Ian Byerrum, K12 Google Apps Tech List
Thanks all.

Joel

Reply all
Reply to author
Forward
0 new messages