Was telling my mum that #PowerShell can simplify repetitive tasks and she asked "Like washing the dishes?" so I checked and no, it can't...yet pic.twitter.com/2PgbpJ8gVL
#Hiring Digital #BusinessAnalyst in #London Skills: Software distribution & OS deployment, device endpoint management & patching, Scripting – #VBS, batch & #Powershell, #ActiveDirectory, #Softwareintegration & compatibility #testing #Safeboot /EPO, VPN Cisco client configuration. pic.twitter.com/nxCKB2wP0w
The #PowerShell Conference Asia delegation here at #PSConfEU. After a great event here in Hanover we are looking forward to #PSConfAsia in October! #MVPbuzz Call for papers is still open: forms.office.com/Pages/Respon… pic.twitter.com/KrDapf7dqC
My #PowerShell projects are available on github ift.tt/2fgsnJg
@mikefrobbins @theJasonHelmick - I am using a copy of your #PowerShell book - where can I find the lab solutions? Am I overlooking them in the book? pic.twitter.com/JzFFVtsWRS
In the next Current Branch release of Windows Server a new feature will be released to provide support for SQL Server as the database platform to support Windows Pull Server for DSC. #PowerShell #DSC #configurationmanagement #SQL lnkd.in/d4ntx_g lnkd.in/dhu4zXV
Video: Moving Parameter Validation in #PowerShell to Private Functions youtu.be/__F17QvdXXc
Using #PowerShell to start multiple #cucumber tests from the Visual Studio Online build process. goo.gl/Lj7deM
From my Blog Archives: #Windows 10 in-place upgrade with #PowerShell and #MDT rviv.ly/UD63G
@JM2K69 #AES Password Manager is available JM2K69.github.io/2018-04-20-C… #Mahapps #PowerShell #Mahapps #WPF
Thanks to @gaelcolas we can now also decorate or laptops with the #PowerShell sign! #PSConfEU pic.twitter.com/Rl5MFfM3Ry
"Downloading Information from Internet (Part 5) community.idera.com/powershel… #powershell"
Ask @danielhbohannon to take a photo and he manages to find a way to photo bomb 💣 himself into it... #PowerShell #MVPBuzz #PSConfEU pic.twitter.com/QIbkHobfH8
Get-ADComputer -Filter * -Properties lastlogondate | sort lastlogondate Will show the latest logon activity for all computer accounts in active directory using #powershell
#Reading RT @PowerTip Downloading Information from Internet (Part 6) with #PowerShell bit.ly/2HDLNnM Handy for working with XML
@JeffWouters satisfying his #OCD with #PowerShell at #PSConfEU, and mine too!! pic.twitter.com/fcw5syhdKY
New Blog Post: #PowerShell script to fetch remote #SMTP servers connecting to #MSFTExchange bit.ly/RemoteSMTP #LegacyExchange
Downloading Information from Internet (Part 5) community.idera.com/powershel… #powershell
why does instrument software export csv data files that are such a pain to read by a programming language? #r and #PowerShell are constantly groaning about importing these files
Hi @concentrateddon Do you know how to add WSSE headers when using New-WebServiceProxy cmdlet for accessing a SOAP web service? Thanks. #PowerShell
. @chri_tea is sourcing a great list of #powershell user group here at #psconfeu If you want your group adding drop him a line
RT @PowerTip: Downloading Information from Internet (Part 5) community.idera.com/powershel… #powershell
Having got stuck in a recursion loop at #PSconfEU does anyone know anything about a Birmingham uk #powershell Usergroup?
#psconfeu jakob blasting psconfeu balloons all controlled by #powershell pic.twitter.com/yzKDCi8i87
Worth a read - Project #Honolulu and #PowerShell HTTPS WSMAN – The EmptyGarden ow.ly/N7rX30juP8Q
The latest Poweradmin Daily Tech News! paper.li/walle75?editio… Thanks to @josephbreynolds @KOMGuy @bittin #powershell #microsoft
If you attended the @ServerGuyUK & @edbaker1965 #PowerShell session @Spiceworks #AllAccessIT event @edgbaston yesterday here is the link to the slide deck 1drv.ms/f/s!AgwmjwooM-… thanks for coming have you bought the book yet? pic.twitter.com/NB1a2izg2o
From the Blog Archive - #Powershell : How to Import Exchange Cmdlets to your Machine from a Server wp.me/p9z8SQ-59
Downloading Information from Internet (Part 5) community.idera.com/powershel… #powershell
Jeffrey Snover, PowerShell Architect and Mastermind
DarkOperator
Jason Benway
Scott Kearney
Ben Wilkinson
Nicholas Ferguson
Scott Kearny
Ryan Yates
Thomas Strömberg
Florian Zoller
Stefan Stranger
Guido Oliveira
Adam Bertram
Michael Noe
Andrew Johnson
Chris Rogers
Bartek Bielawski, Microsoft PowerShell MVP
Bartek Bielawski (PowerShell MVP)
David O'Brien
Narayanan Lakshmanan, Microsoft PowerShell Team
Juerg Steiger
Jimmy Madrid
Matt McNabb
Rudolf Vesely
Jaded Treebeard
jadedtreebeard
Matt Graeber
Jeff Wouters, Microsoft PowerShell MVP
Stephen Owen
Manuel Henke
Trevor Sullivan, Microsoft PowerShell MVP
Andrew Johnson
Laerte Junior, Microsoft PowerShell MVP
Lee Holmes, Microsoft PowerShell Team
Kevin Bhunut
Daniel Sörlöv
James Bannan
Chris Wahl
Jason Morgan
Iain Brighton
Reinhard Teischl
Adrian Rodriguez
Jeffrey Snover, PowerShell Architect and Mastermind
Jeffrey Snover, PowerShell Architect and Mastermind
Thomas Rayner
Stein Peterson
jadedtreebeard
Amit Katwa
Stefan Stranger
Simon Wahlin
Mike Martin
Matt McNabb
Mike Martin, Microsoft Azure MVP
# install it from the PowerShell Gallery – needs to be done only once: Install-Module -Name ISESteroids -Scope CurrentUser -Force # launch ISESteroids (do this from inside the ISE editor, not the console!) Start-Steroids |
Add-Type 'using System; using System.Management.Automation; public class FixedVariableNow : PSVariable { public FixedVariableNow() : base("Now", 0, ScopedItemOptions.ReadOnly | ScopedItemOptions.AllScope) {} public override object Value { get { return DateTime.Now; } } }' $ExecutionContext.SessionState.PSVariable.Set((new-object FixedVariableNow)) |
PS C:\Users\tobwe> $Now Wednesday, September 21, 2016 2:08:48 PM PS C:\Users\tobwe> $Now Wednesday, September 21, 2016 2:14:07 PM PS C:\Users\tobwe> $now Wednesday, September 21, 2016 2:14:11 PM PS C:\Users\tobwe> |