START .
That will bring up the Explorer "one-pane, simple view" but as a power user, you will surely want the
Two-Pane Explorer that shows the directory tree on the left. What I've done to make that happen was write a batch file like so:
REM - EX.bat
REM -- displays Windows Explorer in two-pane mode on current directory
EXPLORER /e,.
I put that batch file in the C:\Windows directory so it's on the command search path and now I can go back and forth with ease.
start report.txt
I'm sure you know that already. Sorry.
start c:\myproj\UltraTool
and you can bring up a web page with:
start http://google.com
or
start SomeSite.url
The latter option relates to what happens when you drag an icon from the Internet Explorer Address Bar or drag any hyperlink from any page and drop it onto the desktop (or other directory). It shows as a shortcut, but it is actually a file with an extension of
.URL -- even though Windows will not show that extension in the Explorer.
net start MyService
Where
MyService is the text displayed in the "Name" column of the Service Manager. About the only tidbit I have to add is that if the service name contains an embedded space, you need to wrap it in quotes:
net stop Messenger
net start "Remote Registry"
=-=-=-=-=-=-=-=-=-=-=-=-=-
Have a question about something in this article? You can receive help directly from the article author. Sign up for a free trial to get started.
Comments (0)