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, ...
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...
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 ...
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...
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&...