Custom Menu Items

If you have information, script, utility, or idea that can be useful for HostMonitor community, you welcome to share information in this forum.
Post Reply
HakanH
Posts: 19
Joined: Tue Feb 06, 2007 3:47 am

Custom Menu Items

Post by HakanH »

Here are some of my favorite Custom Menu Items:

Code: Select all

Menu item:	Remote Desktop 1280x800
Command line:	mstsc.exe /v:%hostaddrb% /w:1280 /h:800

Code: Select all

Menu item:	Putty -ssh host
Command line:	putty -ssh %hostaddrb%

Code: Select all

Menu item:	Start Service
Command line:	sc.exe \\%hostaddrb% start "%ServiceName%"

Code: Select all

Menu item:	Stop Service
Command line:	sc.exe \\%hostaddrb% stop "%ServiceName%"

Code: Select all

Menu item:	Ping host
Command line:	cmd /c ping %HostAddrB% && pause

Code: Select all

Menu item:	Tracert host
Command line:	cmd /c tracert %hostaddrb% && pause

Code: Select all

Menu item:	File Explorer \\host\c$
Command line:	Explorer.exe \\%HostAddrB%\c$

Code: Select all

Menu item:	Net view \\host /all
Command line:	cmd /c net view \\%HostAddrB% /all && pause

Code: Select all

Menu item:	Nmap -v A host
Command line:	nmap -v A %hostaddrb% && pause
Do you guys have any useful Custom Menu Items?
Post Reply