Summary: Learn how to use Windows PowerShell to create a system restore point.
How can I use Windows PowerShell to create a system restore point for my computer?
Open the Windows PowerShell console with Admin rights in Windows 8 or Windows 7 (use Windows PowerShell 3.0 or Windows PowerShell 2.0). Use CheckPoint-Computer ...
Summary: Guest blogger, Mike Robbins, talks about using Windows PowerShell to manage Dell AppAssure.
Microsoft Scripting Guy, Ed Wilson, is here. Guest blogger, Mike Robbins, returns today to share his experience. You can also read previous blogs by Mike.
Mike Robbins is a senior systems engineer with almost 20 years of professional ...
Summary: Learn how to use Windows PowerShell to find the calling assembly.
How can I find the name of a calling assembly from within Windows PowerShell?
Use the GetCallingAssembly static method from the [system.Reflection.Assembly] class:
[system.reflection.assembly]::GetCallingAssembly...
Summary: Learn how to execute C# programs from source without a compiled binary by using Windows PowerShell.
Microsoft Scripting Guy, Ed Wilson, is here. Today guest blogger, Ingo Karstein, is back with us to share his knowledge. You can also read previous guest blogs by Ingo. Take it away Ingo…
Some time ago, I created a script called ...
Summary: Learn how to use Windows PowerShell to find non-inherited access rights to a folder.
How can I find non-inherited access rights to a folder by using Windows PowerShell?
Use the Get-Item cmdlet to select the folder, and pipe it to the Get-ACL cmdlet. Choose the Access property, and filter the ...