Discussion on:

124
Comments

Join the conversation!

Follow via:
RSS
Email Alert
44 Votes
+ -
Top Rated
+4 more
0vidiu 21st May 2012 Top Rated
ipconfig [ /all ] -- 2nd or 3rd place
telnet x.x.x.x [port] to check and open port
ipconfig /renew - place 5th - 6th
nslookup
4 Votes
+ -
Don't forget ipconfig /release for when it won't let go.. and I'm surprised the netstat, nslookup, and particularly the netsh commands didn't get a mention here.
I prefer Dig, although in the Windows world, nslookup is the only DNS lookup service available. Why Dig hasn't been ported to Windows I'll never know; it's much more useful.
0 Votes
+ -
Dig on Windows
wdewey@... 21st May 2012
Dig has been ported to windows, but since it isn't a stock app nslookup still gets used a lot.

Bill
Don't forget the unix/linux/MacOS/*nix equivalent: ifconfig -a
qwinsta /server:

Lists sessions on a server.

rwinsta /server:

Resets that session knocking the user off of the server.
11 Votes
+ -
grep
kashyap.bikram@... 21st May 2012
Most valuable
3 Votes
+ -
%windir%\system32\taskkill.exe /F /FI "status eq not responding"
2 Votes
+ -
+2
aboshooq@... 21st May 2012
I think these 2 command should be included [ ls ] it very common to use, also cd,
0 Votes
+ -
some comments are confusing commands with program or utility names
0 Votes
+ -
...note the smiley face in the Subject.

I will take a moment to mention that Command Prompt has stayed in the top half of my Windows 7 frequently accessed programs for about a month now... not sure if that's a feeble attempt at geek braggery or what.
2 Votes
+ -
Try the following:

man man

Then try:
man woman
0 Votes
+ -
the second is...
rufwork Updated - 21st May 2012
nsfw.
I tried finding "man bear pig" but it isn't working?
Really liking the comments - great stuff and cmdlet finds that should be an article all to itself.
Seems she don't like with the hands xD
0 Votes
+ -
and copy con
1 Vote
+ -
nslookup
richardwebsterza 21st May 2012
I use nslookup every day, even with tools like dig etc... nslookup is what I was brought up on happy
3 Votes
+ -
tail
tom.burke@... 21st May 2012
tail -n[some number] filename, e.g. 'tail -n300 catalina.out'

Invaluable when trying to work out what's happening when daemon is starting up. Or not.
1 Vote
+ -
I'm all for for.
dakra137 21st May 2012
Whether using DOS, Windows, or linux, whether from a command line or in a bat/cmd/sh file, the "for" command is like the conductor of the soloist, getting the soloist to perform a wide variety of variations on a theme.
0 Votes
+ -
On a Solaris system "killall" kills all running processes. Be warned!
0 Votes
+ -
once. Kill -9 is also useful, but quite dangerous
7 Votes
+ -
a few more
dan.stalker@... 21st May 2012
cacls for setting file/share perms
w32tm for checking/setting time parameters
shutdown /r for rebooting yours or another system when windows is "uncooperative"
netdom for resetting windows communications secret passwords
nbtstat for checking cached info
dsadd,dsget,dsmod,dsquery for AD management tasks
dnscmd for updating dns
rpcping for tesing rpc connections
ntdcutil for managing fsmo roles, among other things
2 Votes
+ -
netstat
jopoysolano 21st May 2012
netstat
4 Votes
+ -
XCOPY
Rembrandt1 21st May 2012
with all those parameters - big TICK. I haven't found a backup tool - an' I've tried a fair few in 30 years in IT - that comes anywhere near the simplicity and flexibility of xcopy.
5 Votes
+ -
Have you tried to use Robocopy? IMHO it puts xcopy to shame. Way more parameters, plus logging and the fact that is only copies changed files by default when running the same job more than once - like running a backup. happy
0 Votes
+ -
Also SyncToy
davidhbrown 21st May 2012
In addition to robocopy, take a look at SyncToy for the command-line-impaired.
using ">" or ">>" so that you can save and review the output later
e.g dir >> c:\temp\listing.txt
ok that was a trivial example.
or piping into more
dir | more
2 Votes
+ -
Group policy updater in windows land.
0 Votes
+ -
+ftp
admin@... 21st May 2012
Windows Ftp when you are at a (customer) PC and need to upload / download a file
1 Vote
+ -
It's occasionally happened to me that an application has managed to generate a file name which Windows can't handle, so that Windows Explorer won't delete the file either individually or as part of a group selection because ti can't "see" it. When that happens the best solution seems to be to move all the other files out of the affected directory and then go to the command prompt and do a del *.* on that directory.
Not to worry, your readers caught them.
2 Votes
+ -
ssh
Odipides 21st May 2012
How can anyone do without an ssh command line when managing remote boxes?

