rjf2019 Posted July 10, 2020 Posted July 10, 2020 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.
localzuk Posted July 10, 2020 Posted July 10, 2020 We install it via the exe through SCCM here, along with some registry settings via Group Policy Preferences. 1
Michael Posted July 11, 2020 Posted July 11, 2020 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now