Browse by Tags

All Tags » PowerShell (RSS)

Wikipedia Windows PowerShell Wiki

The Windows PowerShell WIKI on Wikipedia has been updated with new books and links. PowerShell Wiki http://en.wikipedia.org/wiki/Windows_PowerShell
Posted by dhite | with no comments
Filed under:

The Windows PowerShell Scriptomatic Download

Ed Wilson the author of the Microsoft Press books Microsoft Windows PowerShell Step By Step and Windows PowerShell Scripting Guide among others has created a PowerShell Scriptomatic HTA script like the...
Posted by dhite | with no comments
Filed under:

Microsoft PowerShell Alias Map

This Excel Spreadsheet lists all of the available PowerShell Aliases in an Excel Spreadsheet for your reference. PowerShell Alias Map Excel Spreadsheet http://www.myitforum.com/inc/arts/12264PowerShellAliasMap...
Posted by dhite | with no comments
Filed under:

Using PowerShell To Prompt For Console Credentials

When you first open the PowerShell console if you type Get-Credential the password dialog box will be displayed with a blank user name and password. However you can add either of the lines below to your...
Posted by dhite | with no comments
Filed under:

Windows PowerShell Introduction Screencast Video

Provided here is the Windows PowerShell introduction screencast video by Jeff Alexander to provide you with the basics you need to get started using PowerShell. Screencast: Windows PowerShell introduction...
Posted by dhite | with no comments
Filed under:

ScreenCast: Using Windows PowerShell With Windows Server 2008

"Windows PowerShell in my opinion is the most important tool for administrators that we have released in many years. It helps to automate the tasks that administrators are faced with every day. I’ve...
Posted by dhite | with no comments
Filed under:

PowerGUI Build 1.5.1.512 Released

PowerGUI an “extensible graphical administrative console and IDE for managing systems based on Windows PowerShell” has been released for download. PowerGUI is now available in the following...
Posted by dhite | with no comments
Filed under:

IIS 7.0 PowerShell Provider Downloads

Overview The IIS 7.0 PowerShell Provider is a PowerShell Snap-In that allows you to manage IIS7 configuration and run-time data. It gives easy access to Web-Sites, Application Pools, Web Applications,...
Posted by dhite | with no comments
Filed under:

PowerShell Wiki Resources

PowerShell Wiki Resources Here you will find a list of various PowerShell Wiki pages. Windows PowerShell (myITfourm) http://www.myitforum.com/myITWiki/WinPowerShell.ashx Windows PowerShell http://en.wikipedia...
Posted by dhite | with no comments
Filed under:

Free PowerShell PowerPad From PowerLocker

Get your free PowerPad scratch pad where you can quickly edit multi-line scripts, functions, or script-blocks. From the web site: Bring up PowerPad only where and when you need it. When your at the console...
Posted by dhite | with no comments
Filed under:

Windows PowerShell Cheat Sheet

Here you will find links to Ben Pierce’s Windows PowerShell Cheat Sheet Downloads. The downloads are available complements of the PowerShell teams page and are available in Docx, Xps and Pdf versions...
Posted by dhite | with no comments
Filed under:

PowerShell Script Editors

PowerShell Analyzer PowerShell Analyzer is a rich interactive environment for Windows PowerShell. Its goal is to be the PowerShell host of choice for IT professionals and system administrators. It has...
Posted by dhite | with no comments
Filed under:

PowerShell Class Library Namespaces

Here you will find a list of the PowerShell class library namespaces as well as brief description each. Class Library Namespaces: Microsoft.PowerShell This contains the Classes used to manage PowerShell...
Posted by dhite | with no comments
Filed under:

Windows PowerShell Graphical Help File Downloads

View the Windows PowerShell help (including cmdlet help and the About topics) in a fully-searchable, graphical format (a standard Windows .chm file). Also included in the help file is the VBScript to Windows...
Posted by dhite | with no comments
Filed under:

PowerShell Script To Retrieve A Local Machines Available Free Disk Space In GB

This PowerShell script will return the logical C disk drive available free disk space in gigabytes. PS1 Script: $DiskDrive = GWMI -CL Win32_LogicalDisk | Where { $_ . DeviceId -Eq "C:" } $DriveSpace...
Posted by dhite | with no comments
Filed under:

