Showing tag results for getting started

Jun 12, 2015
Post comments count0
Post likes count0

Five Best PowerShell Cmdlets

Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, talks about the five best Windows PowerShell cmdlets. Microsoft Scripting Guy, Ed Wilson, is here. OK, I will admit that this post is completely arbitrary. What do I mean when I talk about the five best Windows PowerShell cmdlets (commands)? Well, I am thinking about the cmdlets I use on a daily basis an...

Scripting Guy!Windows PowerShellgetting started
Jun 10, 2015
Post comments count0
Post likes count0

Help: It Says Run a PowerShell Script

Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, talks about running a Windows PowerShell script. Microsoft Scripting Guy, Ed Wilson, is here. Ninety two degrees Fahrenheit and sunny—that is what the weather is supposed to be this Saturday in Jacksonville when Teresa and I will be speaking at the Jacksonville IT Pro Camp. I can’t think of a...

Scripting Guy!Windows PowerShellscripting techniques
Jun 9, 2015
Post comments count0
Post likes count0

Help! It Says PowerShell…Now What?

Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, talks about how to run a Windows PowerShell command.  Hey, Scripting Guy! Help! I am reading through TechNet, and I found this command that seems like it will solve my problem, but I do not know how to do it. It says something about Windows PowerShell, but I do not know what that is, or how to run t...

Scripting Guy!Windows PowerShellgetting started
Jun 8, 2015
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Add Content to File

Doctor Scripto

Summary: Learn how to use Windows PowerShell to add content to a file.  How can I use Windows PowerShell to add content to a file?  Use the Add-Content cmdlet, and specify the path to the file and the value of the content, for example: Add-Content C:\fso\AnEmptyFile.txt -Value "This is content"

Scripting Guy!Windows PowerShellPowerTip