Show all posts.
These days I was playing around with powershell - and it proved itself quite useful. I already have several backup scripts, defragment & anti-virus check script on my server. So on top of all this coolness :) this is very cool indeed as well:
| XML |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<html>
<body>
<table>
<tr><td>ID</td></tr>
<% get-process | foreach { %>
<tr>
<td><%=$_.ID%></td>
<td><%=$_.ProcessName%></td>
</tr>
<% } %>
</table>
</body>
</html>
|
Take a look at this link: http://blogs.msdn.com/powershell/archive/2008/07/18/powershell-asp-too-cool.aspx
|