Showing results for June 2009 - Page 2 of 2 - PowerShell Team

Jun 11, 2009
0
0

Windows Event Log in PowerShell – Part II

PowerShell Team
PowerShell Team

In part 1 of “Event logs in Powershell” we talked about differences between Get-EventLog and Get-WinEvent. In this second part we will dig deeper into Get-WinEvent.   Starting in Windows Vista, the Windows Event Log was updated to provide a more powerful event model which allows for events to be easily categorized into logs and for event...

Event LogGet-WinEvent
Jun 9, 2009
0
0

2009 Summer Scripting Games

PowerShell Team
PowerShell Team

  Scripting Games start on June 15th and the excitement is building up. Details about the events in the game are emerging. Beginner and Advanced 100 meter Dash Beginner and Advanced Long jump Scripts can be submitted/viewed at http://scriptinggames.poshcode.org/ . There is a TechNet Forum in case you have a question or want...

Scripting Games
Jun 5, 2009
0
0

Scripting Games 2009 – More details

PowerShell Team
PowerShell Team

Scripting Guys have posted more details about the 2009 scripting games, read it here.  Stay tuned to their blog and Twitter for updates Thanks Osama Sajid

ScriptCenterSummer Scripting Games
Jun 4, 2009
0
0

Managing Remote Sessions

PowerShell Team
PowerShell Team

  PowerShell V2 introduces a new capability which allows you to remotely manage machines in your organization. You may have already tried this new feature. In this blog, I will show how an administrator can manage different remote sessions (created by different users from different clients) Scenario: Using PowerShell remoting, normal users can...

Remoting
Jun 3, 2009
0
0

Peering into script modules

PowerShell Team
PowerShell Team

Sometimes it’s handy to access internal elements of script modules. For instance you may be using a 3rd party module in your application and would like to see the internal state for debugging purposes. This can be accomplished with the invoke operator (&) which allows you to access a modules session state: & $module {script block} Th...

PowerShellModules
Jun 2, 2009
0
0

Getting Started with AppLocker management using Powershell

PowerShell Team
PowerShell Team

Have you tried out the new AppLocker feature in Windows 7? If not, check it out here and here. Also check out the AppLocker references during TechEd here along with a related video here. AppLocker allows you to specify applications that can or cannot run on the machines in your network. AppLocker’s management tools are optimized towards creating...