Showing archive results for June 2015

Jun 10, 2015
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Add Content to File Stream

Doctor Scripto

Summary: Use Windows PowerShell to add content to the file system stream of a file.  How can I use Windows PowerShell to add data to an alternate NTFS file system stream of a file?  Use the Add-Content cmdlet and specify the name of the stream for the Stream parameter,            then spec...

Scripting Guy!Windows PowerShellPowerTip
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

PowerTip: Convert to Decimals and Display Unicode Characters

Doctor Scripto

Summary: Use Windows PowerShell to convert hexadecimal values to decimal and display Unicode characters.  I found a cool Unicode table on the Internet, but all of the values are displayed as hexadecimal values.            How can I use Windows PowerShell to translate them to integers and display the Unicode charac...

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