Profile

CommunityPlatform_1350x900.jpg

Matt Deal

Edit My Profile


My Content

1 to 13 of 13 total
Posted By Matt Deal 04-01-2024 07:04:33 AM
Found In Egroup: Google Workspace
\ view thread
This sounds like the same new generative AI settings described in this blog post.https://blog.google/products/chrome/google-chrome-generative-ai-features-january-2024/#organize-tabs Worth calling out from the article, "Because these features are early public experiments, they'll be disabled for enterprise ...
Posted By Matt Deal 01-19-2024 11:14:34 AM
Found In Egroup: Google Workspace
\ view thread
With one of the recent Drive updates, you can now send users a link for public files:https://drive.google.com/drive/my-drive?q=sharedwith:public That link will show all public files the user can see, but it looks like it can be scoped down to just your personal files with this link: https://drive.g ...
Posted By Matt Deal 01-10-2024 12:54:02 PM
Found In Egroup: Google Workspace
\ view thread
That DUO article is over 10 years old, and the Sign in with Google feature has been updated several times. It seems that the authentication and authorization APIs are separate now: https://developers.google.com/identity/gsi/web/guides/overview If someone has a modern article showing what's currently ...
Posted By Matt Deal 10-23-2023 06:51:28 AM
Found In Egroup: Google Workspace
\ view thread
You can add a calculated field to your data source in Looker Studio to do the grouping and sums.https://support.google.com/looker-studio/answer/7569962 In the example below, 'Storage Used (MB)' is the field that contains the total consumption for an account. CASE WHEN Storage Used (MB) = 0 OR Storage ...
Posted By Matt Deal 08-02-2023 07:12:05 AM
Found In Egroup: Google Workspace
\ view thread
We ran into the same issue when the feature was new. Others reported similar findings in the GAM group: https://groups.google.com/g/google-apps-manager/c/m5dC7dz6x08/m/Cgq6UnHIBAAJ Seems you still have to wait 24+ hours for the API to catch up. In our testing, it did seem to work immediately if you ...
Posted By Matt Deal 07-28-2023 12:02:13 PM
Found In Egroup: Google Workspace
\ view thread
Here's the generic impersonation implementation we use for python. There's other stuff in the library, so you probably don't need all of these imports. import os.path import pickle import socket import sys import time import google.auth import googleapiclient import httplib2 from google.auth.transport.requests ...
Posted By Matt Deal 07-06-2023 06:40:23 AM
Found In Egroup: Google Workspace
\ view thread
You can have them delete the files themselves by adding them to a TO_BE_DELETED folder or similar, moving files/folders into it, and then sending this folder to the trash. That will move the folder and all of its contents to trash, and similar to John's suggestion allow almost 2 months of recovery. ...
Posted By Matt Deal 06-08-2023 08:45:26 AM
Found In Egroup: Google Workspace
\ view thread
Since the extra storage goes in the pool, there's really no way to guarantee that any of that storage is reserved specifically for their drive(s). How are you explaining this concept to the user? Are you setting the quotas on your other users/drives low enough that even if they were all at 100% the ...
Posted By Matt Deal 10-25-2022 10:32:54 AM
Found In Egroup: Google Workspace
\ view thread
We have the service off, and we are seeing similar behavior. Colab Pro purchases used to show an error message that the Payments service was not enabled, but now you are immediately prompted for card information. Play store seems to be similar, but I can't remember exactly how it looked in the past. ...
Posted By Matt Deal 08-30-2022 07:56:59 AM
Found In Egroup: Google Workspace
\ view thread
You can try getting your My Business account bulk verified. This makes it easier to claim locations and seems to make your requested changes happen faster on items you don't own. https://support.google.com/business/answer/4490296?hl=en -- Matt DealGoogle AdministratorOffice of Information TechnologyNorth ...
Posted By Matt Deal 06-29-2022 07:21:55 AM
Found In Egroup: Google Workspace
\ view thread
If the secondary calendar is used to represent a room or an item that can be checked out, maybe you can have them convert to using a Resource calendar. These are owned by the domain like a Shared Drive and can be hidden from other users to an extent, and there's even a workflow for having one or more ...
Posted By Matt Deal 06-06-2022 02:30:33 PM
Found In Egroup: Google Workspace
\ view thread
Possible, yes. Useful, not always. You can perform the impersonation, and access the API as the user, but for many consumer apps, the APIs don't expose methods that would help manage the service at scale. Photos for example will let you list albums, but you can't delete anything through the API.htt ...
Posted By Matt Deal 02-10-2022 12:44:27 PM
Found In Egroup: Google Workspace
\ view thread
I can't speak to the current state of the Gmail DLP, but when I tested it several years ago, the SSN detection was very aggressive. Almost any 9 digit number with any hint of 'social' or 'tax' in context would trigger with high probability. Things like Student/Employee ID numbers, Tax IDs for businesses, ...