<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="/vendor/feed/atom.xsl" type="text/xsl"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
                        <id>https://www.script-example.com/en/feed</id>
                                <link href="https://www.script-example.com/en/feed" rel="self"></link>
                                <title><![CDATA[libe.net]]></title>
                    
                                <subtitle>IT Technology ~ Network + Hardware + OS + Smart + Web = LiBe.net</subtitle>
                                                    <updated>2023-03-01T18:06:03+01:00</updated>
                        <entry>
            <title><![CDATA[Execute remote commands with psexec pstools - cmd Windows]]></title>
            <link rel="alternate" href="https://www.script-example.com/en/psexec-pstools" />
            <id>https://www.script-example.com/psexec-pstools</id>
            <author>
                <name><![CDATA[Bernhard]]></name>
            </author>
            <summary type="html">
                <![CDATA[The pstools can be used to execute commands on other computers: Of course, this requires the necessary rights for the remote connection: by default, these are the domain administrator or the local administrator. As an alternative for a remote connection to another computer, PowerShell remoting can also be used, see: Powershell Remote]]>
            </summary>
                                    <updated>2023-03-01T18:06:03+01:00</updated>
        </entry>
            <entry>
            <title><![CDATA[PowerShell: Prevent screen saver, lock: Move mouse regularly]]></title>
            <link rel="alternate" href="https://www.script-example.com/en/ps-screensaver" />
            <id>https://www.script-example.com/en-ps-screensaver</id>
            <author>
                <name><![CDATA[Bernhard]]></name>
            </author>
            <summary type="html">
                <![CDATA[Alternatively, if you can't change the screen lock settings, you can move the mouse regularly, or have a script move the mouse. Originally  published as an AutoIt script, I recreated the script with a few PowerShell lines. Anyone who copies the following commands into a PowerShell session will prevent the computer from locking the screen or starting the screensaver:]]>
            </summary>
                                    <updated>2022-12-02T16:00:14+01:00</updated>
        </entry>
            <entry>
            <title><![CDATA[PowerShell task scheduling: restart computer or server]]></title>
            <link rel="alternate" href="https://www.script-example.com/en/powershell-schedule" />
            <id>https://www.script-example.com/en-powershell-schedule</id>
            <author>
                <name><![CDATA[Bernhard]]></name>
            </author>
            <summary type="html">
                <![CDATA[A scheduled task in Windows can of course also be created via PowerShell.]]>
            </summary>
                                    <updated>2022-11-15T19:31:54+01:00</updated>
        </entry>
            <entry>
            <title><![CDATA[Practical examples with batch]]></title>
            <link rel="alternate" href="https://www.script-example.com/en/batch-examples" />
            <id>https://www.script-example.com/batch-examples</id>
            <author>
                <name><![CDATA[Bernhard]]></name>
            </author>
            <summary type="html">
                <![CDATA[Handling variables in Windows Batch (command prompt)
Read all variables
Variables can be read out in the command prompt with the set command:]]>
            </summary>
                                    <updated>2022-11-08T19:33:03+01:00</updated>
        </entry>
            <entry>
            <title><![CDATA[Structure of a batch file Syntax: echo off cmd]]></title>
            <link rel="alternate" href="https://www.script-example.com/en/batch-output" />
            <id>https://www.script-example.com/en-batch-output</id>
            <author>
                <name><![CDATA[Bernhard]]></name>
            </author>
            <summary type="html">
                <![CDATA[If you have created a batch file, you can write a command in each line, see: how to create a batch file - basics. The commands are executed in sequence when the file is started. The behavior of the output can be adjusted as follows:]]>
            </summary>
                                    <updated>2022-09-23T12:41:48+02:00</updated>
        </entry>
            <entry>
            <title><![CDATA[how to create a batch file - basics]]></title>
            <link rel="alternate" href="https://www.script-example.com/en/create-a-cmd-file" />
            <id>https://www.script-example.com/create-a-cmd-file</id>
            <author>
                <name><![CDATA[Bernhard]]></name>
            </author>
            <summary type="html">
                <![CDATA[A simple batch file is a text file containing a set of command prompt commands. A simple editor is sufficient to create the batch file. A text file saved in Windows/DOS with the extension .cmd or .bat, can be executed directly. Especially for very simple processes, for example copying files or folders, batch files may still be easier than using PowerShell. At the latest, if commands should not be executed in sequence and certain if-queries, loops or functions are necessary, I would recommend the...]]>
            </summary>
                                    <updated>2022-09-23T12:18:48+02:00</updated>
        </entry>
            <entry>
            <title><![CDATA[PowerShell TCP Listener]]></title>
            <link rel="alternate" href="https://www.script-example.com/en/tcp-listener" />
            <id>https://www.script-example.com/en-tcp-listener</id>
            <author>
                <name><![CDATA[Bernhard]]></name>
            </author>
            <summary type="html">
                <![CDATA[PowerShell uses the following commands to open a socket on a specific port via System.NET:]]>
            </summary>
                                    <updated>2022-08-12T11:18:57+02:00</updated>
        </entry>
            <entry>
            <title><![CDATA[PowerShell Log-Files: Logging into a textfile - write to file]]></title>
            <link rel="alternate" href="https://www.script-example.com/en/powershell-logging" />
            <id>https://www.script-example.com/en-powershell-logging</id>
            <author>
                <name><![CDATA[Bernhard]]></name>
            </author>
            <summary type="html">
                <![CDATA[Log files in PowerShell can be created via the Out-File command, via a custom function, or via PowerShell's built-in Transcript.]]>
            </summary>
                                    <updated>2022-05-05T04:29:54+02:00</updated>
        </entry>
            <entry>
            <title><![CDATA[PowerShell: File attributes: Change date - without any tools.]]></title>
            <link rel="alternate" href="https://www.script-example.com/en/powershell-file-attributes" />
            <id>https://www.script-example.com/powershell-file-attributes</id>
            <author>
                <name><![CDATA[Bernhard]]></name>
            </author>
            <summary type="html">
                <![CDATA[As an alternative to special programs, the date of a file or folder can also be changed with PowerShell.&nbsp;]]>
            </summary>
                                    <updated>2022-05-03T12:00:05+02:00</updated>
        </entry>
            <entry>
            <title><![CDATA[sleep or wait in batch files: pause cmd]]></title>
            <link rel="alternate" href="https://www.script-example.com/en/sleep-or-wait-in-batch-files-pause-cmd" />
            <id>https://www.script-example.com/sleep-or-wait-in-batch-files-pause-cmd</id>
            <author>
                <name><![CDATA[Bernhard]]></name>
            </author>
            <summary type="html">
                <![CDATA[The function wait or sleep was not available in BATch files by default.Remedy is a small detour via the ping Command]]>
            </summary>
                                    <updated>2022-05-02T15:39:45+02:00</updated>
        </entry>
            <entry>
            <title><![CDATA[PowerShell Loops and Array]]></title>
            <link rel="alternate" href="https://www.script-example.com/en/powershell-loops-array" />
            <id>https://www.script-example.com/en-powershell-loops-array</id>
            <author>
                <name><![CDATA[Bernhard]]></name>
            </author>
            <summary type="html">
                <![CDATA[An array stores multiple values, similar to a 2-column table.]]>
            </summary>
                                    <updated>2022-05-02T15:21:22+02:00</updated>
        </entry>
    </feed>
