Showing results for May 2015 - Page 6 of 11 - Scripting Blog [archived]

May 18, 2015
0
0

PowerTip: Find the PowerShell Version

Doctor Scripto
Doctor Scripto

Summary: Easily find your Windows PowerShell version.  How can I find information about my Windows PowerShell version?  Use the $psversionTable automatic variable with the PSVersion property, for example: $PSVersionTable.PSVersion.Major

Scripting Guy!Windows PowerShellPowerTip
May 18, 2015
0
0

Use PowerShell to Create Virtual Machine in Azure – Part 1

Doctor Scripto
Doctor Scripto

Summary: Learn how to use the Azure PowerShell cmdlets to identify built-in virtual machine templates. Honorary Scripting Guy, Sean Kearney, is here today to help out and give Ed a break (enjoy some tea and rest your fingers, my friend). In November, I touched on how to use Windows PowerShell for some overall setup and management of the Azure infra...

Windows PowerShellguest bloggerSean Kearney
May 17, 2015
0
0

PowerTip: Find PowerShell Aliases by Module

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to find aliases by module.  How can I easily find which modules expose aliases?  Use the Get-Alias cmdlet and pipe the results to the Sort-Object cmdlet (Sort is an alias), for example: Get-Alias | sort modulename -Descending

Scripting Guy!Windows PowerShellPowerTip
May 17, 2015
0
0

Weekend Scripter: Manage SQL Server Virtual Log File with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Guest blogger, Microsoft PFE, Jonathan Yong, talks about using Windows PowerShell to manage the SQL Server virtual log file. Microsoft Scripting Guy, Ed Wilson, is here. This is the week of new guest bloggers it seems. Today, please welcome Microsoft PFE, Jonathan Yong... Some time back, I was discussing a SQL Server administration use cas...

Scripting Guy!Windows PowerShellguest blogger
May 16, 2015
0
0

PowerTip: Find Aliases for PowerShell Cmdlets

Doctor Scripto
Doctor Scripto

Summary: Learn how to find aliases for Windows PowerShell cmdlets.  How can I easily find all the aliases defined for a given Windows PowerShell cmdlet?  Use the –Definition parameter of the Get-Alias cmdlet, for example: Get-Alias -Definition Get-ChildItem

Scripting Guy!Windows PowerShellPowerTip