This site uses cookies for analytics, personalized content and ads. By continuing to browse this site, you agree to this use.
Learn more
TechNet
Products
IT Resources
Downloads
Training
Support
Products
Windows
Windows Server
System Center
Microsoft Edge
Office
Office 365
Exchange Server
SQL Server
SharePoint Products
Skype for Business
See all products »
Resources
Channel 9 Video
Evaluation Center
Learning Resources
Microsoft Tech Companion App
Microsoft Technical Communities
Microsoft Virtual Academy
Script Center
Server and Tools Blogs
TechNet Blogs
TechNet Flash Newsletter
TechNet Gallery
TechNet Library
TechNet Magazine
TechNet Wiki
Windows Sysinternals
Virtual Labs
Solutions
Networking
Cloud and Datacenter
Security
Virtualization
Updates
Service Packs
Security Bulletins
Windows Update
Trials
Windows Server 2016
System Center 2016
Windows 10 Enterprise
SQL Server 2016
See all trials »
Related Sites
Microsoft Download Center
Microsoft Evaluation Center
Drivers
Windows Sysinternals
TechNet Gallery
Training
Expert-led, virtual classes
Training Catalog
Class Locator
Microsoft Virtual Academy
Free Windows Server 2012 courses
Free Windows 8 courses
SQL Server training
Microsoft Official Courses On-Demand
Certifications
Certification overview
Special offers
MCSE Cloud Platform and Infrastructure
MCSE: Mobility
MCSE: Data Management and Analytics
MCSE Productivity
Other resources
Microsoft Events
Exam Replay
Born To Learn blog
Find technical communities in your area
Azure training
Official Practice Tests
Support options
For business
For developers
For IT professionals
For technical support
Support offerings
More support
Microsoft Premier Online
TechNet Forums
MSDN Forums
Security Bulletins & Advisories
Not an IT pro?
Microsoft Customer Support
Microsoft Community Forums
Sign in
Home
Library
Wiki
Learn
Gallery
Downloads
Support
Forums
Blogs
Resources For IT Professionals
United States (English)
Россия (Pусский)
中国(简体中文)
Brasil (Português)
Skip to locale bar
Get this Tag RSS feed
Tag Cloud
.net
Active Directory
AD DS
ASP.NET
azure
BizTalk
BizTalk Server
C#
C# .NET
cloud
EAA
Ed Price
Edward van Biljon
en-US
es-ES
Excel
Exchange
Exchange 2010
Exchange 2013
Exchange Server 2013
fa-IR
Fernando Lugao Veltem
FIM
FIM 2010
fr-FR
has Back to Top link
has code
has command
has comment
has Conclusion
has download link
has Gallery download
has image
Has Link
has links
has Other Languages
has reference
has References
has See Also
has summary
Has Table
Has TOC
has video
How To
Hyper-V
it-IT
Link Collection
Lync
magazine article
marcelo strippoli
mehmet parlakyiğit
Microsoft
Microsoft Azure
Multi Language Wiki Articles
MVP
needs work
Office 365
pgtag
Português Brasil
PowerShell
pt-BR
SCCM
SharePoint
SharePoint 2010
SharePoint 2013
SharePoint 2016
Sharepoint Online
Small Basic
SQL
SQL Server
SQL Server 2012
step by step
stub
System Center
System Center 2012
TAT
TAT Members
TechNet Guru
TechNet Guru Gold Medal Winner
TechNet Guru Medal Winner
TechNet Wiki
TechNet Wiki Featured Article
Translated into Portuguese
troubleshooting
tr-TR
T-SQL
Visual Studio
VS
Wiki
Windows
Windows 10
Windows 7
windows 8
Windows Phone
Windows Phone Migration Content
windows server
Windows Server 2008
Windows Server 2008 R2
Windows Server 2012
windows server 2012 r2
Wiki
>
All Tags
>
en-US
>
PowerShell
>
has code
Tagged Content List
Wiki Page:
How to Use VBScript to Run a PowerShell Script
Durval Ramos
FIM ScriptBox Item Summary If you you want to run a PowerShell script by just double-clicking it, you can do this calling the PowerShell script from a VBScript. The VBScript code below shows an example for this. To use the VBScript, save the VBS file in the folder where your PowerShell script...
on
23 May 2014
Wiki Page:
Install a Service into Windows Server AppFabric by Using PowerShell
Durval Ramos
There are a couple of different options to choose from when you want to deploy WF and WCF services into IIS and Windows Server AppFabric. Both IIS and Windows Server AppFabric ship with comprehensive PowerShell APIs which can be used to fully automate the deployment, configuration and management of...
on
23 May 2014
Wiki Page:
How to Use Test-Path in PowerShell Scripts
Durval Ramos
You can use the Windows PowerShell cmdlet Test-Path to avoid unnecessary errors in your scripts caused by things not being where you expect them, or by another part of your script returning a “path” that isn’t valid. So, for example, we can test if $profile exists: Test-Path $profile And if...
on
23 May 2014
Wiki Page:
Quick Guide to PowerShell v2 Remoting with PSSession
Bob Blork
There are excellent, detailed references to all the powerful remoting features in PowerShell v2, including: Administrator's Guide to Windows PowerShell Remoting (Requires registration, but is free) A Layman's Guide to Windows PowerShell Remoting (Free PDF download, no registration) ...
on
23 May 2014
Wiki Page:
Common Exchange 2010 Cmdlets
Durval Ramos
On this Exchange TechNet Wiki page is a list of common Exchange 2010 PowerShell cmdlets Find more common cmdlets in the Exchange 2010 Exchange Management Shell Quick Reference download. Moving Mailboxes New-MoveRequest -Identity <user ID> -TargetDatabase "DB01" Get-MoveRequestStatistics...
on
21 May 2014
Wiki Page:
PowerShell Gotchas
Durval Ramos
Overview The purpose of this page is to capture various PowerShell "gotchas," or cases where the PowerShell design of think -> type -> execute breaks down. Note that these do not constitute bugs or feature requests; this page is simply documentation of how to leverage the PowerShell...
on
21 May 2014
Wiki Page:
How to Convert Text Output of a Legacy Console Application to PowerShell Objects
Durval Ramos
Table of Contents Introduction One line for each object Each line as a property Objects and properties spanning on multiple lines See Also Introduction Windows PowerShell is great tool when you work with cmdlets and objects, but sometimes you need to use legacy console applications. May be sometime...
on
21 May 2014
Wiki Page:
PowerShell Examples: Range Operator
Durval Ramos
Find an available IP address within a subnet: 1..255 | %{Test-Connection 192.168.1.$_ -Count 1} Open an RDP session with machines QA1 through QA7: 1..7 | %{mstsc /v:QA$_} Read lines from a text file and write out only lines that begin with uppercase character: Get-Content...
on
21 May 2014
Wiki Page:
Display Subject Alternative Names of a Certificate with PowerShell
Durval Ramos
Subject Alternative Names (SANs) are stored as System.Security.Cryptography.X509Certificates.X509Extension objects in the PowerShell Certificate Provider . First you can get the cert you want to view. $cert = get-childitem cert:\localmachine\my\73844B2206C170903185E777F65E969247462741...
on
21 May 2014
Wiki Page:
Understanding Booleans in PowerShell
Durval Ramos
PowerShell supports a data type Boolean, with two values possible $true, and $false. In general, $false evaluates to 0 (zero), and $true evaluates to 1. And (usually) any non-zero integer evaluates as $true. But PowerShell does automatic data type-casting, based on the left side of the equation, leading...
on
21 May 2014
Wiki Page:
PowerShell: Getting the Most from Trace-Command
Durval Ramos
Link to Parent: PowerShell - Deep Dive and Best Practice This article provides details and examples of using the trace command to see what is going on behind the scenes with your command. Table of Contents Introduction to Trace-Command Parameter Sets Command Expression Tracesources Videos...
on
21 May 2014
Wiki Page:
PowerShell in 10 Minutes
Durval Ramos
Ownership of Microsoft· Scripting language designed especially for system administrators. · Targeted for management and administration systems · Object Oriented based pipelines · Perform C #, WMI, XML, Active Directory and. NET WORK ENVIRONMENT console • Lets you run PowerShell...
on
21 May 2014
Wiki Page:
Using Pre-4.6 MSI Packages with the App-V 4.6 Client
Vee Dash CKC
The App-V 4.6 client has been tested extensively with pre-4.6 sequenced packages. If you have 4.5 RTM packages which use MSI for deployment, then they will have to be updated (4.5 CU1 and SP1 MSIs are not affected by this). There are three ways to update your 4.5 RTM packages: Use the MSI...
on
12 May 2014
Page 66 of 75 (1,875 items)
«
64
65
66
67
68
»