Showing archive results for 2015

Jan 9, 2015
Post comments count0
Post likes count0

PowerTip: Find Restore Points with PowerShell

Doctor Scripto

Summary: Learn how to use Windows PowerShell to find restore points.  How can I use Windows PowerShell to find a list of restore points on my computers running            Windows 8.1 or Windows 8?  Use the Get-ComputerRestorePoint cmdlet. Notes 

Scripting Guy!Windows PowerShellPowerTip
Jan 8, 2015
Post comments count0
Post likes count0

PowerTip: Find Related PowerShell Commands

Doctor Scripto

Summary: Learn how to find related Windows PowerShell commands.  How can I find related commands in Windows PowerShell?  Use the Get-Command cmdlet and sort by the ModuleName property.            For example, to find commands that use the Get verb, use the following command: Get-...

Scripting Guy!Windows PowerShellPowerTip
Jan 7, 2015
Post comments count0
Post likes count0

PowerTip: Find Time Zone Names with PowerShell

Doctor Scripto

Summary: Find time zone enumeration names with Windows PowerShell.  How can I use Windows PowerShell to enumerate the names of time zones that are configured on my computer?  Use the System.TimeZoneInfo .NET Framework class, and use the GetSystemTimeZones static method            to obtain the list....

Scripting Guy!Windows PowerShellPowerTip
Jan 6, 2015
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Get All Computer Names

Doctor Scripto

Summary: Use Windows PowerShell to easily retrieve a list of all computer names on the network.  How can I use Windows PowerShell to obtain a list of all the servers on the network so I can run a            script against them without typing a bunch of names?  Use the Get-ADComputer cmdlet from the ...

Scripting Guy!Windows PowerShellPowerTip
Jan 5, 2015
Post comments count0
Post likes count0

PowerTip: List Folders Containing PowerShell Modules

Doctor Scripto

Summary: Learn how to list all folders that contain Windows PowerShell modules.  How can I see a list of all folders that contain Windows PowerShell modules?  Use the PSModulePath environmental variable, and split it to form paths to the modules. Then use the            Get-ChildItem cmdle...

Scripting Guy!Windows PowerShellPowerTip