PowerShell Script To Retrieve the Logged On User For A Remote Machine

This PowerShell script will allow you to enter a remote machine name and will return the machine name and currently logged on user name and write the results to the active window. PS1 Script: $strComputer...
Posted by dhite | with no comments
Filed under:

PowerShell Script To Get An SMS Clients Installed Components Name And Versions

This PowerShell script will allow you top query a local or remote machine and write the resources Installed SMS components display name and version to the active window. PS1 Script: $strComputer = "LocalHost"...
Posted by dhite | with no comments
Filed under:

Retrieving PowerShell Version Information

There are several ways to get version information for the PowerShell release that you are ruining other than the Registry or the source files and their accompanying documentation. Here are two ways in...
Posted by dhite | with no comments
Filed under:

PowerShell Script To Get A Local Machines Current SMS Assigned Site Code

This PowerShell script will return a local machines currently assigned site code. PowerShell Script: $smsClient = New-Object - Com Microsoft.SMS.Client Write-Host "SMS Site Assignment: " $smsClient...
Posted by dhite | with no comments
Filed under:

PowerShell Plus Now Available Free For Non-Commercial Use

PowerShell plus is now available for free provide it is used personally for non-commercial use. The Editor itself is worth the download and the PowerShell Graphical User Interface (GUI) is packed full...
Posted by dhite | with no comments
Filed under:

PowerShell Script To Force A Local SMS 2003 Client To Rediscover It’s Site Code

This PowerShell script will force a local machine to rediscover its SMS site code. PowerShell Script: $smsClient = New-Object - Com Microsoft.SMS.Client Write-Host "SMS Site Assignment: " $smsClient...
Posted by dhite | with no comments
Filed under:

PowerShell Script To Retrieve A Local Machines SMS Client Action ID’s

This PowerShell script will allow you to get local machines SMS Client Action names and their associated ID’s. PS! Script: $SmsClient = New-Object - Com CPApplet.cpappletmgr $SmsClient .GetClientActions...
Posted by dhite | with no comments
Filed under:

PowerShell Syntax File For Notepad++

Jon Galloway has posted his PowerShell Syntax for Notepad++ for those interested. PowerShell Syntax file for Notepad++ Download http://tools.veloc-it.com/tabid/58/grm2id/20/Default.aspx NotePad++ Download...
Posted by dhite | with no comments
Filed under:

The PowerShell Copy And Paste Method

When you are surfing the internet and find a PowerShell script that you want to test or eventually save there are several ways to do so. You can copy the contents of the script and save it as a .Ps1 script...
Posted by dhite | with no comments
Filed under:

PowerShell Script To Return The Local Machines Installed Memory In Megabytes

This simple PowerShell script will return the local machines Installed memory in Megabytes. PS1 Script: $strComputer = $Host Clear $RAM = WmiObject Win32_ComputerSystem $MB = 1048576 "Installed Memory...
Posted by dhite | 1 comment(s)
Filed under:

PowerShell Script To enumerate A Specified Print Server Installed Printers

This PowerShell script will allow you to enter a print server name and will then return a list of the installed Printers for the specified print server to the PowerShell console. PS1 Script: $strComputer...
Posted by dhite | 1 comment(s)
Filed under:

PowerShell Script Example To List Files In A Specified Directory With A Specified File Extension

This simple little PowerShell script will allow you to hard code a directory folder name ($Dir variable) as well as hard code a file name extension ($Ext variable) and will write the file name(s) to the...
Posted by dhite | with no comments
Filed under:

PowerShell Scripts To Enable Or Disable A Local Machines Guest Account

Here you will find a PowerShell script that will enable a local machines Guest account as well as script to disable a local machines guest account. PowerShell Script: Enable Guest Account: $Computer =...
Posted by dhite | with no comments
Filed under:

PowerShell Script To Create New Organizational Units From A Text File

This PowerShell script which is similar to my previous post entitled PowerShell Script To Create A New Organizational Unit will allow you to create new multiple Organizational Units (OU’s) based...
Posted by dhite | with no comments
Filed under:

PowerShell Script To Create A New Organizational Unit

This PowerShell script will allow you to create a new Organizational Unit (OU) by entering a new OU name from an input box. Note: Be sure to change MyDomainName to your domain name and change Com if needed...
Posted by dhite | with no comments
Filed under:
More Posts Next page »