Also, whilst there are a load of GUI front-ends for git, they always stuff up and I end up back at the command line (although 'smartgit' isn't bad)
0 Votes
+ -
Putty
wdewey@... 21st May 2012
The windows command line sucks for SSH compared to putty.

Bill
I would add the "grep" "tail" command as the most popular! "ls -l" and there are many more who we can't forget and even windows user still run cmd line or powershell as it become more popular for windows sys admins.
and everything in its time and place. It's a tool. It shouldn't be the first one out of the box, but it can be used effectively with restraint.
0 Votes
+ -
my 2p
dford@... 21st May 2012
I'd add tail and less
2 Votes
+ -
shutdown -r/-s (-m computername) happy
0 Votes
+ -
no sudo for you!
rufwork 21st May 2012
sudo?
rm -rf?

Careful using in tandem though.

man? Who uses man? ;^)
0 Votes
+ -
Are you saying that you never need directions, or that you know it all already?

happy
Cheers!
0 Votes
+ -
how else are you supposed to use the switches on a seldom used tool? Do a man on vi or vim someday. The information is daunting but informative.
0 Votes
+ -
ipconfig
CaveTalker 21st May 2012
Ipconfig in general is number two behind ping. Troubleshooting 101, ping it, if it isn???t ping-able verify the issue isn???t you be for continuing.
0 Votes
+ -
I was surprised to not see grep on this list. happy
1 Vote
+ -
Nbtstat -A followed by IP address shows information of that machine
4 Votes
+ -
You don't need 'find' just because you lost a file. This command is most useful when you want to locate all common files (like *.jpg) and automatically run other useful commands (like chmod, grep, etc) on them. And don't forget being able to 'pipe' at the command line.
0 Votes
+ -
The | pipe
Jack 21st May 2012
Far and away the most poweful command line tool, because it feed the text output of one command into the input of another.

Works on Windows or Unix.
0 Votes
+ -
The pipe should redirect all output from one command/program into another. At least it does on *nix systems.

