[SOLVED] Google Drive File Stream
Published: May 14, 2018 - 3:30 PM
Good morning,
WAPT Server: CentOS 7.3
WAPT Console: 1.3.12.13 on Windows 10x64
WAPT Client: 1.3.12.13
Client machines: Running Win10x64
I would like to install the Google Drive File Stream package on my Windows 10 clients using WAPT.
After various tests I am able to install the package but I cannot uninstall it; wapt does not give me an error during uninstallation but it does not uninstall it on the client.
Here is the code for my package:
Running the uninstallation command manually on the client works.
Furthermore, the other problem is the folder with the software version; for now, I've hardcoded it for testing purposes, but I'll need to find another solution eventually.
If anyone has an idea for creating this package, I'm all ears
THANKS.
WAPT Server: CentOS 7.3
WAPT Console: 1.3.12.13 on Windows 10x64
WAPT Client: 1.3.12.13
Client machines: Running Win10x64
I would like to install the Google Drive File Stream package on my Windows 10 clients using WAPT.
After various tests I am able to install the package but I cannot uninstall it; wapt does not give me an error during uninstallation but it does not uninstall it on the client.
Here is the code for my package:
Code: Select all
# -*- coding: utf-8 -*-
from setuphelpers import *
uninstallkey = ['{6BBAE539-2232-434A-A4E5-9A33560C6283}']
def install():
print('installing google-drive-file-stream')
run(r'"GoogleDriveFSSetup.exe" --silent')
def uninstall():
print('uninstalling google-drive-file-stream')
run(r'"%PROGRAMFILES%\Google\Drive File Stream\25.196.245.2031\uninstall.exe" --silent --force_stop')Furthermore, the other problem is the folder with the software version; for now, I've hardcoded it for testing purposes, but I'll need to find another solution eventually.
If anyone has an idea for creating this package, I'm all ears
THANKS.