[SOLVED] Command to open Notepad file

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
nixxax
Messages: 5
Registration: August 28, 2019 - 10:30

August 28, 2019 - 10:34

Hello,

I've been trying for far too long to create a command that opens a Notepad file containing text and displays instructions to the user...
First, is this even possible? If so, I would be very grateful for your advice.

Thank you in advance.
Christophe0110
Messages: 53
Registration: June 11, 2019 - 12:04

August 30, 2019 - 09:40

Hello nixxax,

It's doable! I do it in one of my packages.

During the installation, I copy a text file (containing instructions) into the software's installation directory.
Next, in the session_setup (executed when the user logs in), I use the following command:

Code: Select all

run(r'START /B "notepad" "c:\Program Files\tonprogramme\tonfichier.txt"')
However, if you wish to display the text file without waiting for session_setup (during installation), you must create a scheduled task that will open the text file...

A+
Christophe.
nixxax
Messages: 5
Registration: August 28, 2019 - 10:30

September 2, 2019 - 8:44 AM

Thanks Christophe for that precise answer.
I'll test it and get back to you with the report.
nixxax
Messages: 5
Registration: August 28, 2019 - 10:30

September 3, 2019 - 4:08 PM

So here's my feedback

I successfully created a folder containing the .txt file

However, I'm getting a syntax error message for the file opening command... :(
"exceptions.IndentationError: expected an indented block (line 10, offset 3): run (r'START /B "notepad" "C:\messages\test.txt"')'

Code: Select all

# -*- coding: utf-8 -*-


from setuphelpers import*

def session_setup():



run (r'START /B "notepad" "C:\messages\test.txt"')
Any leads?
User avatar
vcardon
WAPT Expert
Messages: 278
Registration: Oct 06, 2017 - 10:55 p.m.
Location: Nantes, France

September 3, 2019 - 9:24 PM

nixxax wrote: Sep 03, 2019 - 4:08 p.m. "exceptions.IndentationError: expected an indented block (line 10, offset 3): run (r'START /B "notepad" "C:\messages\test.txt"')'
Indent your "run" relative to your "def"?

Sincerely.
Vincent CARDON
Tranquil IT
nixxax
Messages: 5
Registration: August 28, 2019 - 10:30

September 4, 2019 - 9:00 AM

That's very kind of you, thank you. But I don't understand your comment... Excuse my ignorance, but what does "indent your 'run' relative to your 'def'" mean?
I'm not a developer, just an IT manager at a school...

Thank you in advance.
Christophe0110
Messages: 53
Registration: June 11, 2019 - 12:04

October 21, 2019 - 10:41

Hello nixxax,

You need to use a tab character for your `run` line so that Python understands that your `run` command is part of the `session_setup` function ;).

So this:

Code: Select all

def session_setup():
	run (r'START /B "notepad" "C:\messages\test.txt"')
and not:

Code: Select all

def session_setup():
run (r'START /B "notepad" "C:\messages\test.txt"')
A+
Locked