tar [switches to compress all files/folder/recursive] | tar [switches to uncompress it all in a new location. File tree duplicated in new location without the intermediate step of creating a tar.gz in-between.
0 Votes
+ -
grep
cbecker@... 21st May 2012
Has to be in the lineup somewhere!
1 Vote
+ -
dir
cd c:\
dir > lpt1
1 Vote
+ -
For data
aratinga 21st May 2012
I just downloaded grep and sed from GnuWin32. I hadn't used any Unix for years, never mind how many. But I needed some quick access to some ugly XML, and there it was!

I am reviewing their library for other handy commands.

Yes, I have also used the various network commands suggested.
1 Vote
+ -
netstat
mcramage 21st May 2012
netstat
There has been a large push from Microsoft lately to move away from the GUI and back to the command line. Server 2008 Server Core is a good example of that. So is Powershell.
5 Votes
+ -
linux must-haves
McScotty 21st May 2012
grep/egrep
sed
screen -- if you don't know screen, and you do important long-running things at the command line, look it up. You really really want to know screen. Oracle DBA's especially.
0 Votes
+ -
check out tmux
bn-7bc 22nd May 2012
I just recently got in to screen, but ten i discovered tmux, and without buting my finger on any specific thing, it just seems better, but as I'm not a veteran user of any of them I recommend you to check out both and see what works best for you. I've seen goute a few comparison that concluded tmux was better some even call tmux a screen killer
0 Votes
+ -
one more:
aaron@... 21st May 2012
netstat, more specifcally netstat -a in Windows
0 Votes
+ -
I might have missed it
Dknopp Updated - 21st May 2012
But i did not see anyone put down the ps command in all of its diff flavors. Also the ls command is good for unix/linux and for powershell.
Also, in the performance world I live in, the commands Iostat, Sar, Netstat, and Vmstat can't be beat for the first round of checking a system out.
1 Vote
+ -
sed and grep
RobAchmann 21st May 2012
You just can't find a more powerful search tool than sed and grep with regular expressions.
0 Votes
+ -
grep rules
snideley59@... 21st May 2012
sed you have to be a little more careful with. Best way I know to make a mistake globally. Ooops
0 Votes
+ -
top
joels 21st May 2012
I run the "top" command every day on my linux servers to search for any processes hung for an extended time.
Perhaps you should start using Cat5e or even 6 cables; its 2012
1 Vote
+ -
gpresult
SoylentGreen 21st May 2012
gpresult /r
gpupdate /force
wuauclt /detectnow
-2 Votes
+ -
Haven't needed any of those
janitorman Updated - 21st May 2012
I'm a "tweaker," not a power user, but I've never had any use for any of those ten commands, whether I'm on Linux or Windows, and I've been using Windows since '98, and Linux for just a few years.
Seriously, other than a network administrator who would use some of those when there are more readily available tools?
-1 Votes
+ -
Some of the suggestions -- ls and cd in particular -- do have good GUI equivalents. Seems silly to think of them as the best reasons to enter a shell.
0 Votes
+ -
GUI hung
wdewey@... 21st May 2012
Sometimes when the GUI is unresponsive I can still get a command prompt open and be able to do commands. For me where the command line becomes the most useful is with automation. Most GUI tools really don't have a way to automate tasks, but the command line does. Some tasks are faster to complete on the command line. Getting the IP address of the computer is a six or seven step process using the GUI. WIth commands it's about three (Win Key + r; cmd; ipconfig /all)
0 Votes
+ -
Reasons...
tech@... 21st May 2012
Hi Janitorman, I've seen many times when the command line "overrules" the gui. I use "net use" a lot when a connection maybe open, but not visible in the gui and I can think of many other specifics such as faulty dns gui listings and more. I guess someone who uses command lines (either nix or win) really get a feel of how much more granular and precise it can be. People often wonder why someone would drop to the command line to accomplish something, but there are very specific explanations why it is needed each time. Many GUIs do not reveal what is actually happening behind the scenes and I think too many people trust the gui too much - but that's my 2 cents. You are very correct that network admins use this method a lot and it is difficult to learn so much "syntax" hence the need for a gui to begin with.
0 Votes
+ -
Anyone performing remote support. It is MUCH faster than GUI equivelents.
Anyone who does a repetative task over multiple machines. Scripts!
Creating an automated process. i.e. Silent windows install.
This old DOS guy.
0 Votes
+ -
Sudo & ipconfig... btw how abt "make"?

PS: loved that "should be slapped with cat5"
To me is an irreplaceable tool. Sure it is among the firt ten.
Best regards.

Hector Pasi
cannot live without any of those network related commands! That's my bread and butter!
0 Votes
+ -
Some other
jpcordone 21st May 2012
grep for Unix / Max and findstr for Windows to filter contents
top / tail
Telnet should go right after ping and trace route to check connectivity
ping and trace route will never die, since they are implementations of ICMP protocol and it is required for any TCP/IP implementation
0 Votes
+ -
ICMP
wdewey@... 21st May 2012
ICMP isn't required for any TCP/IP implementation. It makes life easier, but you can do almost everything with TCP that ICMP provides.

Bill
0 Votes
+ -
It is trivial to chain commands together with pipes and redirection on the command line. While there may be a few esoteric exceptions, in general you cannot do this with GUI tools. This is why the command line will never die. I can do things with a few dozen typed characters that would take an impractical amount of time and effort to figure out how to do with GUI tools.
1 Vote
+ -
As much as it can be easier to use a gui, command line tools are great for repetitive tasks.If you have to do something every day, or multiple times each day, and/or on multiple servers, script it once, and use forever. The script can also be set up as a job with whatever scheduler you have, and can be run by someone other than you (i.e when you are not around).

Scripting command line tools also reduces human error. For example, a database administrator is often asked to restore a backup of a production database on to a test server. So it is can happen maybe a couple of timse a year or so, that a production database gets overlaid by mistake. Having an on-demand job set up prevents that from happening.
2 Votes
+ -
vi
joe.stout@... 21st May 2012
Writting scripts in vi on UNIX machines is what separates the true geeks from the rest of the herd. : )
0 Votes
+ -
findstr I use this constantly as a quick filter to almost any command being run. finding this command turned some of my batch scripts into valuable tools. I have found that virtually no one knows this command and it is a bit sad. Combined with pstools and a for / f large scale management becomes just a bit easier.

