The search returned 79 results

by empbilly
May 31, 2023 - 5:19 PM
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: Installation and build problem after reinstalling the development environment
Answers: 2
Views : 3919

Installation and build problems after reinstalling the development environment

Hello,

I had to reinstall my development environment and now I can no longer install, build, or download from VS Code. The .vscode folder is created, the launch.json and settings.json files are there, but when I click "install," for example, nothing happens...
by empbilly
December 15, 2021 - 6:29 PM
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: Managing computers under Windows
Answers: 0
Views : 5720

computer management under Windows

Hello,

when you try to use, for example, the "Local Users and Groups" option
in the "Computer Management" submenu of Windows, the following error appears:

Picture

Server: 1.8.2
Agent: 1.8.2

How to bypass this error?
by empbilly
November 22, 2021 - 1:44 AM
Forum: WAPT Server
Subject: Upgrade from 1.8.2 to 2.1
Answers: 3
Views : 7467

Upgrade from 1.8.2 to 2.1

Hello,

is it possible to upgrade from version 1.8.2 to 2.1, or is 1.8.2 the latest open-source version?
by empbilly
February 27, 2020 - 2:17 PM
Forum: Package List
Subject: Problem tis-git
Answers: 1
Views : 16381

Problem tis-git

Hello,

An error occurs first in the "url" variable, because it cannot find control.sources.

The git.inf file contains the entry "PlinkPath=c:\Program Files\TortoiseGit\bin\TortoiseGitPlink.exe", but nothing about TortoiseGit is installed and does not depend on the package.
by empbilly
February 7, 2020 - 12:28
Forum: WAPT Packages
Subject: [SOLVED] run(cmd) returns an error
Answers: 5
Views : 7094

Re: run(cmd) returns an error

Guys from reddit help me!! Now it is ok!!

for soft in installed_softwares("NetBeans"):
try:
cmd = "{} --silent\
-J-Dremove.netbeans.installdir=true \
-J-Dremove.netbeans.userdir=true".format(soft['uninstall_string'])
print("Uninstall string: {}".format(cmd))
run(cmd)
except ...
by empbilly
January 31, 2020 - 2:50 PM
Forum: WAPT Packages
Subject: [SOLVED] run(cmd) returns an error
Answers: 5
Views : 7094

Re: run(cmd) returns an error

Any help?
by empbilly
January 29, 2020 - 12:26
Forum: WAPT Packages
Subject: [SOLVED] run(cmd) returns an error
Answers: 5
Views : 7094

Re: run(cmd) returns an error

Could you try this?

Sorry, I didn't understand your question! :D

...
cmd = '"%s" --silent --state "%s"' % (cmd,makepath(path,'state.xml'))
...

In local runtime tests with Psy, this worked.
https://imgur.com/xt4o3BI.png

In production, it reinserts the ...
by empbilly
January 28, 2020 - 7:09 PM
Forum: WAPT Packages
Subject: [SOLVED] run(cmd) returns an error
Answers: 5
Views : 7094

[SOLVED] run(cmd) returns an error

Hello,

code:
for soft in installed_softwares("NetBeans"):
try:
cmd = WAPT.uninstall_cmd(soft['key'])
if len(cmd) == 2:
cmd = cmd[0]
if not '--silent' in cmd:
cmd = cmd + ' --silent --state {}state.xml'.format(path)
print(cmd)
run(cmd)
except ValueError:
print('An error occurred!')

j ...