Posts Tagged 'cmd'

Remote Command-Line

Keep Reading ...

This is one way to access remote computer via command-line.

Download Remote Command-Line
Read the “Read Me” for instructions.

**** Another option for remote command-line access is to use psexec for sysinternals.

If your in IT you know coffee is almost as important as the air we breath. Show your support and add to the coffee fund. SHOW YOUR [...]

Place cmd in context menu via vbscipt

Keep Reading ...

This script place’s a “cmd prompt here” in the explorers context menu. This is a most for any one that uses the command often.
‘**************************************************************************
‘ File: CmdPromptExplorerMenu.vbs
‘**************************************************************************
Dim WSHShell
Set WSHShell = WScript.CreateObject(“WScript.Shell”)
WSHShell.RegWrite “HKCR\Folder\Shell\MenuText\Command\”, “cmd.exe /k cd ” & chr(34) & “%1″ & chr(34)
WSHShell.RegWrite “HKCR\Folder\Shell\MenuText\”, “Cmd Prompt Here”
If your in IT you know coffee is almost as important [...]