net view | findstr -i web will find all servers using wins or net bios with the 'web' as part of the name.

type log.txt|findstr -i -c:"My string"

here is my favorite use:
##put all hosts that contain the name web in hosts.txt file
net view | findstr -i web>>hosts.txt
##starts a new cmd prompt restarting IIS on each host simultaneously
for /f %I (hosts.txt) do start iisreset %I
.
-2 Votes
+ -
Not only Linux
Cicuta2011 21st May 2012
Question: Do all platforms support TCP/IP? YES!!! There you have more than 20 commands which are irreplaceable. The article should not focus just on Linux but across all UNIX platforms. I can think of at least 50 commands which the SysAdmin really needs on each different platform. What about Windows...well, Windows is not for Enterprise applications really; Windows is OK for desktop applications and checking email at home so forget about Windows. What about the Man pages...the best there is and no GUI can handle that.
NSLOOKUP for checking DNS.
0 Votes
+ -
I think this al depends on the user. If you are a sys admin the use of the command line is much easier and faster.

ls
mv
cp
truss
{f,e,}grep
sed
vi
netstat
vmstat

etc etc etc
3 Votes
+ -
traceroute
denbo68 21st May 2012
"...The only disadvantage of Traceroute is that you must have a working network connection to use it."

That is sort of like saying the only disadvantage of chkdsk is that you need a disk
0 Votes
+ -
Another
Atreyu167 21st May 2012
chroot is one of my favorite commands
Are you kidding? A great deal of the GUI programs for monitoring machine functions are just a graphical display of the command line output.

What about top? How do you know what to kill?

Only people stuck in strick Microsoft mode don't need to know much about the command line. Well I use ping, ipconfig and then some commands from the start menu to call GUIs for like regedit with Microsoft. Used command line when DOS was big and now with Unix and Linux. Perfer to use command line to compile C++. That way there is no weird between you and what is going on. There is no question in my mind as a programmer, DBA, network tech and hardware tech (you can use a Linux live CD to boot with and get a full descrition of a systems hardware from the command line, very helpful in chasing down drivers) and web master that if you don't know the command line, you don't really know all that much about how a computer oprerates. If you really want to know computers, get away from Microsoft, you only learn Microsoft with Microsoft products and get a book or two on command line scripting and learn Unix, BSD and or Linux. You will find that bash schell scriting can interact with MySQL, your environmental variables. read data dump files from any database to spot bad data before you try to upload them to a table and more. Good stuff.
0 Votes
+ -
diskpart
rickmor 21st May 2012
One of my favorites is diskpart followed by clean disk, it has helped me out on numerous occasions When Windows XP can't see a disk that was previously formatted as UDF. Don't automatically assume that a disk is dead just because the Windows XP disk management utility won't see it. Try diskpart first.
0 Votes
+ -
re: diskpart
beep54 21st May 2012
While foolishly trying to set up windows 8 on another HDD, I found my USB stick to become unusable. Turned out that somehow the process had rendered it RAW, making it invisible to most of Windows. Diskpart (and I think disklist) was a (really convoluted) method of fixing that.
0 Votes
+ -
Dos Reboot
Barmace 21st May 2012
I have had times where I have a Server or PC locked up and I have to reboot it but for some reason I can not RDP to it

