Showing results for October 2013 - Page 13 of 13 - Scripting Blog [archived]

Oct 3, 2013
2
0

Use PowerShell to Discover Multi-Monitor Information

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about how to use Windows PowerShell to discover multi-monitor configuration information on your computer.   Hey, Scripting Guy! I am a long time reader, but a first time writer. I have been following your blog for years. You are awesome! I have become good at navigating around various WMI...

Scripting Guy!Windows PowerShellscripting techniques
Oct 2, 2013
0
0

PowerTip: Discover All Event Logs on a Server

Doctor Scripto
Doctor Scripto

Summary: Discover all of the event logs on a server by using Windows PowerShell.  How can I discover the event logs that are available on my server?  There two ways to do this. If you want the classic-type event logs, use: Get-EventLog –List If you want to see all of the event logs, including the new style logs that were introduced ...

Windows PowerShellPowerTipRichard Siddaway
Oct 2, 2013
0
0

The Admin’s First Steps: Scan Multiple Event Logs

Doctor Scripto
Doctor Scripto

Summary: Richard Siddaway talks about using Windows PowerShell to automate scanning event logs across many remote machines.  Hey, Scripting Guy! I’ve just starting using Windows PowerShell to administer my systems, and I’ve been asked to test multiple remote machines for a particular event. How can I do that? —CV  Hello ...

Windows PowerShellscripting techniquesguest blogger
Oct 1, 2013
0
0

PowerTip: Launch Cmd.exe Commands from PowerShell

Doctor Scripto
Doctor Scripto

Summary: Launch legacy applications from Windows PowerShell.  Can I execute an old batch script in Windows PowerShell?  To launch an old command or batch file from within a Windows PowerShell script, launch Cmd.exe with the /C parameter: CMD.EXE /C PAUSE Or if it’s a .bat or .cmd file, you can put it directly within the ...

Windows PowerShellPowerTipguest blogger
Oct 1, 2013
0
0

Rebuild the Pause Command with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Use a Windows PowerShell function to truly mimic legacy commands.  Hey, Scripting Guy! What happened to “pause” in Windows PowerShell? Am I simply not recognizing it? —KL  Hello KL, Honorary Scripting Guy, Sean Kearney, here. I’m again filling in for our good friend, Ed. He stepped away from his keyboard ...

Windows PowerShellguest bloggerWeekend Scripter