Showing archive results for July 2013

Jul 14, 2013
Post comments count0
Post likes count0

Weekend Scripter: Use PowerShell to Get Boot-Up Trace Events

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about using Windows PowerShell to get boot-up trace events. Microsoft Scripting Guy, Ed Wilson, is here. This morning I am sipping the last of my English Breakfast tea with a little lemon grass and a crushed cinnamon stick. Not sure how I ran out of English Breakfast tea, but I did. Oh well. I stil...

Scripting Guy!Windows PowerShellWeekend Scripter
Jul 13, 2013
Post comments count0
Post likes count0

PowerTip: Get a List of Installed Troubleshooters

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to get a list of installed troubleshooters.  How can I get a list of installed troubleshooters on my system by using Windows PowerShell?  Use the Get-ChildItem cmdlet and look for directories in the c:\windows\diagnostics\system folder. Get-ChildItem -Directory  C:\Windows\diagnostics\...

Scripting Guy!Windows PowerShellPowerTip
Jul 13, 2013
Post comments count0
Post likes count0

Weekend Scripter: Use PowerShell to Get Startup Event Log Entries

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about using Windows PowerShell to query event logs for entries created during startup. Microsoft Scripting Guy, Ed Wilson, is here. One of the things that annoys me is when something changes on my laptop, and I know that I did not do anything to directly cause the change. Obviously, I did something...

Scripting Guy!Windows PowerShellWeekend Scripter
Jul 12, 2013
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Round a Decimal Number

Doctor Scripto
Doctor Scripto

Summary: Use the [decimal] Windows PowerShell type accelerator to round decimal numbers.  How can I use Windows PowerShell to easily round a decimal number an integer?  Use the Round method from the [decimal] type accelerator: PS C:\> [decimal]::round(10.555) 11 PS C:\> [decimal]::round(10.444) 10

Scripting Guy!Windows PowerShellPowerTip
Jul 12, 2013
Post comments count0
Post likes count0

Using the Windows API and Copy-RawItem to Access Sensitive Password Files

Doctor Scripto
Doctor Scripto

Summary: Guest blogger, Chris Campbell, shows how to use the Windows API and Copy-RawItem to access sensitive password files. Microsoft Scripting Guy, Ed Wilson, is here. Today we have a guest blog by Chris Campbell. Chris is a security researcher and penetration tester who has spoken at several major security conferences, such as BlackHat and Derb...

Scripting Guy!Windows PowerShellguest blogger