Showing results for February 2015 - Scripting Blog [archived]

Feb 28, 2015
0
0

PowerTip: Use PowerShell to Decrypt Files

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to decrypt files.  How can I use Windows PowerShell to decrypt a file that it previously encrypted?  Use the Decrypt static method from System.IO.File .NET Framework class, for example: [io.file]::Decrypt("C:\fso\FileWithOutExtension")

Scripting Guy!Windows PowerShellPowerTip
Feb 28, 2015
0
0

PowerShell Spotlight: Windows PowerShell User Groups

Doctor Scripto
Doctor Scripto

Summary: Windows PowerShell MVP, Teresa Wilson, talks about Windows PowerShell user groups in this edition of PowerShell Spotlight. Microsoft Scripting Guy, Ed Wilson, is here. Today is the last Saturday of the month, and that means it is PowerShell Spotlight time. Here is our guest blogger for the day, Teresa Wilson, with information about user gr...

Scripting Guy!Windows PowerShellguest blogger
Feb 27, 2015
0
0

PowerTip: Fix Network Connection Profile with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to fix the network connection profile on your laptop running Windows 8.1.  How can I use Windows PowerShell to fix the connection profile for my home network on my laptop            running Windows 8.1?  Use the Get-NetAdapter cmdlet to verify the interface index, and...

Scripting Guy!Windows PowerShellPowerTip
Feb 27, 2015
0
0

Get Process Owner and Other Info with WMI and PowerShell

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about using Windows PowerShell and WMI to retrieve process owner and other information. Microsoft Scripting Guy, Ed Wilson, is here. We were supposed to receive seven inches of snow the other day. They closed schools and businesses, and the roads were swamped with people rushing to various stores i...

Scripting Guy!Windows PowerShellscripting techniques
Feb 26, 2015
0
0

PowerTip: Compare Processes with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Learn how to compare two processes with Windows PowerShell.  How can I use Windows PowerShell to find the differences between two instances of the same process            running on my system?  Use the Compare-Object cmdlet and specify specific properties to examine, such as cpu, ...

Scripting Guy!Windows PowerShellPowerTip