Select-GoogleDrive Cmdlet
Searches Google Drive data.
Syntax
Select-GoogleDrive [parameters]
Remarks
The Select-GoogleDrive cmdlet allows you to use a syntax similar to SQL SELECT statements to search Google Drive data.
$conn = Connect-GoogleDrive -InitiateOAuth "GETANDREFRESH" -OAuthClientId "myClientId" -OAuthClientSecret "myClientSecret" -OAuthSettingsLocation "myOAuthSettings.txt"
Select-GoogleDrive -Connection $conn -Table "Files" -Columns @("Id","Name") -Where "Extension='png'"