According to Microsoft ; Power Automate allows you to automate web and desktop applications on your Windows desktop by mimicking the user interface actions like clicks, and keyboard input. You can also combine these actions with predefined support for applications like Excel to help automate repetitive tasks. Not sure if that fits my goal below, but let's try something simple on Windows 11: Appending a text file with new input. I: Use a message box to prompt for a name. The name is saved and 'Hello, %name% is saved to a text file. The flow: I had made a variable called 'name' to write to. The textbox made its own variable ('UserInput'), so I told step two (Write text to file) to simply output 'Hello %UserInput% It did save to a text file -- I wish it would open said file automatically upon saving, but a text box is the next best thing. The file updates in real time! Let's try another: Put a saved file in a particular p...