Downloads:
22,684,971
Downloads of v 44.0.12.0:
9,106
Last Update:
04 Dec 2020
Package Maintainer(s):
Software Author(s):
- Google Inc.
Tags:
google-drive-file-stream admin googledrive google drive files- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Google Drive File Stream
This is not the latest version of Google Drive File Stream available.
- 1
- 2
- 3
44.0.12.0 | Updated: 04 Dec 2020
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
22,684,971
Downloads of v 44.0.12.0:
9,106
Maintainer(s):
Software Author(s):
- Google Inc.
Google Drive File Stream 44.0.12.0
This is not the latest version of Google Drive File Stream available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Google Inc. The inclusion of Google Inc. trademark(s), if any, upon this webpage is solely to identify Google Inc. goods or services and not for commercial purposes.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Google Drive File Stream, run the following command from the command line or from PowerShell:
To upgrade Google Drive File Stream, run the following command from the command line or from PowerShell:
To uninstall Google Drive File Stream, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download google-drive-file-stream --internalize --version=44.0.12.0 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade google-drive-file-stream -y --source="'INTERNAL REPO URL'" --version="'44.0.12.0'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade google-drive-file-stream -y --source="'INTERNAL REPO URL'" --version="'44.0.12.0'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install google-drive-file-stream
win_chocolatey:
name: google-drive-file-stream
version: '44.0.12.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'google-drive-file-stream' do
action :install
source 'INTERNAL REPO URL'
version '44.0.12.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller google-drive-file-stream
{
Name = "google-drive-file-stream"
Version = "44.0.12.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'google-drive-file-stream':
ensure => '44.0.12.0',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 04 Dec 2020.
Access Drive files on Mac/PC faster, using less disk space
Introducing Drive File Stream — a new way to access all of your Google Drive files directly from your Mac or PC, without using up all your disk space. Unlike traditional file sync tools, Drive File Stream doesn’t require you to download your files first in order to access them from your computer. Instead, when you need to view or edit a file, it automatically streams from the cloud, on-demand. With Drive File Stream, your team will spend less time waiting for files to sync, no time worrying about disk space, and more time being productive.
Get your files in seconds with smarter offline access
With Drive File Stream, files you open are streamed directly from the cloud on-demand. You can also select files or folders that you want to access offline at anytime. The files that you are likely to work on from your Mac or PC become available in the background intelligently, making it much quicker to access them later.
Work with all the tools and apps you’re used to
With Drive File Stream, you can work with Drive files directly from the apps you're used to, like Microsoft Word and Adobe Photoshop. Any changes you make to files in those apps are saved automatically to Drive and can be accessed from any of your devices later.
$ErrorActionPreference = 'Stop';
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'google-drive-file-stream*'
fileType = 'exe'
silentArgs = '--silent'
validExitCodes = @(0)
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($key.Count -eq 1) {
$key | % {
$packageArgs['file'] = "$($_.UninstallString)"
if ($packageArgs['fileType'] -eq 'MSI') {
$packageArgs['silentArgs'] = "$($_.PSChildName) $($packageArgs['silentArgs'])"
$packageArgs['file'] = ''
}
Uninstall-ChocolateyPackage @packageArgs
}
}
elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
}
elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | % {Write-Warning "- $($_.DisplayName)"}
}
function AlreadyInstalled() {
param(
[Parameter(Mandatory = $true)]
[string]$product
)
$uninstallEntry = $(
Get-ChildItem "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\" -Recurse | Get-ItemProperty | Where-Object DisplayName -eq $product
)
$uninstallEntryWow64 = $(
Get-ChildItem "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\" -Recurse | Get-ItemProperty | Where-Object DisplayName -eq $product
)
if ($uninstallEntry -or $uninstallEntryWow64) {
return $true
}
return $false
}
Log in or click on link to see number of positives.
- google-drive-file-stream.44.0.12.0.nupkg (333c1957e0cc) - ## / 63
- GoogleDriveFSSetup.exe (32f558d1d019) - ## / 67
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
[Deprecated] Google Drive for desktop (formerly File Stream) 56.0.11.2022 | 588057 | Tuesday, April 12, 2022 | Approved | |
Google Drive for desktop (formerly File Stream) 56.0.11.0 | 286 | Monday, April 11, 2022 | Approved | |
Google Drive for desktop (formerly File Stream) 56.0.9.0 | 180 | Tuesday, April 5, 2022 | Approved | |
Google Drive for desktop (formerly File Stream) 55.0.3.0 | 6948820 | Thursday, February 10, 2022 | Approved | |
Google Drive for desktop (formerly File Stream) 54.0.3.0 | 2071670 | Wednesday, January 12, 2022 | Approved | |
Google Drive for desktop (formerly File Stream) 54.0.2.0 | 600898 | Tuesday, January 4, 2022 | Approved | |
Google Drive for desktop (formerly File Stream) 53.0.8.0 | 2674961 | Tuesday, November 23, 2021 | Approved | |
Google Drive for desktop (formerly File Stream) 52.0.6.0 | 1507308 | Wednesday, October 27, 2021 | Approved | |
Google Drive for desktop (formerly File Stream) 51.0.16.0 | 617277 | Saturday, October 16, 2021 | Approved | |
Google Drive for desktop (formerly File Stream) 51.0.14.0 | 1364902 | Wednesday, September 22, 2021 | Approved | |
Google Drive for desktop (formerly File Stream) 51.0.9.0 | 635594 | Friday, September 10, 2021 | Approved | |
Google Drive for desktop (formerly File Stream) 50.0.11.0 | 1429222 | Wednesday, August 11, 2021 | Approved | |
Google Drive for desktop (formerly File Stream) 49.0.11.0 | 478403 | Thursday, July 29, 2021 | Approved | |
Google Drive for desktop (formerly File Stream) 49.0.9.0 | 302184 | Tuesday, July 20, 2021 | Approved | |
Google Drive for desktop (formerly File Stream) 49.0.8.0 | 405520 | Wednesday, July 7, 2021 | Approved | |
Google Drive for desktop (formerly File Stream) 48.0.13.0 | 1142252 | Thursday, May 27, 2021 | Approved | |
Google Drive for desktop (formerly File Stream) 47.0.19.0 | 802164 | Monday, April 19, 2021 | Approved | |
Google Drive for desktop (formerly File Stream) 46.0.3.0 | 293241 | Monday, March 8, 2021 | Approved | |
Google Drive File Stream 45.0.12.0 | 221646 | Wednesday, February 3, 2021 | Approved | |
Google Drive File Stream 44.0.14.0 | 259399 | Thursday, December 10, 2020 | Approved | |
Google Drive File Stream 44.0.12.0 | 9106 | Friday, December 4, 2020 | Approved | |
Google Drive File Stream 44.0.10.0 | 7591 | Tuesday, December 1, 2020 | Approved | |
Google Drive File Stream 43.0.8.0 | 47025 | Wednesday, October 28, 2020 | Approved | |
Google Drive File Stream 42.0.11.0 | 15105 | Monday, September 21, 2020 | Approved | |
Google Drive File Stream 41.0.2.0 | 15005 | Wednesday, August 5, 2020 | Approved | |
Google Drive File Stream 40.0.8.0 | 11179 | Monday, June 29, 2020 | Approved | |
Google Drive File Stream 39.0.10.0 | 9818 | Monday, June 1, 2020 | Approved | |
Google Drive File Stream 38.0.16.0 | 7770 | Monday, April 27, 2020 | Approved | |
Google Drive File Stream 37.0.8.0 | 9015 | Thursday, March 12, 2020 | Approved | |
Google Drive File Stream 36.0.18.0 | 10412 | Thursday, January 30, 2020 | Approved | |
Google Drive File Stream 35.0.13.0 | 11334 | Tuesday, December 3, 2019 | Approved | |
Google Drive File Stream 34.0.20.0 | 9561 | Friday, October 18, 2019 | Approved | |
Google Drive File Stream 33.0.16.0 | 8692 | Tuesday, September 17, 2019 | Approved | |
Google Drive File Stream 31.0.13.0 | 24412 | Wednesday, May 15, 2019 | Approved | |
Google Drive File Stream 30.1.36.2348 | 9214 | Saturday, April 13, 2019 | Approved | |
Google Drive File Stream 29.1.85.2056 | 6857 | Thursday, March 14, 2019 | Approved | |
Google Drive File Stream 29.1.34.1821 | 14358 | Sunday, January 6, 2019 | Approved | |
Google Drive File Stream 28.1.35.1747 | 21844 | Saturday, November 17, 2018 | Approved | |
Google Drive File Stream 27.1.49.1806 | 9474 | Thursday, November 1, 2018 | Approved | |
Google Drive File Stream 26.1.37.2022 | 35107 | Thursday, July 26, 2018 | Approved | |
Google Drive File Stream 25.252.303.31 | 5625 | Thursday, July 12, 2018 | Approved | |
Google Drive File Stream 25.157.185.3 | 34759 | Sunday, March 11, 2018 | Approved | |
Google Drive File Stream 25.157.180.325 | 1331 | Monday, February 19, 2018 | Approved | |
Google Drive File Stream 25.102.133.409 | 4544 | Tuesday, December 19, 2017 | Approved | |
Google Drive File Stream 25.1.53.29 | 1751 | Monday, November 6, 2017 | Approved |
Ground Rules:
- This discussion is only about Google Drive File Stream and the Google Drive File Stream package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Google Drive File Stream, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.