Shutdown /m \\'SERVERNAME' /r /f /t 0

saved my bacon quite a few times
0 Votes
+ -
How often trying to clean a virus out of a Windows machine.
GUI message "that service is running" You know and can see the virus. Windows won't allow a running file to be deleted. Anti virus says it must reboot to remove it, but you can see it reload before the anti virus, Catch 22. Command line use a manual delete problem solved.
Has helped me out countless times.
0 Votes
+ -
sfc
beep54 21st May 2012
Does anyone other than me use sfc in Windows. Seems to work in conjunction with chkdsk, although I've often found than when sfc actually does find a problem, it cannot necessarily fix it. I think it then needs a copy of the OS complete with the latest Service Packs on say a DVD and who actually has that?
1 Vote
+ -
Love these articles - with LogMeIn Free and the Shutdown /r /f command, I have been able to update and install needed security items on my wife's laptop remotely, while she is traveling on business. But I remain a non-tech total novice. Is there a pdf manual that lists all of these, at least for Win XP Pro SP3, with instructions and samples? And maybe even explains what the hell they do? Thanks !!
0 Votes
+ -
Although some aren't MS system commands, there are some of the old DOS or DOS add-on utility commands which still work and fill an occasional need. SWEEP was one, although I haven't tried it in W7 yet. FC to compare a couple files. ATTR to play with file attributes that Windows doesn't let you manage. Using the 'pipe' symbol to pipe the output of one command into another on the same command line. And the combination of CD and DIR to let you see files and directories that Windows translates into something it thinks you want to see (check your recycle bin some time).
0 Votes
+ -
Set proc/priv=BYPASS
1 Vote
+ -
I have a suite of batch files that I use PSEXEC with so I can do a whole bunch of things to remote PC's quickly and easily. From remotely enabling RDP access to installing apps silently, PSEXEC allows me to do stuff that I would otherwise need to talk user through.

And since when is "cmd" a command line tool? It *IS* the command line!
0 Votes
+ -
+1
Greg Mix 29th May
This is basically ssh for Windows. I have been using it every day for about 10 years. For installs, I typically provide a UNC path to the target and have it run a script. Also, I often use it just to shell into a machine.
One is enough: the shell.
0 Votes
+ -
xcopy
yvonne_lau@... 21st May 2012
As an application dev/support team, I find xcopy most valuable in the cases where the same configuration file needed to be copied to multiple similar locations. Using GUI will means transversing the folders many, many times. It is far easier to issue to a single command.
0 Votes
+ -
a lot of overlap
Htalk 21st May 2012
Why list out windows and unix commands that do the same/related things as different items? You're using up your top ten too quickly instead of writing: "Killall (or TaskKill for Windows)" or "Chown (also Chgrp, Chmod)".

If you grouped them, then you'd have room for more...
- ssh
- dig
- tail
- more
- pico
0 Votes
+ -
ChkDsk isn't the "best" tool to check and repair NTFS, it's the only one. It's a loose cannon; either safe but unreliable (prone to false positive errors) when run read-only without the /F, or uncontrollable if run with /F (no pre-action prompts, no undo). But there's nil else available for NTFS, or FAT32 that spans the 137G line.

