Console | Run Command |
AD Domains and Trusts | domain.msc |
Active Directory Management | admgmt.msc |
AD Sites and Services | dssite.msc |
AD Users and Computers | dsa.msc |
ADSI Edit | adsiedit.msc |
Authorization manager | azman.msc |
Certification Authority Management | certsrv.msc |
Certificate Templates | certtmpl.msc |
Cluster Administrator | cluadmin.exe |
Computer Management | compmgmt.msc |
Component Services | comexp.msc |
Configure Your Server | cys.exe |
Device Manager | devmgmt.msc |
DHCP Management | dhcpmgmt.msc |
Disk Defragmenter | dfrg.msc |
Disk Manager | diskmgmt.msc |
Distributed File System | dfsgui.msc |
DNS Management | dnsmgmt.msc |
Event Viewer | eventvwr.msc |
Indexing Service Management | ciadv.msc |
IP Address Manage | ipaddrmgmt.msc |
Licensing Manager | llsmgr.exe |
Local Certificates Management | certmgr.msc |
Local Group Policy Editor | gpedit.msc |
Local Security Settings Manager | secpol.msc |
Local Users and Groups Manager | lusrmgr.msc |
Network Load balancing | nlbmgr.exe |
Performance Monitor | perfmon.msc |
PKI Viewer | pkiview.msc |
Public Key Management | pkmgmt.msc |
QoS Control Management | acssnap.msc |
Remote Desktops | tsmmc.msc |
Remote Storage Administration | rsadmin.msc |
Removable Storage | ntmsmgr.msc |
Removable Storage Operator Requests | ntmsoprq.msc |
Routing and Remote Access Manager | rrasmgmt.msc |
Resultant Set of Policy | rsop.msc |
Schema management | schmmgmt.msc |
Services Management | services.msc |
Shared Folders | fsmgmt.msc |
SID Security Migration | sidwalk.msc |
Telephony Management | tapimgmt.msc |
Terminal Server Configuration | tscc.msc |
Terminal Server Licensing | licmgr.exe |
Terminal Server Manager | tsadmin.exe |
UDDI Services Management | uddi.msc |
Windows Management Instrumentation | wmimgmt.msc |
WINS Server manager | winsmgmt.msc |
Saturday, June 27, 2015
Run Command Shortcuts for Administrative Tools
Thursday, June 25, 2015
Cluster commands and equivalent Windows PowerShell cmdlets
In the following table, each cluster command is mapped to the Windows PowerShell equivalent.
Command | PowerShell command equivalent |
---|---|
cluster /prop
|
Get-Cluster | fl *
For more information, see: Get-Cluster (http://go.microsoft.com/fwlink/?LinkId=143782) |
cluster /create
|
New-Cluster
For more information, see: New-Cluster (http://go.microsoft.com/fwlink/?LinkId=143803) |
cluster /destroy
|
Remove-Cluster
For more information, see: Remove-Cluster (http://go.microsoft.com/fwlink/?LinkId=143804) |
cluster /add
|
Add-ClusterNode
For more information, see: Add-ClusterNode (http://go.microsoft.com/fwlink/?LinkId=143771) |
cluster /shutdown
|
Stop-Cluster
For more information, see: Stop-Cluster (http://go.microsoft.com/fwlink/?LinkId=143824) |
cluster /rename
|
(Get-Cluster).Name = "newname"
For more information, see: Get-Cluster (http://go.microsoft.com/fwlink/?LinkId=143782) |
cluster /quorum
|
Get-ClusterQuorum
Set-ClusterQuorum
For more information, see:
|
Back to top
In the following table, each cluster node command is mapped to the Windows PowerShell equivalent.
In the following table, each cluster node command is mapped to the Windows PowerShell equivalent.
Command | PowerShell command equivalent |
---|---|
cluster node /status
|
Get-ClusterNode
For more information, see: Get-ClusterNode (http://go.microsoft.com/fwlink/?LinkId=143789) |
cluster node /prop
|
Get-ClusterNode | fl *
For more information, see: Get-ClusterNode (http://go.microsoft.com/fwlink/?LinkId=143789) |
cluster node /pause
|
Suspend-ClusterNode
For more information, see: Suspend-ClusterNode (http://go.microsoft.com/fwlink/?LinkId=143828) |
cluster node /resume
|
Resume-ClusterNode
For more information, see: Resume-ClusterNode (http://go.microsoft.com/fwlink/?LinkId=143813) |
cluster node /start
|
Start-ClusterNode
For more information, see: Start-ClusterNode (http://go.microsoft.com/fwlink/?LinkId=143822) (For the net start clussvc /forcequorum command, the PowerShell equivalent is Start-ClusterNode with the -FixQuorum option.) |
cluster node /stop
|
Stop-ClusterNode
For more information, see: Stop-ClusterNode (http://go.microsoft.com/fwlink/?LinkId=143826) |
cluster node /evict
|
Remove-ClusterNode
For more information, see: Remove-ClusterNode (http://go.microsoft.com/fwlink/?LinkId=143807) |
cluster node /forcecleanup
|
Clear-ClusterNode
For more information, see: Clear-ClusterNode (http://go.microsoft.com/fwlink/?LinkId=143781) |
Back to top
In the following table, each cluster group command is mapped to the Windows PowerShell equivalent.
In the following table, each cluster group command is mapped to the Windows PowerShell equivalent.
Command | PowerShell command equivalent |
---|---|
cluster group
|
Get-ClusterGroup
For more information, see: Get-ClusterGroup (http://go.microsoft.com/fwlink/?LinkId=143785) |
cluster group /prop
|
Get-ClusterGroup | fl *
For more information, see: Get-ClusterGroup (http://go.microsoft.com/fwlink/?LinkId=143785) |
cluster group <groupname> /create
|
Choose from:
|
cluster group <groupname> /delete
|
Remove-ClusterGroup <groupname>
For more information, see: Remove-ClusterGroup (http://go.microsoft.com/fwlink/?LinkId=143806) |
cluster group <groupname> /online
|
Start-ClusterGroup <groupname>
For more information, see: Start-ClusterGroup (http://go.microsoft.com/fwlink/?LinkId=143821) |
cluster group <groupname> /offline
|
Stop-ClusterGroup <groupname>
For more information, see: Stop-ClusterGroup (http://go.microsoft.com/fwlink/?LinkId=143825) |
cluster group <groupname> /move
|
Move-ClusterGroup <groupname>
For more information, see: Move-ClusterGroup (http://go.microsoft.com/fwlink/?LinkId=143799) |
cluster group "Available Storage" /move
|
Move-ClusterGroup "Available Storage"
For more information, see: Move-ClusterGroup (http://go.microsoft.com/fwlink/?LinkId=143799) |
Back to top
In the following table, each cluster resource command is mapped to the Windows PowerShell equivalent.
In the following table, each cluster resource command is mapped to the Windows PowerShell equivalent.
Command | PowerShell command equivalent |
---|---|
cluster resource
|
Get-ClusterResource
For more information, see: Get-ClusterResource (http://go.microsoft.com/fwlink/?LinkId=143793) |
cluster resource /prop
|
Get-ClusterResource | fl *
For more information, see: Get-ClusterResource (http://go.microsoft.com/fwlink/?LinkId=143793) |
cluster resource "<resourcename>" /prop <property>=<value>
|
$resource = Get-ClusterResource "<resourcename>"; $resource.<property> = <value>
For more information, see: Get-ClusterResource (http://go.microsoft.com/fwlink/?LinkId=143793) |
cluster resource /priv
|
Get-ClusterResource | Get-ClusterParameter
For more information, see: Get-ClusterResource (http://go.microsoft.com/fwlink/?LinkId=143793) Get-ClusterParameter (http://go.microsoft.com/fwlink/?LinkId=143791) |
cluster resource <resourcename> /create /group:<groupname> /type:<restype>
|
Add-ClusterResource
For more information, see: Add-ClusterResource (http://go.microsoft.com/fwlink/?LinkId=143773) |
cluster resource "<resourcename>" /delete
|
Remove-ClusterResource "<resourcename>"
For more information, see: Remove-ClusterResource (http://go.microsoft.com/fwlink/?LinkId=143808)s |
cluster resource "<resourcename>" /online
|
Start-ClusterResource "<resourcename>"
For more information, see: Start-ClusterResource (http://go.microsoft.com/fwlink/?LinkId=143823) |
cluster resource "<resourcename>" /offline
|
Stop-ClusterResource "<resourcename>"
For more information, see: Stop-ClusterResource (http://go.microsoft.com/fwlink/?LinkId=143827) |
cluster resource "<diskresourcename>" /maint:on
|
Suspend-ClusterResource "<diskresourcename>"
For more information, see: Suspend-ClusterResource (http://go.microsoft.com/fwlink/?LinkId=143829)s |
cluster resource "<diskresourcename>" /maint:off
|
Resume-ClusterResource "<diskresourcename>"
For more information, see: Resume-ClusterResource (http://go.microsoft.com/fwlink/?LinkId=143814) |
Back to top
In the following table, each cluster network or cluster netinterface command is mapped to the Windows PowerShell equivalent.
In the following table, each cluster network or cluster netinterface command is mapped to the Windows PowerShell equivalent.
Command | PowerShell command equivalent |
---|---|
cluster network
|
Get-ClusterNetwork
For more information, see: Get-ClusterNetwork (http://go.microsoft.com/fwlink/?LinkId=143787) |
cluster network /prop
|
Get-ClusterNetwork | fl *
For more information, see: Get-ClusterNetwork (http://go.microsoft.com/fwlink/?LinkId=143787) |
cluster netinterface
|
Get-ClusterNetworkInterface
For more information, see: Get-ClusterNetworkInterface (http://go.microsoft.com/fwlink/?LinkId=143788) |
cluster netinterface /prop
|
Get-ClusterNetworkInterface | fl *
For more information, see: Get-ClusterNetworkInterface (http://go.microsoft.com/fwlink/?LinkId=143788) |
Back to top
In the following table, each cluster resourcetype command is mapped to the Windows PowerShell equivalent.
Command | PowerShell command equivalent |
---|---|
cluster resourcetype
|
Get-ClusterResourceType
For more information, see: Get-ClusterResourceType (http://go.microsoft.com/fwlink/?LinkId=143796) |
cluster resourcetype /prop
|
Get-ClusterResourceType | fl *
For more information, see: Get-ClusterResourceType (http://go.microsoft.com/fwlink/?LinkId=143796) |
cluster resourcetype /priv
|
Get-ClusterResourceType | Get-ClusterParameter
For more information, see: Get-ClusterResourceType (http://go.microsoft.com/fwlink/?LinkId=143796) Get-ClusterParameter (http://go.microsoft.com/fwlink/?LinkId=143791) |
Monday, June 22, 2015
Sr. Technical Support Engineer - VMware
Experience required for the Job: 3 - 12 years
Job Location: Bengaluru/Bangalore
Apply Now Reply
Dear Candidate,
Job Summary:
As a Technical Support Engineer you will be providing support to customers, using VMware products, in isolating, diagnosing, reproducing and fixing technical issues in a timely manner. To be successful in this role, you must be a motivated self-starter and self-learner, possess strong customer service and technical problem solving skills; and be someone who embraces challenges.
Essential Functions:
*Resolve customer's issues via the telephone, email or Webex session
*Reproducing issues in-house and responding back in a timely manner.
*Regular follow ups with customers with recommendations, updates and action plans.
*Escalate issues in a timely manner according to Standard Operating Procedures.
*Leverage internal technical expertise, including peers, mentors, knowledge base, community forums and other internal tools, to provide the most effective solutions to customer issues.
*Create new knowledgebase articles to capture new learning's for reuse throughout the organization.
*Participate in technical communications within the Technical Support Team to share best practices and learn about new technologies.
*Focus on an area of technical specialization and attend technical trainings,
*Read and work with other Technical Support Engineers on cases which will help cultivate that expertise.
Requirements:
- Good written and verbal communication skills.
- Good interpersonal communication and customer service skills are needed in order to work successfully with customers in high stress and or ambiguous situations.
-Overall Work experience in Technical domain. Experience in Virtualization & Cloud computing will be preferred.
-Willingness to work in a 24/7 shift environment.
Basic understanding of some of the following technologies:
- Networking
- Storage
- Linux
- TCP/IP
- Windows Clustering/DHCP/DNS.
- Windows 2003/2008
- Strong aptitude for learning new technologies and understanding how to utilize them in a customer facing environment.
- Ability to follow standard engineering principles and practices.
- Logical approach to problem solving.
- Multiplatform Operating Systems Knowledge (Windows, Linux , UNIX) would be an added advantage
Educational Qualification:
Bachelor's Degree
Experience in providing voice based Technical Support is a key requirement.
Experience of working with global customers is an asset
CCNA / VCP / RHCE will be an added advantage.
Interested Candidates can send their CV to hsarangi@vmware.com
Wednesday, June 17, 2015
Wintel Admin(SSE)
Greetings from CGI!!!
We have a Scheduled drive happening on 20th June 2015 for Wintel Admin(SSE). Kindly refer your friends who are in this profile.
Please send the updated CV to the below Mail ID:
PFB the JD:
Wintel Admin:
· Should have experience in Wintel Admin.
· Should have experience in VMware or Active Directory.
· Should have experience in L3 Support for Wintel & L2 Support for VMware or Active Directory.
· Should be ready to work in 24/7 environment.
· Should have Good Communication.
· Install and configure Windows 2000/2003/ 2008/ 2012 Server .
Install and configure multi node Cluster.
Apply MS patches to new and existing Windows/VM servers
Server Commission/decommission process.
Participate in Windows OS upgrade projects and design of infrastructure.
Provide estimates for project related work as required.
Provide technical leadership to peers.
Install and configure multi node Cluster.
Apply MS patches to new and existing Windows/VM servers
Server Commission/decommission process.
Participate in Windows OS upgrade projects and design of infrastructure.
Provide estimates for project related work as required.
Provide technical leadership to peers.
Please find below the details:
Refer Another You (RAY) and earn referral bonus.
If you need a status on your referral or have any other query mail toAskMemberReferral.ind@cgi.com<mailto:AskMemberReferral.ind@cgi.com> and receive feedback within 24 hrs.Check the weekly “Refer Another You” mailer from IN HR Announcement and please upload the resume on the CGI career site<https://cgi.njoyn.com/cgi/xweb/Xweb.asp?tbtoken=Y1lYQ1USRx8HFARxMiFJHFI%2FdXldciVab11YIVARDxJcKDVvKkMcdWcHPApXVRVSSD5l&chk=dFlbQBJf&clid=21001&page=joblisting&OrgPg=joblisting&lang=1>.
Please review the member referral policy<https://info.ent.cginet/lib/bs/hr/in/lps/Member%20Referral%20Policy.pdf> for more details. You can also post jobs directly to your social media (Facebook, Twitter, Linked In, etc) from the Career Page -->Apply job section.
Thanks and Regards,
Veena Nagendra
HR - Talent Acquisition
Tuesday, June 16, 2015
Difference between Pathping and Tracert
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Users\Trainer>title admin
C:\Users\Trainer>pathping yahoo.com
Tracing route to yahoo.com [98.139.183.24]
over a maximum of 30 hops:
0 Trainer-PC [192.168.0.101]
1 192.168.0.1
2 10.25.32.1
3 my ip address
4 59.163.105.165.static-chennai.vsnl.net.in [59.163.105.165]
5 172.29.209.82
6 172.31.29.245
7 ix-0-100.tcore1.MLV-Mumbai.as6453.net [180.87.38.5]
8 if-9-5.tcore1.WYN-Marseille.as6453.net [80.231.217.17]
9 if-8-1600.tcore1.PYE-Paris.as6453.net [80.231.217.6]
10 if-2-2.tcore1.PVU-Paris.as6453.net [80.231.154.17]
11 * 80.231.153.66
12 ae-4-90.edge1.Washington1.Level3.net [4.69.149.205]
13 ae-4-90.edge1.Washington1.Level3.net [4.69.149.205]
14 * 146.82.54.206
15 ae-0.pat1.nyc.yahoo.com [216.115.101.156]
16 ae-5.pat2.bfz.yahoo.com [216.115.96.67]
17 ae-3.msr1.bf1.yahoo.com [216.115.100.29]
18 UNKNOWN-98-139-232-X.yahoo.com [98.139.232.107]
19 * UNKNOWN-72-30-22-X.yahoo.com [72.30.22.37]
20 po-11.bas1-7-prd.bf1.yahoo.com [98.139.129.177]
21 ir2.fp.vip.bf1.yahoo.com [98.139.183.24]
Computing statistics for 525 seconds...
Source to Here This Node/Link
Hop RTT Lost/Sent = Pct Lost/Sent = Pct Address
0 Trainer-PC [192.168.0.101]
0/ 100 = 0% |
1 0ms 0/ 100 = 0% 0/ 100 = 0% 192.168.0.1
1/ 100 = 1% |
2 15ms 1/ 100 = 1% 0/ 100 = 0% 10.25.32.1
0/ 100 = 0% |
3 27ms 5/ 100 = 5% 4/ 100 = 4% 113.193.240.109
0/ 100 = 0% |
4 29ms 3/ 100 = 3% 2/ 100 = 2% 59.163.105.165.static-chennai.vsnl.net.in [59.163.105.165]
0/ 100 = 0% |
5 --- 100/ 100 =100% 99/ 100 = 99% 172.29.209.82
0/ 100 = 0% |
6 --- 100/ 100 =100% 99/ 100 = 99% 172.31.29.245
0/ 100 = 0% |
7 56ms 1/ 100 = 1% 0/ 100 = 0% ix-0-100.tcore1.MLV-Mumbai.as6453.net [180.87.38.5]
1/ 100 = 1% |
8 304ms 3/ 100 = 3% 1/ 100 = 1% if-9-5.tcore1.WYN-Marseille.as6453.net [80.231.217.17]
0/ 100 = 0% |
9 291ms 3/ 100 = 3% 1/ 100 = 1% if-8-1600.tcore1.PYE-Paris.as6453.net [80.231.217.6]
0/ 100 = 0% |
10 285ms 4/ 100 = 4% 2/ 100 = 2% if-2-2.tcore1.PVU-Paris.as6453.net [80.231.154.17]
0/ 100 = 0% |
11 171ms 3/ 100 = 3% 1/ 100 = 1% 80.231.153.66
0/ 100 = 0% |
12 252ms 3/ 100 = 3% 1/ 100 = 1% ae-4-90.edge1.Washington1.Level3.net [4.69.149.205]
0/ 100 = 0% |
13 249ms 6/ 100 = 6% 4/ 100 = 4% ae-4-90.edge1.Washington1.Level3.net [4.69.149.205]
0/ 100 = 0% |
14 257ms 3/ 100 = 3% 1/ 100 = 1% 146.82.54.206
0/ 100 = 0% |
15 248ms 2/ 100 = 2% 0/ 100 = 0% ae-0.pat1.nyc.yahoo.com [216.115.101.156]
0/ 100 = 0% |
16 262ms 2/ 100 = 2% 0/ 100 = 0% ae-5.pat2.bfz.yahoo.com [216.115.96.67]
1/ 100 = 1% |
17 265ms 4/ 100 = 4% 1/ 100 = 1% ae-3.msr1.bf1.yahoo.com [216.115.100.29]
0/ 100 = 0% |
18 270ms 4/ 100 = 4% 1/ 100 = 1% UNKNOWN-98-139-232-X.yahoo.com [98.139.232.107]
0/ 100 = 0% |
19 265ms 7/ 100 = 7% 4/ 100 = 4% UNKNOWN-72-30-22-X.yahoo.com [72.30.22.37]
0/ 100 = 0% |
20 257ms 3/ 100 = 3% 0/ 100 = 0% po-11.bas1-7-prd.bf1.yahoo.com [98.139.129.177]
0/ 100 = 0% |
21 259ms 3/ 100 = 3% 0/ 100 = 0% ir2.fp.vip.bf1.yahoo.com [98.139.183.24]
Trace complete.
C:\Users\Trainer>tracert yahoo.com
Tracing route to yahoo.com [206.190.36.45]
over a maximum of 30 hops:
1 <1 ms <1 ms <1 ms 192.168.0.1
2 12 ms 7 ms 6 ms 10.25.32.1
3 10 ms 9 ms 12 ms my ip address
4 9 ms 8 ms 7 ms 59.163.105.165.static-chennai.vsnl.net.in [59.163.105.165]
5 12 ms 9 ms 8 ms 172.29.209.82
6 37 ms 34 ms 34 ms 172.25.81.134
7 38 ms 36 ms 35 ms ix-0-100.tcore1.MLV-Mumbai.as6453.net [180.87.38.5]
8 271 ms * 275 ms if-9-5.tcore1.WYN-Marseille.as6453.net [80.231.217.17]
9 * 270 ms 265 ms if-8-1600.tcore1.PYE-Paris.as6453.net [80.231.217.6]
10 266 ms 270 ms 397 ms if-2-2.tcore1.PVU-Paris.as6453.net [80.231.154.17]
11 365 ms 410 ms 153 ms 80.231.153.66
12 307 ms 466 ms * ae-24-52.car4.Seattle1.Level3.net [4.69.147.166]
13 291 ms 292 ms 291 ms ae-24-52.car4.Seattle1.Level3.net [4.69.147.166]
14 310 ms 309 ms 309 ms YAHOO-INC.car4.Seattle1.Level3.net [4.79.106.26]
15 316 ms 311 ms 313 ms ae-7.pat2.gqb.yahoo.com [216.115.101.109]
16 305 ms 315 ms 305 ms ae-0.msr1.gq1.yahoo.com [66.196.67.1]
17 316 ms 309 ms 304 ms xe-11-2-1.clr1-a-gdc.gq1.yahoo.com [67.195.1.193]
18 317 ms 311 ms 312 ms et-18-1.fab2-1-gdc.gq1.yahoo.com [67.195.1.77]
19 305 ms 303 ms 306 ms po-10.bas2-7-prd.gq1.yahoo.com [206.190.32.31]
20 309 ms 308 ms 307 ms ir1.fp.vip.gq1.yahoo.com [206.190.36.45]
Trace complete.
C:\Users\Trainer>
###########################################################
·
&& - Command Chaining
·
%SYSTEMROOT%\System32\rcimlby.exe
-LaunchRA - Remote Assistance (Windows XP)
·
appwiz.cpl - Programs and
Features (Formerly Known as "Add or Remove Programs")
·
appwiz.cpl
@,2 -
Turn Windows Features On and Off (Add/Remove Windows Components pane)
·
arp - Displays and
modifies the IP-to-Physical address translation tables used by address
resolution protocol (ARP)
·
at - Schedule tasks
either locally or remotely without using Scheduled Tasks
·
bootsect.exe - Updates the master boot
code for hard disk partitions to switch between BOOTMGR and NTLDR
·
cacls - Change Access
Control List (ACL) permissions on a directory, its subcontents, or files
·
calc - Calculator
·
chkdsk - Check/Fix the
disk surface for physical errors or bad sectors
·
cipher - Displays or
alters the encryption of directories [files] on NTFS partitions
·
cleanmgr.exe - Disk Cleanup
·
clip - Redirects output
of command line tools to the Windows clipboard
·
cls - clear the command
line screen
·
cmd /k - Run command with
command extensions enabled
·
color - Sets the default
console foreground and background colors in console
·
command.com - Default Operating
System Shell
·
compmgmt.msc - Computer
Management
·
control.exe
/name Microsoft.NetworkAndSharingCenter - Network and Sharing Center
·
control
keyboard -
Keyboard Properties
·
control
mouse(or main.cpl) -
Mouse Properties
·
control
sysdm.cpl,@0,3 -
Advanced Tab of the System Properties dialog
·
control
userpasswords2 -
Opens the classic User Accounts dialog
·
desk.cpl - opens the display
properties
·
devmgmt.msc - Device Manager
·
diskmgmt.msc - Disk Management
·
diskpart - Disk management from the
command line
·
dsa.msc - Opens active
directory users and computers
·
dsquery - Finds any objects
in the directory according to criteria
·
dxdiag - DirectX
Diagnostic Tool
·
eventvwr - Windows Event Log
(Event Viewer)
·
explorer . - Open explorer
with the current folder selected.
·
explorer
/e,
. - Open explorer, with folder tree, with current folder selected.
·
F7 - View command history
·
find - Searches for a
text string in a file or files
·
findstr - Find a string in
a file
·
firewall.cpl - Opens the Windows
Firewall settings
·
fsmgmt.msc - Shared Folders
·
fsutil - Perform tasks
related to FAT and NTFS file systems
·
ftp - Transfers files
to and from a computer running an FTP server service
·
getmac - Shows the mac
address(es) of your network adapter(s)
·
gpedit.msc - Group Policy
Editor
·
gpresult - Displays the
Resultant Set of Policy (RSoP) information for a target user and computer
·
httpcfg.exe - HTTP Configuration
Utility
·
iisreset - To restart IIS
·
InetMgr.exe - Internet
Information Services (IIS) Manager 7
·
InetMgr6.exe - Internet
Information Services (IIS) Manager 6
·
intl.cpl - Regional and
Language Options
·
ipconfig - Internet protocol
configuration
·
lusrmgr.msc - Local Users and
Groups Administrator
·
msconfig - System Configuration
·
notepad - Notepad? ;)
·
mmsys.cpl -
Sound/Recording/Playback properties
·
mode - Configure system
devices
·
more - Displays one screen of
output at a time
·
mrt - Microsoft Windows
Malicious Software Removal Tool
·
mstsc.exe - Remote Desktop
Connection
·
nbstat - displays protocol
statistics and current TCP/IP connections using NBT
·
ncpa.cpl - Network
Connections
·
netsh - Display or modify the
network configuration of a computer that is currently running
·
netstat - Network
Statistics
·
net
statistics -
Check computer up time
·
net stop - Stops a running service.
·
net use - Connects a
computer to or disconnects a computer from a shared resource, displays
information about computer connections, or mounts a local share with different
privileges(documentation)
·
odbcad32.exe - ODBC Data Source
Administrator
·
pathping - A traceroute that
collects detailed packet loss stats
·
perfmon - Opens Reliability
and Performance Monitor
·
ping - Determine whether
a remote computer is accessible over the network
·
powercfg.cpl - Power management
control panel applet
·
qfecheck - Shows installed
Hotfixes applied to the server/workstation.
·
quser - Display
information about user sessions on a terminal server
·
qwinsta - See disconnected
remote desktop sessions
·
reg.exe - Console Registry
Tool for Windows
·
regedit - Registry Editor
·
rasdial - Connects to a VPN
or a dialup network
·
robocopy -
Backup/Restore/Copy large amounts of files reliably
·
rsop.msc - Resultant Set of
Policy (shows the combined effect of all group policies active on the current
system/login)
·
runas - Run specific
tools and programs with different permissions than the user's current logon
provides
·
sc - Manage anything
you want to do with services.
·
schtasks - Enables an
administrator to create, delete, query, change, run and end scheduled tasks on
a local or remote system.
·
secpol.msc - Local Security
Settings
·
services.msc - Services control
panel
·
set - Displays, sets,
or removes cmd.exe environment variables.
·
set DIRCMD - Preset dir parameter in
cmd.exe
·
start - Starts a separate
window to run a specified program or command
·
start. - opens the current
directory in the Windows Explorer.
·
shutdown.exe - Shutdown or
Reboot a local/remote machine
·
subst.exe - Associates a path
with a drive letter, including local drives
·
systeminfo -Displays a
comprehensive information about the system
·
taskkill - terminate tasks
by process id (PID) or image name
·
tasklist.exe - List Processes on
local or a remote machine
·
taskmgr.exe - Task Manager
·
telephon.cpl - Telephone and
Modem properties
·
timedate.cpl - Date and Time
·
title - Change the title
of the CMD window you have open
·
tracert - Trace route
·
whoami
/all -
Display Current User/Group/Privilege Information
·
wmic - Windows
Management Instrumentation Command-line
·
winver.exe - Find Windows
Version
·
wscui.cpl - Windows Security
Center
·
wuauclt.exe - Windows Update AutoUpdate
Client
Subscribe to:
Posts (Atom)