[SOLVED] Problem Recording Machine Description

Share your tips or issues concerning the WAPT Console or WAPT Agent here
Forum Rules
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
Locked
michaelfoucaud
Messages: 3
Registration: June 29, 2022 - 3:56 PM

June 29, 2022 - 4:00 PM

Hello everyone,

to make network mapping easier, I want to enter the physical location and other information for each machine in Wapt.
I do this, but the information doesn't save; it disappears as soon as I close the Wapt console.

Is there an additional step I need to take?

Thank you for your answers.
:D
User avatar
sfonteneau
WAPT Expert
Messages: 2318
Registered: July 10, 2014 - 11:52 PM
Contact :

June 29, 2022 - 10:09 PM

Changing the job description in WAPT will actually change the description in Windows.

Therefore, the machine must be up and running when you add the description, otherwise it will disappear.
michaelfoucaud
Messages: 3
Registration: June 29, 2022 - 3:56 PM

June 30, 2022 - 08:30

By "UP" do you mean powered on and connected to the network?

I forgot to mention that the computers don't all have the same agent version.

Could the problem be related to that?

Thank you for your reply.
User avatar
sfonteneau
WAPT Expert
Messages: 2318
Registered: July 10, 2014 - 11:52 PM
Contact :

June 30, 2022 - 09:39

Yes, the Wapt agent should appear connected in the console

The function executed on the agent at that moment is this:

Code: Select all

def set_computer_description(description):
    """Change the computer descrption"""
    global _fake_hostname
    if _fake_hostname is not None:
        logger.warning('Skippig set_computer_description for fake host')
    elif wmi:
        for win32_os in wmi.WMI().Win32_OperatingSystem():
            win32_os.Description = description
    else:
        raise Exception('WMI not available')

michaelfoucaud
Messages: 3
Registration: June 29, 2022 - 3:56 PM

June 30, 2022 - 4:10 PM

Hello,

I've tried with several connected machines (green dot) in WAPT, but the problem persists. I don't understand why some machines remained registered and others didn't.

WAPT Server 1.7.4.6229
WAPT Agent 1.7.4.6229

Thank you for your replies.
User avatar
dcardon
WAPT Expert
Messages: 1932
Registration: June 18, 2014 - 09:58
Location: Saint Sébastien sur Loire
Contact :

June 30, 2022 - 4:52 PM

WAPT version 1.7 is no longer supported. Please upgrade and come back here if the problem persists.

Regards,

Denis
Denis Cardon - Tranquil IT
Share your experiences on WAPT! Send us your blog and article URLs in the "Your Opinion of the forum, and we'll feature them on the WAPT
Locked