PowerShell
Tag details
Welcome to the 'PowerShell' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'PowerShell'.
Look up
"PowerShell"
at The Free Dictionary
Latest blogosphere posts tagged “PowerShell”
-
WMICookbook: Read Routing Table
MSMVPS.COM —
Authority: 658
When we need to troubleshoot networking problems we will sometimes need to read the routing table on a machine. The routing table contains the information on the routes known to the network interfaces. This can be created automatically or manually . On the local machine we can use the route command to find this ...13 hours ago -
WMICookbook: Read Routing Table
Richard Siddaway's Blog —
Authority: 423
When we need to troubleshoot networking problems we will sometimes need to read the routing table on a machine. The routing table contains the information on the routes known to the network interfaces. This can be created automatically or manually . On the local machine we can use the route command to find this ...13 hours ago -
VMware has released vSphere PowerCLI 4.0 U1
NTPRO.NL —
Authority: 423
VMware vSphere PowerCLI 4.0 Update 1 has been tested against the beta release of vSphere 4.1. To find the related issues, see Known Issues, Compatibility with VMware vSphere 4.1 Beta. Whats New in This Release? This release of vSphere PowerCLI 4.0 Update 1 introduces the following new capabilities: •Managing the ...1 day ago -
Excel 2010 beta
MSMVPS.COM —
Authority: 658
The beta still allows those of us that aren’t in the USA to use the simple method of creating a new spreadsheet using PowerShell. 001 002 003 $xl = New-Object -comobject "excel.application" ...1 day ago -
Excel 2010 beta
Richard Siddaway's Blog —
Authority: 423
The beta still allows those of us that aren’t in the USA to use the simple method of creating a new spreadsheet using PowerShell. 001 002 003 $xl = New-Object -comobject "excel.application" $xl . visible = $true $xlbooks = $xl . workbooks . Add ...1 day ago -
PowerShell v2 cmdlets
MSMVPS.COM —
Authority: 658
Jonathan has started a series of posts at http://www.jonathanmedd.net/ on all of the new cmdlets in PowerShell v2. If you are just starting with v2, or want more information on whats new, this is a good place to start. Technorati Tags: PowerShell v2 , cmdlets1 day ago -
PowerShell v2 cmdlets
Richard Siddaway's Blog —
Authority: 423
Jonathan has started a series of posts at http://www.jonathanmedd.net/ on all of the new cmdlets in PowerShell v2. If you are just starting with v2, or want more information on whats new, this is a good place to start. Technorati Tags: PowerShell v2 , cmdlets1 day ago -
How to Use a Specific Domain Controller in the Exchange 2007 Management Shell
Exchange Server Pro —
Authority: 107
I read this recent post at Jim McBee’s Mostly Exchange blog about how to specify a domain controller when issuing Exchange Management Shell commands. After battling the Blogger comments system for a few minutes I gave up and decided to write this blog post instead. Jim notes that the shell will generally choose ...1 day ago -
Is IIS 7 Console Based on PowerShell?
Dmitry's PowerBlog: PowerShell and beyond —
Authority: 485
Now it is. However, this is not the native management console coming with IIS, but a free PowerPack which Adam Murray posted here . Not only you can see (and modify) the PowerShell code behind everything the tool is doing, you will enjoy just using the console and all the great features it has, including for ...2 days ago -
PrimalForms 2009: New Packager STA Mode
SAPIEN Technologies —
Authority: 413
Last month’s service build included a new addition to PrimalForms 2009’s packager: STA Mode (Single Thread Apartment), which allows you to perform operations that may have previously failed, such as accessing Window’s Clipboard. Some of you may have attempted to use the Clipboard in your forms only to encounter ...2 days ago -
PowerShell – WMI presentation tonight
Under The Stairs —
Authority: 117
he things I agree to do… A good MVP buddy of mine has asked me to speak tonight to his PowerShell user group. The title of the talk is WMI and PowerShell. I’m aiming at the basics but will go into a bit of detail. Plus there’s demos. If you want to join into the live meeting, here’s the url: ...2 days ago -
Get a Single Development Experience for On Premises, Cloud
US ISV Developer Evangelism Team —
Authority: 523
Microsoft’s new Windows Server AppFabric gives you new tools to develop, manage and deploy composite applications, both on premises and in the cloud. Composite applications reuse existing services and business logic to provide new and innovative functionality for end users. You can get started today with the ...2 days ago -
Reminders via WPF
MSMVPS.COM —
Authority: 658
If I am working on my home machine I don’t necessarily have Outlook or any other application that gives me calendaring capability open. There are times when I need a simple reminder to do something. For some reason I always seem to have PowerShell open so I thought of using the eventing system to give me a ...2 days ago -
Reminders
Richard Siddaway's Blog —
Authority: 423
If I am working on my home machine I don’t necessarily have Outlook or any other application that gives me calendaring capability open. There are times when I need a simple reminder to do something. For some reason I always seem to have PowerShell open so I thought of using the eventing system to give me a ...2 days ago -
Сравнения списка объектов SQL Server в Powershell на примере сравнения логинов на двух серверах
MSMVPS.COM —
Authority: 658
В данном примере я покажу как с помощью Powershell можно сравнивать списки объектов на двух серверах на примере сравнения логинов: поиск одинаковых, поиск разницы. Для этого ...2 days ago -
Сравнения списка объектов SQL Server в PowerShell на примере сравнения логинов на двух серверах
MSMVPS.COM —
Authority: 658
В данном примере я покажу как с помощью PowerShell можно сравнивать списки объектов на двух серверах на примере сравнения логинов: поиск одинаковых, поиск разницы. Для этого ...2 days ago -
The Operations Manager Support Team Blog : Putting a Group of Computers into Maintenance Mode via Powershell
Rod Trent at myITforum.com —
Authority: 140
Have you ever found yourself in need of putting a group of systems into Maintenance Mode in System Center Operations Manager 2007 R2? If so you can use the script below. Note that in SCOM 2007 R2 there is no need to put the health service and health service watcher into Maintenance Mode separately, we just ...3 days ago -
WMI CookBook: WMI Presentation
MSMVPS.COM —
Authority: 658
As with other PowerShell objects there is a default format for the display of WMI objetcs. If we look at the NetworkAdapter class PS> Get-WmiObject -Class Win32_NetworkAdapter -Filter "DeviceId=11" ServiceName : athr MACAddress : 00:00:00:00:00:00 AdapterType : ...3 days ago -
WMI CookBook: WMI Presentation
Richard Siddaway's Blog —
Authority: 423
As with other PowerShell objects there is a default format for the display of WMI objetcs. If we look at the NetworkAdapter class PS> Get-WmiObject -Class Win32_NetworkAdapter -Filter "DeviceId=11" ServiceName : athr MACAddress : 00:00:00:00:00:00 AdapterType : Ethernet 802.3 ...3 days ago -
WMI CookBook: Associators Pt I
Richard Siddaway's Blog —
Authority: 423
WMI is a wonderful thing and like many people I have a love-hate relationship with it. It is incredibly powerful, and can take you deep into the system, but it is not easy to find your way. I have decided to spend some time digging into WMI and will document the findings in a (long) series of blog posts. I also ...4 days ago

