HackGh Community Forum
How to write and run scripts in Windows PowerShell - Part 1 Empty


Free counters!
Staff Online
Staff Online
Members2390
Most Online179
Newest Member
https://hackgh.forumotion.com/u2487


You are not connected. Please login or register

How to write and run scripts in Windows PowerShell - Part 1

View previous topic View next topic Go down  Message [Page 1 of 1]

PhAnt0m

PhAnt0m
Administrator
Administrator
LONG DESCRIPTION

A script is a plain text file that contains one or more Windows PowerShell commands. Windows PowerShell scripts have a .ps1 file name extension.

Writing a script saves a command for later use and makes it easy to share with others. Most importantly, it lets you run the commands simply by typing the script path and the file name. Scripts can be as simple as a single command in a file or as extensive as a complex program.

Scripts have additional features, such as the #Requires special comment, the use of parameters, support for data sections, and digital signing for security. You can also write Help topics for scripts and for any functions in the script.

HOW TO WRITE A SCRIPT

A script can contain any valid Windows PowerShell commands, including single commands, commands that use the pipeline, functions, and control structures such as If statements and For loops.

To write a script, start a text editor (such as Notepad) or a script editor (such as the Windows PowerShell Integrated Scripting Environment [ISE]). Type the commands and save them in a file with a valid file name and the .ps1 file name extension.

The following example is a simple script that gets the services that are running on the current system and saves them to a log file. The log file name is created from the current date.

$date = (get-date).dayofyear
get-service | out-file "$date.log"

To create this script, open a text editor or a script editor, type these commands, and then save them in a file named ServiceLog.ps1.


HOW TO RUN A SCRIPT

Before you can run a script, you need to change the default Windows PowerShell execution policy. The default execution policy, "Restricted" prevents all scripts from running, including scripts that you write on the local computer. For more information, see about_Execution_Policies.

To run a script, type the full name and the full path to the script file.

For example, to run the ServicesLog script in the C:\Scripts directory, type:

c:\scripts\ServicesLog.ps1

To run a script in the current directory, type the path to the current directory, or use a dot to represent the current directory, followed by a path backslash (.\).

For example, to run the ServicesLog.ps1 script in the local directory, type:

.\ServicesLog.ps1

As a security feature, Windows PowerShell does not run scripts when you double-click the script icon in Windows Explorer or when you type the script name without a full path, even when the script is in the current directory. For more information about running commands and scripts in Windows PowerShell, see about_Command_Precedence.

Part 2 to follow.......

View previous topic View next topic Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum