Robert 的个人资料Opsmgr 2007 Blog DK照片日志列表 工具 帮助

日志


1月24日

PowerGUI

Think that Powershell is to nerdish???
 
Try PowerGUI
 
This rocks to bad..
 
Try it out i'ts a great GUI
 

Free Powershell+

Courtesy of Stefan Stranger:

Source: Developer Team Blog: I already blogged about PowerShell+ But now PowerShell+ is free for non-commercial use effective now, and it will continue to be free, no ties attached. Just grab your copy at http://www.powershell.com/downloads/psp1.zip and join the fun!

Powershell script that can schedule itself to run later

From time to time I find it useful to schedule tasks to run on my machine. I often realize that many people are unaware that windows 2003 has a built in task scheduler; and even more of a rarity for them to be aware it can be managed via the command line. 

Enter SCHTASKS http://support.microsoft.com/kb/814596/

In the past I would crate a batch file to create the schedules; just to make it easy and repeatable. Having the setup separate from the batch file that does the work always bugged me.

The other day I when I found the need to have a task run every five minutes, I did it in powershell.  I thought to myself hey this is powershell, we’ve got some more power here; what if this script could schedule it’s self? And that’s how this idea was born.

When run without parameters it executes normaly.
Specify the -schedule switch to have it schedule itself.
For details on schtasks options see: http://support.microsoft.com/kb/814596/

Selfscheduling.ps1:

param ([switch] $schedule)

if ($schedule) {
$taskname = $myinvocation.mycommand.definition -replace '\W','_'
schtasks /create  /sc MINUTE /MO 5 /tn "$taskname" /tr "powershell -c $($myinvocation.mycommand.definition)"
return;
}

#switch to directory where the script lives
pushd (split-path -parent $myinvocation.mycommand.definition)

#insert useful code here
write-host "Hello World"

popd

 

Great piece by mwilbur

10月17日

New version op MPViewer

Boris Yanushpolsky 
Member of System Center Operations team at Microsoft has made a new version of MPViewer . This tool helps you see all whats in a management pack: Rules, Monitors, Views, Tasks, Console Tasks, and Reports. Download this tool here....
10月16日

Alarmhåndtering og Notifikations-løsninger

 
 
nms   alarmhåndterings-løsning,
 
NMS Extensions, kan indsamle alarmer fra praktisk talt enhver kilde. Den integrerer med Netværks Management Systemer som: IBM Director®, Microsoft Operations Manager(s)®, CA Unicenter®, HP OpenView®, SolarWinds Orion®, WatchUpGold®, NetIQ® og IpMonitor®, og for dette har vi modtaget meget anerkendelse på markedet.
 
Super add-on til Opsmgr og SCE
 
hent evt. en trial på http://www.nmsview.com/
11月25日

MP Studio 2.1 fra silect.com

products_bar    MP Studio.
 
 
Dette værktøj er cremen af hvad det skal til for at administrere management packs. Funktionerne er nærmest utallige og dette er et MUST værktøj der let vil tjene sig hjem. Tag et kik her. http://www.silect.com/.
Hvis du er hurtig kan du på silect side nå at tilmelde dig til et gratis webcast
 
 
Robert