Page 1 of 1

Skype for Business 2016

Published: March 1, 2018 - 10:36
by tienou
Good morning,

I'd like to deploy Skype for Business O_o, it's a bit of a hassle to deploy.
I still have one obstacle:

Code: Select all

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

def install():
    print('installing wapt-skype32')
    run(r'"setup.exe" /adminfile "skype32.MSP"')

def uninstall():
	print('uninstall wapt-skype32')
	killalltasks("lync.exe")
    run(r'"setup.exe" /Uninstall LYNCENTRY /config uninstall.xml')
The command `run(r'"setup.exe" /Uninstall LYNCENTRY /config uninstall.xml')` is causing a problem. I don't understand why.

Code: Select all

IndentationError: unindent does not match any outer indentation level
Thanks in advance :)

Re: Skype for Business 2016

Published: March 1, 2018 - 11:02 AM
by agauvrit
Hello,

this topic has already been discussed. Uninstallation is performed using what is stored in the local database, so it doesn't have access to the files contained in the package.

viewtopic.php?f=9&t=846&p=2620&hilit=uninstall#p2620

Alexandre