Showing results for March 2013 - Scripting Blog [archived]

Mar 31, 2013
0
0

PowerTip: Use PowerShell to Create System Restore Point

Doctor Scripto
Doctor Scripto

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 and su...

Scripting Guy!Windows PowerShellPowerTip
Mar 31, 2013
0
0

Weekend Scripter: Managing Dell AppAssure with Windows PowerShell

Doctor Scripto
Doctor Scripto

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 experience as ...

Scripting Guy!Windows PowerShellscripting techniques
Mar 30, 2013
0
0

PowerTip: Use PowerShell to Find Calling Assembly

Doctor Scripto
Doctor Scripto

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()

Scripting Guy!Windows PowerShellPowerTip
Mar 30, 2013
0
0

Weekend Scripter: Run C# Code from Within PowerShell

Doctor Scripto
Doctor Scripto

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 PS2EX...

Scripting Guy!Windows PowerShellguest blogger
Mar 29, 2013
0
0

PowerTip: Use PowerShell to Find Non-Inherited Access to a Folder

Doctor Scripto
Doctor Scripto

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 result...

Scripting Guy!Windows PowerShellPowerTip