As to /R, that IMO should not be used at all. If you suspect the surface of the disk is failing, you should do a quick (SMART details) check, back up, and then do a surface check that does not get bogged down trying to "fix" anything, as ChkDsk /R will do. I use HD Tune for both the SMART details and surface scan; the latter tests the whole physical drive, not just the area within particular partitions or volumes.

There's a step before HD Tune, if you find file system corruption, and that is to check the RAM. If the RAM is bad, it's unsafe to run anything on that system; the hard drive should be backed up and tested from within another known-good PC (but not booted there!).
0 Votes
+ -
find
lou.vaiano@... 22nd May 2012
# list directories starting with 'abc' from current location
find . -name "abc*" -type d

# Find all text files containing "abc" searching from current location
find . -name "*.txt" -exec grep -in "abc" {} \; -print

# Remove all text files searching from current location
find . -name "*.txt" -type f -exec rm {} \;


# Find all files older than 60 days old and delete them (you may want to test this on your specific flavour of *nix).
find . -name "*" -type f -mtime +60 -exec rm {} \;
0 Votes
+ -
tail & grep
oz penguin 22nd May 2012
tail and grep are two of my favourites
especially when used together
0 Votes
+ -
A few more
Per4mer001 22nd May 2012
Netstat

top

ffmpeg for videophiles
0 Votes
+ -
awk, updatedb in a cron, ipconfig /flushdns, gpupdate /f, also chkdsk sometimes will revive flash and external drive that appear to have lost all data. top, ps aux, ls -la
0 Votes
+ -
Some are Windows, some Unix/Linux. Why mix them up. Not everyone is a Win/Unix/Linus/Mac user. This would've been easier to sift thru if they'd been put in OS groups.
0 Votes
+ -
"Some people think the command line is an outdated mode of usage and administration. "
Yeah, they're called IGNORANTS! - including pseudo "IT staff" that runs MS Windows, OMG! >:-D
I Love this command : Ping 0.0.0.0,
ipconfig,
sc query ex
taskkill
2 Votes
+ -
Moderator
I like them all
GSG 24th May
I like them because what you can do at the cmd line, is something you can write a .bat file to do for you, and you can schedule it.

In unix, my favorite has to be "cp". If it wasn't for that little command, I'd have been manually recreating a bunch of complex things through a GUI that does not support copying.
With the popularity of shell based programming languages such as Ruby and PowerShell growing, the command-line is even more popular today than even the old System V days.This is due to the accessibility of the modern shell compared to the shell of yesteryear. The personal computer was born because the need to customize a system to do what you need when you want it. There will always be the need for commands as written language is more powerful and allows a end user to more creative than a simple GUI. In the future the most popular and desired features will be in the GUI, but power knowledge workers that want customization and efficiency will be using the command-line on a regular basis.
How many times we use CD command to change directories??
@0vidiu you have to add NETSTAT to your list wink

Commands are the kernel of any system.
Just as aside...I used to have to teach most of my new staff members how to use a computer (yes, I am that old). One of them got the impression that I had invented CD, since that also happens to be my initials. I guess I did not say Change Directory loud enough!
This command tools are everywhere, and available at almost all time. My favorite is "sc", starting and stopping a process in a remote machine is really cool.

NI
When I need to make lists of files in directories and subdirectories, this is the command I use. I import the resulting file into Excel, do a little manipulation, and I have my list.
0 Votes
+ -
It seems that was so challenging that apps were designed to do that from the GUI.
0 Votes
+ -
at command
mtorres7 25th May
Valuable schedulling command!
at 21:00 /every:M,T,W,Th,F,S,Su shutdown -s -f -t 10
0 Votes
+ -
I would have to add the ROUTE command to the list. At least for my current position, it has most definately helped
It's the most powerful and easiest way to locally and remotely manage sistems for skilled professionals. GUIs are for beginners.

