Jump to content

Recommended Posts

Posted

We are gradually moving over to the cloud, and are looking to push out Google File Stream to all of the PCs on our domain. However, I notice that Google don't provide an MSI. I was wondering how everyone else has gone about installing it?

 

We have Windows server on site, and all of the PCs are domain joined. Typically push out software using an MSI and GPO.

Posted

I use the following script -

 

@echo off

reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{6BBAE539-2232-434A-A4E5-9A33560C6283}

if %ERRORLEVEL%==1 goto installer

if %ERRORLEVEL%==0 goto noinstaller

goto end

:installer

"\\server\share\GoogleFS\GoogleDriveFSSetup.exe" --silent

goto end

:noinstaller

goto end

:end

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...