Showing results for April 2013 - Page 2 of 10 - Scripting Blog [archived]

Apr 28, 2013
0
0

Weekend Scripter: Use PowerShell to Upload a New File Version to SharePoint

Doctor Scripto
Doctor Scripto

Summary: Microsoft PowerShell MVP, Niklas Goude, talks about using Windows PowerShell to upload a new version of a file to SharePoint. Microsoft Scripting Guy, Ed Wilson, is here. Today Niklas Goude is our guest blogger. You can read more from Niklas in his past Hey, Scripting Guy! Blog posts. Take it away Niklas… In a previous post, Use Pow...

Scripting Guy!Windows PowerShellguest blogger
Apr 27, 2013
0
0

PowerTip: Add Two PowerShell Arrays Together

Doctor Scripto
Doctor Scripto

Summary: Easily add two Windows PowerShell arrays together.  If I have an array stored in one variable, and another array stored in another variable, how can I add them together?  Use the + operator to add to arrays together: PS C:\> $a = 2,3,4 PS C:\> $b = 5,6,7 PS C:\> $c = $a + $b PS C:\> $c 2 3 4 5 6 7 PS C:\>...

Scripting Guy!Windows PowerShellPowerTip
Apr 27, 2013
0
0

Weekend Scripter: Improve Performance When Combining PowerShell Arrays

Doctor Scripto
Doctor Scripto

Summary: Microsoft premier field engineer, Chris Wu, talks about combining Windows PowerShell arrays. Microsoft Scripting Guy, Ed Wilson, is here. Chris Wu, a Microsoft PFE, is back to share his knowledge. See previous Hey, Scripting Guy! Blog guest posts from Chris. Here is contact information for Chris: Twitter: https://twitter.com/chwu_ms Facebo...

Scripting Guy!Windows PowerShellscripting techniques
Apr 26, 2013
0
0

PowerTip: Use PowerShell to Display the Desktop

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to change the display to the Desktop.  How can I use Windows PowerShell to switch to displaying the Desktop on my computer?  Use the ToggleDesktop method from the Shell.Application COM object: (New-Object -ComObject shell.application).toggleDesktop()

Scripting Guy!Windows PowerShellPowerTip
Apr 26, 2013
0
0

Use PowerShell to Work with Windows Explorer

Doctor Scripto
Doctor Scripto

Summary: Microsoft PFE, Chris Wu, talks about using Windows PowerShell to work with the Windows Desktop through the Windows Explorer interface. Microsoft Scripting Guy, Ed Wilson, is here. Today I have the privilege of welcoming back Chris Wu. Chris is a Microsoft premier field engineer (PFE) in Canada. If you are interested, see his other Hey...

Scripting Guy!Windows PowerShelldesktop management