Hello TrankilIT team,
I've modified the tis-vscode package to add VS Code to the Windows context menu:
# -*- coding: utf-8 -*-
from setuphelpers import *
import json
def install():
bin_name = glob.glob("VSCodeSetup-*.exe")[0]
if control.architecture == "x64":
app_uninstallkey ...
The search returned 27 results
- February 12, 2025 - 12:59
- Forum: WAPT Packages
- Subject: Adding context menu for VSCODE
- Answers: 1
- Views : 3175
- November 29, 2024 - 7:48 AM
- Forum: WAPT Packages
- Subject: [RESOLVED] Webview Error
- Answers: 4
- Views : 3443
[RESOLVED] Webview Error
I just tested the new package and it works perfectly.
Thank you very much.
Thank you very much.
- November 27, 2024 - 09:25
- Forum: WAPT Packages
- Subject: [RESOLVED] Webview Error
- Answers: 4
- Views : 3443
[RESOLVED] Webview Error
Hello,
I saw that a fix for Webview had been deployed, however even with version 131.0.2903.63-11
I still have an installation problem:
Traceback (most recent call last):
File "C:\Program Files (x86)\wapt\common.py", line 4235, in install_wapt
exitstatus = setup ...
I saw that a fix for Webview had been deployed, however even with version 131.0.2903.63-11
I still have an installation problem:
Traceback (most recent call last):
File "C:\Program Files (x86)\wapt\common.py", line 4235, in install_wapt
exitstatus = setup ...
- August 5, 2024 - 3:52 PM
- Forum: WAPT Packages
- Subject: Deleting a file via session setup
- Answers: 4
- Views : 4494
Re: Deleting a file via session setup
Hello,
silly question, but does the user have the right to delete a file from the temp folder?
Don't forget that session-setup is done with the rights of the current user.
Hello t.heroult,
thank you for your question, indeed I hadn't taken that into account...
- August 5, 2024 - 2:39 PM
- Forum: WAPT Packages
- Subject: Deleting a file via session setup
- Answers: 4
- Views : 4494
Deleting a file via session setup
Hello everyone,
I'm trying to create a package for installing the Asana application. The application needs to be installed in the user's environment, so I'm using a session setup:
setup.py
# -*- coding: utf-8 -*-
from setuphelpers import *
import time
import glob
r"""
Usable WAPT package functions ...
I'm trying to create a package for installing the Asana application. The application needs to be installed in the user's environment, so I'm using a session setup:
setup.py
# -*- coding: utf-8 -*-
from setuphelpers import *
import time
import glob
r"""
Usable WAPT package functions ...
- December 8, 2023 - 2:08 PM
- Forum: WAPT Packages
- Subject: [RESOLVED] BitLocker IT infrastructure encryption
- Answers: 11
- Views : 12990
Re: BitLocker IT Encryption
Hello Paul,
these are the certificates (linked to your WAPT administrators) that allow you to sign WAPT packages.
these are the certificates (linked to your WAPT administrators) that allow you to sign WAPT packages.
- December 5, 2023 - 3:33 PM
- Forum: WAPT Packages
- Subject: [RESOLVED] BitLocker IT infrastructure encryption
- Answers: 11
- Views : 12990
Re: BitLocker IT Encryption
Hello Paul,
I use the tis-audit-bitlocker package, to display the keys in the WAPT console you need to edit the package and add the names of the certificates of the users authorized to read the audit data.
I use the tis-audit-bitlocker package, to display the keys in the WAPT console you need to edit the package and add the names of the certificates of the users authorized to read the audit data.
- November 29, 2023 - 7:50 AM
- Forum: WAPT Packages
- Subject: [RESOLVED] Tis-audit battery
- Answers: 3
- Views : 3421
Re: Tis-audit battery
Hello Jimmy,jpele wrote: ↑Nov 28, 2023 - 11:47 AM Hello,
The crash was supposed to occur on workstations with only one battery. I've fixed it:
https://wapt.tranquil.it/wapt-testing/t ... EPROD.wapt
Regards,
Jimmy
Indeed, it works perfectly now
Sincerely
- November 23, 2023 - 09:09
- Forum: WAPT Packages
- Subject: [RESOLVED] Tis-audit battery
- Answers: 3
- Views : 3421
[RESOLVED] Tis-audit battery
Good morning,
I tried to use the tis-audit-battery package, however the audit returned the following error:
The package is successfully deployed on a laptop. Do you have any idea why this error is occurring?
Thank you so much
I tried to use the tis-audit-battery package, however the audit returned the following error:
The package is successfully deployed on a laptop. Do you have any idea why this error is occurring?
Thank you so much
- October 12, 2023 - 4:23 PM
- Forum: WAPT Packages
- Subject: Insmonia Package
- Answers: 7
- Views : 5505
Re: Insmonia package
Thanks Simon,
I've corrected it, like this:
# -*- coding: utf-8 -*-
from setuphelpers import *
app_bin = "Insomnia.Core.8.2.0.exe"
app_dir = makepath(programfiles32, "Insomnia")
app_bin_path = makepath(app_dir, app_bin)
processes_to_kill = ["Insomnia"]
def session_setup():
# Initializing variables ...
I've corrected it, like this:
# -*- coding: utf-8 -*-
from setuphelpers import *
app_bin = "Insomnia.Core.8.2.0.exe"
app_dir = makepath(programfiles32, "Insomnia")
app_bin_path = makepath(app_dir, app_bin)
processes_to_kill = ["Insomnia"]
def session_setup():
# Initializing variables ...
