Sign in
|
Join PowerShell.com!
|
Help
Home
PowerTips
Ask the Experts
Forums
Webcasts
Blogs
eBookV2
Script Library
Twitter Grid
Featured Posts
Dreaming in PowerShell
Don Jones
Code MarkUp Tool
Directory
Featured Posts
Share
|
Tags
2010 Scripting Games
2011 Scripting Games
2012 Scripting Games
Active Directory
advanced
Beginner
Code
getting started
guest blogger
operating system
PowerShell
PowerShell and Active Directory
PowerShell and WMI
PowerShell Basics
PowerShell Scripts
PowerShell V2
PowerShell V3
Script
scripting
Scripting Guy!
scripting techniques
Scripting Wife
Weekend Scripter
Windows PowerShell
wmi
View more
Sort By:
Most Recent
|
Most Viewed
|
Most Commented
Unblocking Files with PowerShell v3
There are a number of new features in PowerShell v3 that while not huge like CIM or workflow are os significant help to the hard pressed administrator. One of these is the Unblock-File cmdlet. If you haven’t updated your help the online version...
Posted to
Richard Siddaway's Blog
by
Richard Siddaway's Blog
on 05-24-2012
Filed under:
File System
,
PowerShell V3
Query Local Administrators with CIM
Yesterday I posted an article on listing members of the local administrators group with PowerShell and Get-WmiObject. PowerShell 3.0 offers an additional way using the CIM cmdlets. The CIM cmdlets query the same WMI information, except instead of using...
Posted to
The Lonely Administrator
by
The Lonely Administrator
on 05-24-2012
Filed under:
Scripting
,
Powershell 3.0
,
CIM
,
Get-CIMInstance
Use a Module to Simplify Your PowerShell Profile
Summary : Microsoft Scripting Guy, Ed Wilson, teaches how to use a Windows PowerShell module to simplify your profile. Hey, Scripting Guy! I have a problem and I hope you can provide some answers. My Windows PowerShell profile is, I guess, a bit excessive...
Posted to
Hey, Scripting Guy! Blog
by
Hey, Scripting Guy! Blog : Windows PowerShell
on 05-24-2012
Filed under:
Scripting Guy!
,
Windows PowerShell
,
getting started
,
scripting techniques
WMI providers
I found a class new to me - Msft_Providers and this got me interested in WMI providers. PS> Get-CimInstance -Class Msft_Providers | select -ExpandProperty provider Msft_ProviderSubSystem SCM Event Provider WmiPerfClass That seems a bit low....
Posted to
Richard Siddaway's Blog
by
Richard Siddaway's Blog
on 05-23-2012
Filed under:
PowerShell and WMI
,
PowerShell V3
Bangalore IT Pro: Windows Server 2008 R2 Virtualization training and free certification!
As a part of our continued focus to help the IT Pro community members, we are introducing a full day training on Windows Server 2008 R2 virtualization and free certification to a few selected members. This event is scheduled on 2nd June, 2012 at the Microsoft...
Posted to
Ravikanth's Blog
by
From Ravikanth's Blog
on 05-23-2012
Filed under:
Bangalore IT Pro
,
Bangalore UG Meet
Query Local Administrators with WMI
I have a quick post today on using WMI to list members of the local administrators group. It is very simple to get the group itself with the Win32_Group class. PS S:\> get-wmiobject win32_group -filter "name='Administrators'" Caption...
Posted to
The Lonely Administrator
by
The Lonely Administrator
on 05-23-2012
Filed under:
Scripting
,
WMI
,
PowerShell
,
Administrators
PowerShell ISE Addon: Yet another ISE function explorer
Fellow PowerShell MVP Jeff Hicks posted a nice script to find all functions and filters in an ISE script and show the same in a GUI dialog. Jeff used Regex to figure out the function and filter details. This got me thinking. Why can't we do the same...
Posted to
Ravikanth's Blog
by
From Ravikanth's Blog
on 05-23-2012
Filed under:
Scripting
,
PowerShell
,
ISE Addons
,
PowerShell ISE addons
Use a Central File to Simplify Your PowerShell Profile
Summary : Microsoft Scripting Guy, Ed Wilson, shows how to use a central file to simplify configuring your Windows PowerShell profile. Hey, Scripting Guy! So can you tell me without all the chatter, what is the best way to create a single Windows PowerShell...
Posted to
Hey, Scripting Guy! Blog
by
Hey, Scripting Guy! Blog : Windows PowerShell
on 05-23-2012
Filed under:
Scripting Guy!
,
Windows PowerShell
,
getting started
,
scripting techniques
Where-object in PowerShell v3
Where-Object – aliased to where, but never, ever, ever, ever to ? – had a very simple syntax in PowerShell v2 Where-Object [-FilterScript] <scriptblock> [-InputObject <psobject>] [<CommonParameters>] It was normally used as Get-Process...
Posted to
Richard Siddaway's Blog
by
Richard Siddaway's Blog
on 05-22-2012
Filed under:
PowerShell V3
Deciding Between One or Multiple PowerShell Profiles
Summary : Microsoft Scripting Guy, Ed Wilson, discusses some of the decision points between using one or multiple Windows PowerShell profiles. Hey, Scripting Guy! OK, so I understand that there are different types of Windows PowerShell profiles (I liked...
Posted to
Hey, Scripting Guy! Blog
by
Hey, Scripting Guy! Blog : Windows PowerShell
on 05-22-2012
Filed under:
Scripting Guy!
,
Windows PowerShell
,
getting started
,
scripting techniques
UK PowerShell group–next two meetings
29 May 2012 PowerShell and Windows server 2012 – new functionality pt 2 http://msmvps.com/blogs/richardsiddaway/archive/2012/05/08/uk-powershell-group-may-2012.aspx 4 July Jonathan Medd XenDesktop and PowerShell This will be at the slightly later...
Posted to
Richard Siddaway's Blog
by
Richard Siddaway's Blog
on 05-21-2012
Filed under:
PowerShell User Group
Understanding the Six PowerShell Profiles
Summary : Microsoft Scripting Guy, Ed Wilson, discusses the six different Windows PowerShell profiles, and when to use each. Hey, Scripting Guy! Dude, I have been reading some of the posts in your most excellent blog; and first of all, I want to say I...
Posted to
Hey, Scripting Guy! Blog
by
Hey, Scripting Guy! Blog : Windows PowerShell
on 05-21-2012
Filed under:
Scripting Guy!
,
Windows PowerShell
,
getting started
,
scripting techniques
Using Invoke-WmiMethod to set the DNS servers
In the last post I showed that there was an issue with the way the SetDNSServerSearchOrder of the Win32_NetworkAdapterConfiguration class worked This would work $nic = Get-WmiObject -Class Win32_NetworkAdapterConfiguration -Filter "Index=7"...
Posted to
Richard Siddaway's Blog
by
Richard Siddaway's Blog
on 05-20-2012
Filed under:
PowerShell V2
,
PowerShell and WMI
,
Networking
,
PowerShell V3
TCP/IP Alternative Configurations: pt IV reset to static address
At some stage we may need to reset our NIC back to having a static address $index = 7 $nic = Get-WmiObject -Class Win32_NetworkAdapterConfiguration ` -Filter "Index=$index" $ipaddress = @( "10.10.54.202" ) $subnet = @( "255.255...
Posted to
Richard Siddaway's Blog
by
Richard Siddaway's Blog
on 05-20-2012
Filed under:
PowerShell and WMI
,
Networking
Weekend Scripter: Scripting Guy Reveal Their TechEd 2012 Schedule
Summary : The Scripting Guy reveals his Microsoft TechEd 2012 schedule and all the Windows PowerShell goodness thereof. Microsoft Scripting Guy, Ed Wilson, is here. Yesterday we played WhatIf with the Scripting Wife about what sessions she would choose...
Posted to
Hey, Scripting Guy! Blog
by
Hey, Scripting Guy! Blog : Windows PowerShell
on 05-20-2012
Filed under:
Scripting Guy!
,
Windows PowerShell
,
Weekend Scripter
1
2
3
4
5
Next >
...
Last »
Copyright 2011 PowerShell.com. All rights reserved.