Showing archive results for August 2013

Aug 9, 2013
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Get DHCP Stats

Doctor Scripto
Doctor Scripto

Summary: Learn how to use Windows PowerShell 3.0 in Windows Server 2012 to get DHCP statistics.  How can I get an overview from my DHCP server running on Windows Server 2012?  Use the Get-DHCPServerv4Statistics function: Get-DhcpServerv4Statistics -ComputerName DHCP1

Scripting Guy!Windows PowerShellPowerTip
Aug 9, 2013
Post comments count0
Post likes count0

Running PowerShell Scripts from a Remote File Share

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about running Windows PowerShell scripts from a remote file share. Microsoft Scripting Guy, Ed Wilson, is here. It is sort of official… There are at least three Windows PowerShell Saturday events coming up. They are listed on the PowerShell Saturday website. Atlanta and Singapore are already...

Scripting Guy!Windows PowerShellscripting techniques
Aug 8, 2013
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Rename Printers

Doctor Scripto
Doctor Scripto

Summary: Learn how to use Windows PowerShell 3.0 in Windows 8 to rename a printer.  How can I use Windows PowerShell 3.0 in Windows 8 to rename a printer?  Use the Get-Printer function to retrieve the printer, and pipe it to the Rename-Printer function: Get-Printer -Name 'mynewlaser' | Rename-Printe...

Scripting Guy!Windows PowerShellPowerTip
Aug 8, 2013
Post comments count0
Post likes count0

Use PowerShell in Windows 8 to Remove Printers

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about using Windows PowerShell 3.0 in Windows 8 to remove printers. Microsoft Scripting Guy, Ed Wilson, is here. The Scripting Wife and I have been talking to various people from the Charlotte Windows PowerShell User Group all week about doing another Windows PowerShell Saturday. It is an awfu...

Scripting Guy!Windows PowerShellprinting
Aug 7, 2013
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Display Help for Module Cmdlets

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to display all Help for all cmdlets in a module.  How can I see all of the Help examples for cmdlets from a specific module?  After you have updated your Help in Windows PowerShell 3.0, use the Get-Command cmdlet to retrieve all cmdlets from a specific module, pipe the results to the For...

Scripting Guy!Windows PowerShellPowerTip