IT tutorials
 
Applications Server
 

Sharepoint 2010 : Windows PowerShell Scripts (part 3) - Writing Comment-Based Help Topics in Scripts,Using Functions in Scripts , Customizing Windows PowerShell with Profile Scripts

11/18/2014 8:18:01 PM
- Free product key for windows 10
- Free Product Key for Microsoft office 365
- Malwarebytes Premium 3.7.1 Serial Keys (LifeTime) 2019

Writing Comment-Based Help Topics in Scripts

Cmdlets in Windows PowerShell include a help topic that describes how to use the cmdlets in Windows PowerShell. When writing scripts, you can add a custom comment-based help topic using a comment block (enclosed with <# and #> ) containing at least one keyword. Some of the valid keywords are synopsis, description, parameter (followed by the parameter name), example, inputs, outputs, notes, links, component, role, and functionality. Here is an example that demonstrates how to add a comment-based help topic to a script in Windows PowerShell:

<#
.SYNOPSIS
Displays firstname and lastname

.DESCRIPTION
The myScript.ps1 script displays the firstname and lastname.

.PARAMETER firstname
Specifies the users firstname

.PARAMETER lastname
specifies the users lastname

.OUTPUTS
System.String. myScript.ps1 returns a string with the users firstname and lastname

.EXAMPLE
PS > .\myScript.ps1 Niklas Goude
FirstName: Niklas
LastName: Goude

#>

param([string]$firstname, [string]$lastname)
"FirstName: $firstname"
"LastName: $lastName"



When a comment-based help topic is added to a script, you can use the Get-Help cmdlet to display the help topic in the session. Here is how we could display the help topics added to the previous script:

PS > Get-Help .\myScript.ps1 -Examples

NAME
C:\Scripts\myScript.ps1

SYNOPSIS
Displays firstname and lastname

-------------------------- EXAMPLE 1 --------------------------

PS >.\myScript.ps1 Niklas Goude

FirstName: Niklas
LastName: Goude

Using Functions in Scripts

You can add functions in a script by placing them at the top of the script. (This might seem strange if you are used to VBScript.) Since Windows PowerShell reads the script from top to bottom, an error will occur if a function is called before it has been read into memory.

Here is an example of a Windows PowerShell script that includes a function:

param([string]$Identity)

function Check-Url([uri]$url) {
if($url.AbsoluteUri -ne $Null -and $url.Scheme -match 'http|https') {
$true
} else {
$false
}
}

if(Check-Url -url $Identity) {
Get-SPWeb -Identity $Identity
} else {
Write-Host "Invalid URL"
}

This script starts with a param statement, where we define the script parameters. Here, we use the type System.String for the input parameter. Next, we add our function to the script. At the bottom of the script, we add our code that executes when the script is run. We start off by validating the URL passed to the script. If the URL is valid, the script attempts to run the Get-SPWeb cmdlet. If not, the script returns Invalid URL.

Customizing Windows PowerShell with Profile Scripts

Profile scripts run automatically when Windows PowerShell starts. Using profile scripts, you can customize the Windows PowerShell environment and add commands, aliases, functions, variables, snap-ins, and drives to every Windows PowerShell session that you start. Windows PowerShell supports the four basic profile scripts shown Table 1.

Table 1. Windows PowerShell Profile Scripts
PathFilenameShellsUser
$PSHOME\profile.ps1All shellsAll users
$PSHOME\Microsoft.PowerShell_profile.ps1Microsoft.PowerShell shellAll users
$HOME\My Documents\WindowsPowerShell\profile.ps1All shellsCurrent user
$HOME\ My Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1Microsoft.PowerShell shellCurrent user

Table 1 shows how different profile scripts affect different users and shells. For instance, a profile script named profile.ps1 placed in the Windows PowerShell root folder affects all users. A profile script with the same name placed in the user’s home folder affects only that user.

For example, if we wanted all Windows PowerShell sessions to start by displaying “Hello” followed by the current user’s name, we would create a new profile script in the Windows PowerShell root folder and place the following code in that profile script:

PS > '"Hello $env:USERNAME"' | Out-File $PSHOME\profile.ps1

Note

Running the command may require administrative privileges.

 
Others
 
- Sharepoint 2010 : Windows PowerShell Scripts (part 2) - Executing Scripts, Using Parameters in Scripts
- Sharepoint 2010 : Windows PowerShell Scripts (part 1) - Setting the Execution Policy
- Sharepoint 2010 : Windows PowerShell Functions
- Sharepoint 2013 : Security and Policy - SharePoint Users
- Sharepoint 2013 : Security and Policy - Permissions and Permission Levels (part 2) - Creating Custom Permission Levels
- Sharepoint 2013 : Security and Policy - Permissions and Permission Levels (part 1)
- Sharepoint 2013 : Security and Policy - Security Administration
- Installing Exchange Server 2010 : Command-Line Setup (part 2) - Command-Line Server Recovery Options , Command-Line Delegated Server Installation , Installing Language Packs
- Installing Exchange Server 2010 : Command-Line Setup (part 1) - Command-Line Installation Options
- Installing Exchange Server 2010 : Graphical User Interface Setup
 
 
Top 10
 
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Finding containers and lists in Visio (part 2) - Wireframes,Legends
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Finding containers and lists in Visio (part 1) - Swimlanes
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Formatting and sizing lists
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Adding shapes to lists
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Sizing containers
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 3) - The Other Properties of a Control
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 2) - The Data Properties of a Control
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 1) - The Format Properties of a Control
- Microsoft Access 2010 : Form Properties and Why Should You Use Them - Working with the Properties Window
- Microsoft Visio 2013 : Using the Organization Chart Wizard with new data
Technology FAQ
- Is possible to just to use a wireless router to extend wireless access to wireless access points?
- Ruby - Insert Struct to MySql
- how to find my Symantec pcAnywhere serial number
- About direct X / Open GL issue
- How to determine eclipse version?
- What SAN cert Exchange 2010 for UM, OA?
- How do I populate a SQL Express table from Excel file?
- code for express check out with Paypal.
- Problem with Templated User Control
- ShellExecute SW_HIDE
programming4us programming4us