
great addon for ISE. you have access to thousand of scripts and can do analyze of your script.
polish version – http://www.microsoft.com/pl-PL/download/details.aspx?id=42525
i found very good, short desription how to detect cause of high CPU by DPC: http://www.msfn.org/board/topic/140263-how-to-get-the-cause-of-high-cpu-usage-by-dpc-interrupt/
and two interesting tools:
– LatencyMon
– DPCLatency
how to check server feature configuration using powershell: http://blogs.technet.com/b/stefan_stranger/archive/2011/01/27/checking-server-roles-when-installing-opsmgr-2010-ctp2-with-powershell.aspx
i.e.:
get-windowsfeature WDS*
I created cmdlet to find service and tasks on remote/local computer. I uploaded it to Technet Gallery. Look here: http://gallery.technet.microsoft.com/Find-tasks-and-53d1a77b
The WordPress.com stats helper monkeys prepared a 2013 annual report for this blog.
Here’s an excerpt:
A San Francisco cable car holds 60 people. This blog was viewed about 3,100 times in 2013. If it were a cable car, it would take about 52 trips to carry that many people.
i found an easy way to test remote connection to mssql – answer UDL file: http://blogs.msdn.com/b/steverac/archive/2010/12/14/test-remote-sql-connectivity-easily.aspx
good info about new things and changes in AD W2012 r2: http://blogs.technet.com/b/kevinremde/archive/2013/10/30/what-s-new-for-active-directory-in-server-2012-r2.aspx
If i learn some topic by myself i got some empty spaces in knowledge. In powershell (in other langs too) i had always problem with remembering quotes diff and sub expression. Now i have got great book „Powershell in action” Bruce Payette (https://twitter.com/BrucePayette) and done some refresh and learning.
quotes – single and double
…In double-quoted strings, to embed the closing quote character you have to either quote it with the backtick character or double it up. In other words, two adjacent quotes become a single literal quote in the string.
…PowerShell supports variable substitutions. These variable substitutions or expansions are only done in double-quoted strings (which is why these are sometimes called expandable strings)…
…In single-quoted strings, doubling up the quote is the only way to embed a literal quote in the string. This is one area where an important difference exists between single- and double-quoted strings: in single-quoted strings, the backtick isn’t special. This means that it can’t be used for embedding special characters such as newlines or escaping quotes…
subexpression
…The expression in the $( … ) sequence in the string is replaced by the result of evaluating the expression…
http://www.amazon.com/Windows-PowerShell-Action-Second-Edition/dp/1935182137?tag=s601000020-20