Showing results for March 2015 - Page 7 of 12 - Scripting Blog [archived]

Mar 16, 2015
0
0

PowerTip: Use PowerShell to Find Network Adapters

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to find network adapters associated with running virtual machines.  How can I use Windows PowerShell to see the network adapters that are associated with all running            virtual machines on my Windows 8.1 laptop that runs Hyper-V?  Use the Get-VM cmdlet to look...

Scripting Guy!Windows PowerShellPowerTip
Mar 16, 2015
0
0

Updating Virtual Machines

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about the problem of updating virtual machines. Microsoft Scripting Guy, Ed Wilson, is here. This afternoon I am sipping a nice cup of red berry tea. I also have a bowl of grapes and a bit of brie. The berry tea, grapes, and brie are a nice combination, and light enough that it makes a nice afterno...

Scripting Guy!Windows PowerShellHyper-V
Mar 14, 2015
0
0

PowerTip: Display the Value of Pi by Using PowerShell

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to easily display the value of pi.  How can I use Windows PowerShell to obtain the value for pi?  Use the Pi static property from the System.Math class: [math]::pi

Scripting Guy!Windows PowerShellPowerTip
Mar 14, 2015
0
0

Weekend Scripter: Approximate the Value of Pi from a Polygon

Doctor Scripto
Doctor Scripto

Summary: Microsoft senior software engineer, Firaz Samet, shows how to use Windows PowerShell to approximate the value of pi from a polygon. Microsoft Scripting Guy, Ed Wilson, is here. Today we have a guest blog post from Firaz Samet in honor of Pi (π) Day. I will turn the blog over… The Scripting Guy ran across my PowerShell Math Module...

Scripting Guy!Windows PowerShellscripting techniques
Mar 13, 2015
0
0

PowerTip: Find Day of the Week with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Find the day of the week by using Windows PowerShell.  How can I use Windows PowerShell to find what day of the week a particular date falls on?  Access the DayOfWeek property from the DateTime object: (get-date).dayofweek

Scripting Guy!Windows PowerShellscripting techniques