Showing results for Boe Prox - Scripting Blog [archived]

Aug 12, 2015
0
0

Use PoshUSNJournal Module to Work with Change Journal

Doctor Scripto
Doctor Scripto

Summary: Boe Prox shows how to use the PoshUSNJournal module to work with the USN change journal. Honorary Scripting Guy and Windows PowerShell MVP, Boe Prox, here today, filling in for my good friend, the Scripting Guy. I'm finishing up my three-day stint on the Hey, Scripting Guy! Blog. Be sure to catch up by reading: Today, I will demo ...

Scripting Guy!Windows PowerShellBoe Prox
Aug 11, 2015
0
0

PowerTip: Determine if PowerShell is Running x86 or x64

Doctor Scripto
Doctor Scripto

Summary: Boe Prox shows how to determine if Windows PowerShell is running x86 or x64.  How can I use Windows PowerShell to determine if I am running x86 or x64?  Use [intptr]::Size as follows: Switch ([intptr]::Size) {     4 {"x86"}     8 {"x64"}     &nbs...

Scripting Guy!Windows PowerShellPowerTip
Aug 11, 2015
0
0

View Entries in USN Change Journal

Doctor Scripto
Doctor Scripto

Summary: Boe Prox shows us how to view the entries in the USN change journal. Honorary Scripting Guy and Windows PowerShell MVP, Boe Prox, here today, filling in for my good friend, the Scripting Guy. Today I'm continuing on from yesterday’s post, Connect to USN Change Journal. In today’s post, I'll look at the actual entries ...

Scripting Guy!Windows PowerShellBoe Prox
Aug 10, 2015
0
0

PowerTip: Use PowerShell to List Exported Types

Doctor Scripto
Doctor Scripto

Summary: Boe Prox shows how to use Windows PowerShell to list exported types.  How can I use Windows PowerShell to list all of the exported types?  Use this command:  [appdomain]::CurrentDomain.GetAssemblies()|ForEach {     Try {         $_.GetExportedTypes()     } Catc...

Scripting Guy!Windows PowerShellPowerTip
Aug 10, 2015
0
0

Connect to USN Change Journal

Doctor Scripto
Doctor Scripto

Summary: Honorary Scripting Guy, Boe Prox, shows us how to connect to the USN change journal by using Windows PowerShell. Honorary Scripting Guy and Windows PowerShell MVP, Boe Prox, here today, filling in for my good friend, the Scripting Guy. Over the course of the next few days, I am going to be talking about a topic that many of you might not h...

Scripting Guy!Windows PowerShellBoe Prox