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.
[SOLVED] Command to open Notepad file
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
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
-
Christophe0110
- Messages: 53
- Registration: June 11, 2019 - 12:04
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:
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.
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"')A+
Christophe.
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"')'
Any leads?
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"')-
Christophe0110
- Messages: 53
- Registration: June 11, 2019 - 12:04
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:
and not:
A+
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"')
Code: Select all
def session_setup():
run (r'START /B "notepad" "C:\messages\test.txt"')
