Is there any way to execute my AutoIt script (.au3 file) from command line?
You could compile your AutoIt script and run the .exe from the command line.
Or, you can run the script like this:
AutoIt3.exe myscript.au3
How can I remove the current process/application which is already assigned to a port? For example: localhost:8080
Is there a way to examine the status of a specific port from the Windows command line? I know I can use netstat to examine all ports but netstat is slow and looking at a specific port probably isn't.
How can I grant permissions to a user on a directory (Read, Write, Modify) using the Windows command line?