Showing archive results for January 2016

Jan 19, 2016
Post comments count0
Post likes count0

PowerTip: Find related cmdlet aliases

Doctor Scripto
Doctor Scripto

Summary: Learn how to find aliases related to a series of cmdlets.  How can I find aliases that are related to a series of Windows PowerShell cmdlets, such as processes?  Use the Get-Alias cmdlet and specify a wildcard character for the definition parameter, for example: Get-Alias -Definition "*process"

Jan 19, 2016
Post comments count0
Post likes count0

PowerTip: Find related cmdlet aliases

Doctor Scripto
Doctor Scripto

Summary: Learn how to find aliases related to a series of cmdlets. How can I find aliases that are related to a series of Windows PowerShell cmdlets, such as processes? Use the Get-Alias cmdlet and specify a wildcard character for the definition parameter, for example:Get-Alias -Definition "*process"

Scripting Guy!Windows PowerShellscripting techniques
Jan 18, 2016
Post comments count0
Post likes count0

PowerTip: Find cmdlets and functions related to DSC

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to find cmdlets and functions related to Desired State Configuration.  How can I use Windows PowerShell to quickly find a list of cmdlets and functions related to            Desired State Configuration (DSC)?  Use the Get-Command cmdlet and specify a noun of *dsc*: Get-Comma...

Jan 18, 2016
Post comments count0
Post likes count0

PowerTip: Find cmdlets and functions related to DSC

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to find cmdlets and functions related to Desired State Configuration.  How can I use Windows PowerShell to quickly find a list of cmdlets and functions related to            Desired State Configuration (DSC)?  Use the Get-Command cmdlet and specify a noun of *dsc*: Get-Comma...

Jan 17, 2016
Post comments count0
Post likes count0

PowerTip: Find Amount of Time Between Two Dates

Doctor Scripto
Doctor Scripto

Summary: Learn how to use Windows PowerShell to find the amount of time between two dates.  How can I use Windows PowerShell to determin how many days until            Windows PowerShell Saturday on March 19, 2016 in Tampa?  There are many ways to find the difference between two dates. I use the [da...

Scripting Guy!Windows PowerShellPowerTip