Sign in
TechNet Blogs
Technet Blog Images
More ...
Browse by Tags
TechNet Blogs
>
Hey, Scripting Guy! Blog
>
All Tags
>
powertip
Server & Tools Blogs
>
Server & Management Blogs
>
Hey, Scripting Guy! Blog
All About Windows Server
Windows Server
Windows Server Essentials Blog
Partner & Customer Solutions
Ask The
Performance Team
Ask Premier Field Engineering
Ask the Core Team
Cloud OS Blogs
Brad Anderson - In the Cloud
Building Clouds
Server & Cloud
Datacenter Management
The System Center Team Blog
System Center Virtual Machine Manager
System Center Service Manager
System Center Operations Manager
System Center Data Protection Manager
System Center Orchestrator
Partner & Customer Solutions
Client Management
System Center Configuration Manager
System Center Service Manager
MDOP
Malware Protection Center
Windows Intune
SUS
Partner and Customer Solutions
Virtualization, VDI & Remote Desktop
Virtualization Team Blog
Ben Armstrong’s Virtualization Blog
Jose Barreto Blog on Hyper-V
Partner & Customer Solutions
Remote Desktop Services
Windows Multipoint Server
Ask the Core Team on Hyper-V
File & Storage & High Availability
File & Storage
Jose Barreto
Partner & Customer Solutions
Ask the Core Team on Failover Cluster
Clustering & High Availability
Windows Server Management
PowerShell
Hey Scripting Guy (PowerShell)
Server Manager
Group Policy
Networking
Identity & Access
Ask Directory Services
Active Directory
Hey, Scripting Guy! Blog
Learn about Windows PowerShell
Live Now on Server & Tools Blogs
Subscribe
Comments
Contact
Menu
Blog Home
Atom
Translate this page
Powered by
Microsoft® Translator
Twitter Feed
Recent Posts
PowerTip: Use a PowerShell 3.0 Switch to Find Only Directories
Posted
4 hours ago
by
The Scripting Guys
2
Comments
Don't Translate File and Folder VBScript Scripts into PowerShell
Posted
16 hours ago
by
The Scripting Guys
5
Comments
PowerTip: Use PowerShell to Check the Status of Event Logs
Posted
1 day ago
by
The Scripting Guys
0
Comments
Translate a VBScript Event Log Script to PowerShell, Dude...
Posted
1 day ago
by
The Scripting Guys
2
Comments
Tags
Active Directory
Brian Wilhite
CIM
event logs
files
firewall
getting started
guest blogger
Logs and monitoring
operating system
PowerShell 3
PowerTips
RSS
Scripting Guy!
scripting techniques
Sean Kearney
security
servers
services
storage
using the Internet
Windows 8
Windows PowerShell
Windows Server 2012
WMI
Related Resources
Script Center Home
Scripting Library
Learn to Script
Script Repository
Scripting Forum
2012 Scripting Games
Archives
Archives
June 2013
(46)
May 2013
(68)
April 2013
(61)
March 2013
(62)
February 2013
(56)
January 2013
(62)
December 2012
(62)
November 2012
(68)
October 2012
(62)
September 2012
(62)
August 2012
(63)
July 2012
(32)
June 2012
(39)
May 2012
(33)
April 2012
(97)
March 2012
(44)
February 2012
(31)
January 2012
(31)
December 2011
(31)
November 2011
(30)
October 2011
(31)
September 2011
(30)
August 2011
(31)
July 2011
(31)
June 2011
(30)
May 2011
(31)
April 2011
(97)
March 2011
(41)
February 2011
(28)
January 2011
(31)
December 2010
(31)
November 2010
(30)
October 2010
(31)
September 2010
(30)
August 2010
(33)
July 2010
(31)
June 2010
(30)
May 2010
(67)
April 2010
(65)
March 2010
(34)
February 2010
(29)
January 2010
(23)
December 2009
(23)
November 2009
(22)
October 2009
(23)
September 2009
(22)
August 2009
(25)
July 2009
(24)
June 2009
(38)
May 2009
(22)
April 2009
(22)
March 2009
(22)
February 2009
(20)
January 2009
(22)
December 2008
(8)
November 2008
(17)
October 2008
(9)
September 2008
(8)
August 2008
(6)
July 2008
(5)
June 2008
(21)
May 2008
(21)
April 2008
(22)
March 2008
(21)
February 2008
(21)
January 2008
(22)
December 2007
(10)
November 2007
(20)
October 2007
(23)
September 2007
(19)
August 2007
(23)
July 2007
(21)
June 2007
(21)
May 2007
(22)
April 2007
(21)
March 2007
(22)
February 2007
(21)
January 2007
(21)
December 2006
(11)
November 2006
(20)
October 2006
(22)
September 2006
(20)
August 2006
(23)
July 2006
(20)
June 2006
(22)
May 2006
(22)
April 2006
(20)
March 2006
(23)
February 2006
(20)
January 2006
(21)
December 2005
(16)
November 2005
(20)
October 2005
(21)
September 2005
(21)
August 2005
(23)
July 2005
(20)
June 2005
(22)
May 2005
(21)
April 2005
(21)
March 2005
(22)
February 2005
(20)
January 2005
(21)
December 2004
(16)
November 2004
(20)
October 2004
(21)
September 2004
(21)
August 2004
(22)
More
▼
Less
▲
Tagged Content List
Blog Post:
PowerTip: Use a PowerShell 3.0 Switch to Find Only Directories
The Scripting Guys
Summary : Use a switch in Windows PowerShell 3.0 to easily find only directories. How can I use Windows PowerShell 3.0 to find a list of only directories from my current location? Use the –Directory switch with the Get-ChildItem cmdlet. Get-ChildItem -Directory Note The –Directory...
on
19 Jun 2013
Blog Post:
PowerTip: Use PowerShell to Check the Status of Event Logs
The Scripting Guys
Summary : Use Windows PowerShell to check the status of Windows event logs. How can I easily check sizes, the number of entries, and the overflow action of all traditional event logs on my Windows system? Use the Get-EventLog cmdlet with the –list switch: Get-EventLog -List
on
18 Jun 2013
Blog Post:
PowerTip: Find Files Modified During a Date Range by Using PowerShell
The Scripting Guys
Summary : Use Windows PowerShell to find files that were modified during a specific date range. How can I use Windows PowerShell to find all files modified during a specific date range? Use the Get-ChildItem cmdlet to collect the files, filter it to the Where-Object cmdlet, specify the date for...
on
17 Jun 2013
Blog Post:
PowerTip: Use PowerShell to Find IP Config of Adapter
The Scripting Guys
Summary : Use Windows PowerShell 3.0 in Windows 8 to find the IP configuration of a specifically named IP adapter. How can I use Windows PowerShell 3.0 in Windows 8 to easily find the IP address configuration of a network adapter named External Ethernet Apapter ? Use a wildcard character with the...
on
16 Jun 2013
Blog Post:
PowerTip: Find Information about Network Adapters with PowerShell
The Scripting Guys
Summary : Use Windows PowerShell in Windows 8 to find information about network adapters. In Windows 8, how can I find information about network adapters? Use the Get-NetAdapter function: Get-NetAdapter
on
15 Jun 2013
Blog Post:
PowerTip: Use PowerShell to Add Drive to Virtual Machine
The Scripting Guys
Summary : Use Windows PowerShell to add a new hard disk drive to a virtual machine on Hyper-V. How can I to add another hard drive to my virtual machine? Use the Add-VMHardDiskDrive cmdlet with the following command: STOP-VM -vmname "My Virtual Machine" NEW-VHD -Dynamic C:\VHD\MyDrive.vhdx...
on
14 Jun 2013
Blog Post:
PowerTip: Use PowerShell to Find All AD DS Users
The Scripting Guys
Summary : Use a Windows PowerShell cmdlet from the RSAT to find all users in Active Directory Domain Services. How can I easily find all users in Active Directory Domain Services (AD DS)? Use the asterisk wildcard character with the Get-ADUser cmdlet from the RSAT. Get-ADUser -Filter *
on
13 Jun 2013
Blog Post:
PowerTip: Use PowerShell 3.0 CIM Class to Find Logical Disk Info
The Scripting Guys
Summary : Use the Windows PowerShell 3.0 CIM classes to easily find detailed information about logical disks. How can I use the Windows PowerShell 3.0 CIM classes to easily find detailed information about logical disks? Use the Get-CimInstance cmdlet to retrieve only the keys from the Win32_LogicalDisk...
on
12 Jun 2013
Blog Post:
PowerTip: Use PowerShell to Display User Rights to File Volume
The Scripting Guys
Summary : Use Windows PowerShell to display user rights to a file volume. How can I use Windows PowerShell to display access to an NTFS volume? Use the Get-Acl cmdlet and expand the Access property: Get-Acl | select -ExpandProperty access
on
11 Jun 2013
Blog Post:
PowerTip: Use PowerShell to Create Future Dates
The Scripting Guys
Summary : Use Windows PowerShell to create a date in the future. How can I easily create dates in the future? Use the Get-Date cmdlet and add days to it: (Get-Date).adddays(2)
on
10 Jun 2013
Blog Post:
PowerTip: Use PowerShell to Create a Computer Restore Point
The Scripting Guys
Summary : Learn how to use Windows PowerShell to create a computer restore point. How can I use Windows PowerShell to create a computer restore point? Use the Checkpoint-Computer cmdlet and specify a description for the restore point. Checkpoint-Computer –description “Everything...
on
9 Jun 2013
Blog Post:
PowerTip: Use PowerShell to Find Computer Restore Points
The Scripting Guys
Summary : Use Windows PowerShell to list all computer restore points on your system. How can I use Windows PowerShell to list computer restore points on my system? Use the Get-ComputerRestorePoint cmdlet: Get-ComputerRestorePoint Note This command must be run with Admin rights.
on
8 Jun 2013
Blog Post:
PowerTip: Create a New VHD with Windows PowerShell
The Scripting Guys
Summary : Use Windows PowerShell to create a new virtual hard disk to use with Hyper-V. How can I create a new virtual hard disk in Hyper-V? Use the New-VHD cmdlet. This will create a 60 GB dynamic disk VHDX file under C:\VHD\ called Mydrive.vhdx: NEW-VHD -Dynamic C:\VHD\MyDrive.vhdx -SizeBytes...
on
7 Jun 2013
Blog Post:
PowerTip: Use PowerShell to Rename a Virtual Machine
The Scripting Guys
Summary : Use Windows PowerShell to rename a virtual machine on Hyper-V. How can I easily rename a virtual machine running on Hyper-V? Use the Rename-VM cmdlet: RENAME-VM -Name "My Old VM Name" -newname "Cool New VM Name"
on
6 Jun 2013
Blog Post:
PowerTip: Use PowerShell to Add Processors to Virtual Machine
The Scripting Guys
Summary : Use Windows PowerShell to add processors to a virtual machine running on Hyper-V. How can I easily add processors to my virtual machine? Use the Set-VMProcessor cmdlet: SET-VMProcessor -VMname "My Virtual Machine" -count 2 This enables the virtual machine called "My Virtual Machine...
on
5 Jun 2013
Blog Post:
PowerTip: Use PowerShell to Add Adapter to a Virtual Machine
The Scripting Guys
Summary : Use Windows PowerShell to add a network adapter to a virtual machine. How do I add a network adapter to my virtual machine on Hyper-V? Use the ADD-VMNetworkAdapter cmdlet: ADD-VMNetworkAdapter -vmname "My Virtual Machine" -switchname "ProdVlan" Remember, you can always get a list...
on
4 Jun 2013
Blog Post:
PowerTip: Use PowerShell to Check Virtual Machine Boot Order
The Scripting Guys
Summary : Use Windows PowerShell to check the boot order on a virtual machine. How do I check the boot order on a virtual machine running on Hyper-V? Use the Get-VMBios cmdlet and check the StartupOrder property. Get-VMBios -vmname "Virtual Machine Name" | Select-object -expandproperty StartupOrder...
on
3 Jun 2013
Blog Post:
PowerTip: Determine PowerShell Version
The Scripting Guys
Summary : Easily determine the version of Windows PowerShell that is installed. How can I determine what version of Windows PowerShell is installed on my computer? Use the $psversiontable automatic variable, which is available in Windows PowerShell 2.0 and Windows PowerShell 3.0. (If nothing comes...
on
2 Jun 2013
Blog Post:
PowerTip: Use PowerShell to Find Current Time Zone
The Scripting Guys
Summary : Use Windows PowerShell to find the current time zone information. How can I use Windows PowerShell to find my current time zone? Use the System.TimeZone .Net Framework class with the static CurrentTimeZone property: PS C:\> [System.TimeZone]::CurrentTimeZone StandardName DaylightName...
on
1 Jun 2013
Blog Post:
PowerTip: Use PowerShell to List Hyper-V Switches
The Scripting Guys
Summary : Use Windows PowerShell to list all switches on a Hyper-V server. How do I get a list of all switches on my Hyper-V box? Use the Get-VMSwitch cmdlet, which will list all Hyper-V network names on a host (including their switch type, whether they be External, Internal, or Private): GET...
on
31 May 2013
Blog Post:
PowerTip: Find Services with the Same Dependencies with PowerShell
The Scripting Guys
Summary : Use Windows PowerShell to find services that have the same dependencies. How can I use Windows PowerShell to easily find services that have the same dependencies? Use the Get-Service cmdlet with the RequiredServices parameter, and supply the name of the dependent service. (The following...
on
28 May 2013
Blog Post:
PowerTip: Identify the Network Adapter Connection Profile
The Scripting Guys
Summary : Use Windows PowerShell to identify the network adapter connection profile in Windows 8. How can I use Windows PowerShell 3.0 in Windows 8 to identify the network connection profile for my network adapter? Use the Get-NetAdapter cmdlet and pipe the results to the Get-NetConnnectionProfile...
on
27 May 2013
Blog Post:
PowerTip: Use PowerShell to Eject DVDs from Group of Virtual Machines
The Scripting Guys
Summary : Use Windows PowerShell to eject the DVDs from a group of virtual machines. How can I eject any mounted DVDs from a group of virtual machines that are running Hyper-V in Windows Server 2012? Use the Set-VMDvdDrive cmdlet and set the path to $null : $name = "Client1","Server1","Server2...
on
26 May 2013
Blog Post:
PowerTip: Use PowerShell to Find Disabled User Accounts
The Scripting Guys
Summary : Use Windows PowerShell to easily find disabled user accounts in Active Directory. How can I use Windows PowerShell to find disabled user accounts in Active Directory? Use the Search-ADAccount cmdlet from the Active Directory module: Search-ADAccount -AccountDisabled
on
25 May 2013
Blog Post:
PowerTip: Use PowerShell to Put Virtual Machine in Saved State
The Scripting Guys
Summary : Use Windows PowerShell to put a virtual machine into a saved state. How do I put a virtual machine into a saved state? Use the Save-VM cmdlet with the name of the virtual machine in Hyper-V: Save-VM 'Contoso-FPS' Or you can place all virtual machines on a Hyper-V server into saved...
on
24 May 2013
Page 1 of 13 (307 items)
1
2
3
4
5
»