The shell is the past-present-future for ITs.
0 Votes
+ -
md
vquangchung 26th May
md \\?\drive_letter:\folder_name.extension... to make a secured folder. To access it, simple press Windows+R -> type \\?\drive_letter:\folder_name.extension...\ -> enter. To remove it, use rd \\?\drive_letter:\folder_name.extension...
sfc /scannow
The system file checker in Windows has saved me a thousand times, yet it is not in most textbooks (I'm a tech, but I also teach this stuff). This tool examines all of the system files to be sure they are present and in the correct version. It uses a combo of installation files from the DVD and the list of installed updates to accomplish this task.
Most of the greatest Linux commands are already on the list!
I tell my students I want a bumper sticker that says "I love my CLI!" Command line tools and scripting make life sooo much easier.
GREP when combined with any command makes all commands more useful.

If you combine GREP with AWK and KILL! You morph into a GOD, no really it's true.
0 Votes
+ -
It is Wonderful and helpful information and boost any business. Thanks for sharing this information friend.

vendor audits
Being worked on linux for more than a decade, I prefer to use command prompt on my windows box too. I think windows cmd is also powerful enough for managing administrative tasks..I usually refer this site http://www.windows-commandline.com for anything related to command line.
0 Votes
+ -
Me everyday use "ping" and "killall" wink
0 Votes
+ -
most commands that I use and i think they should include:
1- nslookup
2- netsh
3- grep
4- adsquery
Windows commands I use alot:

NBLOOKUP (kb830578) - for those still with WINS.
NBTSTAT
IPCONFIG
NSLOOKUP
NETSTAT
PING
TRACERT
CD
MD
RD
DEL
ECHO
REM
@
CALL
:text - labels for scrpts
EXIT
GOTO
IF
TYPE
FOR - in all its iterations - "looping" plus
SET - review advanced SET usage - arithmatic, substrings, substitution
SETX
FINDSTR - Regular expresions, grep capabilities
DFSUTIL
NLTEST - If you have DFS....
DSQUERY
DSGET
DSMOD
DSMOVE
DSADD
DSRM
XCACLS
ICACLS
PROMPT
SCHTASKS
SC - such a powerful command for service control
SLEEP
SUBST
CMD /C - use it to prefix any external command in a script to prevent the script from ending unexpectedly. ie cmd /c myutil.exe
START - good way to spin off separate items in a script
CHOICE
NTRIGHTS
NOW - great for flagging log files
POWERCFG
NETSH
NETDOM (errorlevls 2224, 2691 are collision errors)
FTYPE
ASSOC
W32TIME
REG - King of registry management REG /?
NET - Extremely powerful see all its capabilities NET /?
MKLINK
FILEACL
ATTRIB
MSIEXEC
ROBOCOPY - extremely powerful copy with logging!
0 Votes
+ -
Comman-Line Tools
sh10453 Updated - 10th Aug
A very good topic, but it is a terrible idea to mix Windows commands and other operating system(s) commands in the topic.
There are plenty of very important Windows command-lines that can fill out this topic of 10, with plenty more to spare.
I hope the next re-write of this topic would be "20 Essential Windows Command-Line Tools for IT Professionals".
Thanks.
0 Votes
+ -
xcopy
lunascii 15th Oct
what about xcopy for backup? In scripts I use this daily for my most important files
Keyboard Shortcuts:
Prev
Next
Toggle
Join the conversation
Formatting +
BB Codes - Note: HTML is not supported in forums
  • [b] Bold [/b]
  • [i] Italic [/i]
  • [u] Underline [/u]
  • [s] Strikethrough [/s]
  • [q] "Quote" [/q]
  • [ol][*] 1. Ordered List [/ol]
  • [ul][*] · Unordered List [/ul]
  • [pre] Preformat [/pre]
  • [quote] "Blockquote" [/quote]

Join the TechRepublic Community and join the conversation! Signing-up is free and quick, Do it now, we want to hear your opinion.