43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
select-str sample
|
|
==========================
|
|
Searches specified files for specified patterns
|
|
|
|
|
|
Sample Language Implementations
|
|
===============================
|
|
This sample is available in the following language implementations:
|
|
|
|
- C#
|
|
- Managed C++ 2005
|
|
- VB.Net
|
|
|
|
|
|
To build the sample using Visual Studio:
|
|
=======================================
|
|
1. Open Windows Explorer and navigate to SelectString under the samples directory.
|
|
2. Double-click the icon for the .sln (solution) file to open the file in Visual Studio.
|
|
3. In the Build menu, select Build Solution.
|
|
The library will be built in the default Release or Debug directory.
|
|
|
|
|
|
To run the sample:
|
|
=================
|
|
1. Start Command Prompt.
|
|
2. Navigate to the folder containing the sample dll.
|
|
3. Run installutil "SelectStringSample.dll"
|
|
4. Start PowerShell
|
|
5. Run Add-PSSnapin SelectStrMCPPPSSnapIn (this adds the PowerShell snap-in to the shell)
|
|
6. Now type "select-str -path <pathoffilestosearch> -pattern <pattern> -casesensitive:<$true/$false> -simplematch:<$true/$false>" to run the Cmdlet that this sample contains.
|
|
|
|
|
|
|
|
Demonstrates
|
|
============
|
|
This sample demonstrates the following:
|
|
1.Usage of PSPath
|
|
2.Usage of Scriptblocks
|
|
3.Usage of Session State
|
|
|
|
|
|
|