Hello,
your problem is related to Kerberos agent registration.
If you have enabled Kerberos registration for workstations, there are additional configuration steps to follow: https://www.wapt.fr/fr/doc/wapt-security/security-install-kerberos.html
If you do not wish to do this...
The search returned 238 results
- March 4, 2020 - 09:48
- Forum: WAPT Server
- Subject: [SOLVED] NGINX - 403 Client Error: Forbidden
- Answers: 3
- Views : 6453
- February 25, 2020 - 10:11
- Forum: WAPT Server
- Subject: [RESOLVED] PC STATUS DISCONNECTED
- Answers: 2
- Views : 5698
Re: PC DISCONNECTED STATUS
Is the WAPT service running on the machine?
The green "dot" indicates the connectivity status of the WAPT service. If it is down or misconfigured, it cannot connect to the server, and consequently, the dot changes to DISCONNECTED.
To attempt a service restart, use
net stop...
The green "dot" indicates the connectivity status of the WAPT service. If it is down or misconfigured, it cannot connect to the server, and consequently, the dot changes to DISCONNECTED.
To attempt a service restart, use
net stop...
- February 25, 2020 - 10:09
- Forum: WAPT Packages
- Subject: [SOLVED] Problem with LibreOffice 3.5.2 x86 package
- Answers: 4
- Views : 6669
Re: Problem with LibreOffice package 3.5.2 x86
Hello,
the package is available again.
Alexandre
the package is available again.
Alexandre
- February 20, 2020 - 5:47 PM
- Forum: WAPT Packages
- Subject: [SOLVED] Creating a package to modify the Windows registry
- Answers: 6
- Views : 12014
Re: Creating a package to modify the Windows registry
For HKLM > system context
Code: Select all
# -*- coding: utf-8 -*-
from setuphelpers import *
uninstallkey = []
def install():
registry_setstring(HKEY_LOCAL_MACHINE, r"SOFTWARE\Microsoft\Office\16.0\Outlook\Autodiscover",'ExcludeExplicitO365Endpoint',1, type=REG_DWORD)
- February 20, 2020 - 2:15 PM
- Forum: WAPT Packages
- Subject: Creating a Draftsight package
- Answers: 1
- Views : 4168
Re: Creating a Draftsight package
Yes, we've already done this for several of our clients, but we haven't kept the source internally.
- February 20, 2020 - 2:11 PM
- Forum: WAPT Packages
- Subject: [SOLVED] Creating a package to modify the Windows registry
- Answers: 6
- Views : 12014
Re: Creating a package to modify the Windows registry
So I just got a reprimand from my colleague; it's an HKCU key, so it can't be modified in the system context, only in the user context! (Thanks, Simon!)
The correct answer is:
# -*- coding: utf-8 -*-
from setuphelpers import *
uninstallkey = []
def install():
pass ...
The correct answer is:
# -*- coding: utf-8 -*-
from setuphelpers import *
uninstallkey = []
def install():
pass ...
- February 20, 2020 - 1:46 PM
- Forum: WAPT Packages
- Subject: [SOLVED] Creating a package to modify the Windows registry
- Answers: 6
- Views : 12014
Re: Creating a package to modify the Windows registry
Hello,
It's simpler with the right function: https://www.wapt.fr/fr/doc/wapt-create- ... gistry-key
Alexandre
It's simpler with the right function: https://www.wapt.fr/fr/doc/wapt-create- ... gistry-key
Alexandre
- February 5, 2020 - 3:00 PM
- Forum: WAPT Packages
- Subject: [RESOLVED] Uninstalling Microsoft Teams
- Answers: 2
- Views : 5386
Re: Uninstalling Microsoft Teams
Hello,
there's currently a consensus that installing Microsoft Teams in a business environment is one of the most infamous messes Microsoft has ever released.
In our package, created in collaboration with a WAPT Enterprise client, we've included an uninstallation option: https://store.wapt.fr ...
there's currently a consensus that installing Microsoft Teams in a business environment is one of the most infamous messes Microsoft has ever released.
In our package, created in collaboration with a WAPT Enterprise client, we've included an uninstallation option: https://store.wapt.fr ...
- January 22, 2020 - 3:26 PM
- Forum: WAPT Server
- Subject: WAPT 1.8 - Linux Agent and Repositories
- Answers: 15
- Views : 19678
Re: WAPT 1.8 - Linux Agent and Repositories
Hello,
The documentation is online: https://www.wapt.fr/fr/doc/wapt-configu ... linux.html
The translation will be available this week.
Alexandre
The documentation is online: https://www.wapt.fr/fr/doc/wapt-configu ... linux.html
The translation will be available this week.
Alexandre
- January 6, 2020 - 3:24 PM
- Forum: Your opinion
- Subject: [SOLVED] Web Services Active Directory
- Answers: 5
- Views : 42985
Re: Web Services Active Directory
Hello,
Due to a misunderstanding, we found this in the Samba documentation: https://dev.tranquil.it/samba/fr/samba_advanced_methods/samba_python_samdb.html ;)
This part of the documentation is still a work in progress, but it's already a good starting point if you want to use Python with Samba.
Regards...
Due to a misunderstanding, we found this in the Samba documentation: https://dev.tranquil.it/samba/fr/samba_advanced_methods/samba_python_samdb.html ;)
This part of the documentation is still a work in progress, but it's already a good starting point if you want to use Python with Samba.
Regards...
