Friday, August 29, 2014

Most useful Microsoft Management Console Snap-in Control Files (.msc files)

Hello, below you’ll find most useful Microsoft Management Console Snap-in Control Files that would be timesaving solution in your daily administration work. Also table with .msc files available in Windows Server 2008 and Windows Server 2012

Most useful .msc consoles are:

1. Computer Management compmgmt.msc

I think this is the common console that we’re opening everyday
Computer Management compmgmt.msc

2. Device Manager devmgmt.msc

Also basic well-known console
Device Manager devmgmt.msc

3. Disk Management diskmgmt.msc

Fast access to useful console:
Disk Management diskmgmt.msc

4. Shared Folders fsmgmt.msc

Shared Folders fsmgmt.msc

5. Event Viewer eventvwr.msc

Known console:
Event Viewer eventvwr.msc

6. Services services.msc

Services services.msc

7. Task Scheduler taskschd.msc

Fast access to task scheduler
Task Scheduler taskschd.msc

8. Windows Firewall with Advanced Security WF.msc

Simple to learn
Windows Firewall with Advanced Security WF.msc

9. Local Group Policy Editor gpedit.msc




Local Group Policy Editor gpedit.msc

10. Local Users and Groups lusrmgr.msc

Looser console :)
Local Users and Groups lusrmgr.msc

.msc files in Windows 2008 and Windows 2012

MSC file name
MMC name
Windows Server 2008
Windows Server 2012




adfs.mscActive Directory Federation Services (AD FS)+
AdRmsAdmin.mscActive Directory Rights Management Services++
adsiedit.mscADSI edit++
azman.mscAuthorization Manager++
certlm.mscCertificates (Local Computer)
+
certmgr.mscCertificates (Current User)++
certsrv.mscCertification Authority++
certtmpl.mscCertificate Templates++
CIADV.MSCIndexing Service+
CluAdmin.mscFailover Cluster Manager++
comexp.mscComponent Services++
compmgmt.mscComputer Management++
da6to4.mscPerformance Monitor (Network Interfaces)+
daiphttps.mscPerformance Monitor (HTTPS traffic)+
daipsecdos.mscPerformance Monitor (IPsec)+
daisatap.mscPerformance Monitor (ISATAP)+
DAMgmt.mscDirectAccess+
datrds.mscPerformance Monitor (Teredo Server)++
devmgmt.mscDevice Manager++
dfsmgmt.mscDFS Management++
dhcpmgmt.mscDHCP++
diskmgmt.mscDisk Management++
dnsmgmt.mscDNS Manager++
domain.mscActive Directory Domains and Trusts++
dsa.mscActive Directory Users and Computers++
dssite.mscActive Directory Sites and Cervices++
eventvwr.mscEvent Viewer++
FailoverClusters.SnapInHelper.mscFailover Cluster Manager++
fsmgmt.mscShared Folders++
fsrm.mscFile Server Resource Manager++
fxsadmin.mscMicrosoft Fax Service Manager++
gpedit.mscLocal Group Policy Editor++
gpmc.mscGroup Policy Managerment++
gpme.mscGroup Policy Managerment Editor++
gptedit.mscGroup Policy Starter GPO Editor+
gptedit.mscLocal Group Policy Editor
+
HCSCFG.MSCHealth Registration Authority++
idmumgmt.mscMicrosoft Identity Management for UNIX++
iis.mscInternet Information Services (IIS) Manager++
iis6.mscInternet Information Services (IIS) 6.0 Manager++
lsdiag.mscRD Licensing Diagnoser
+
lusrmgr.mscLocal Users and Groups++
Microsoft.IdentityServer.mscAD FS
+
NAPCLCFG.MSCNAP Client Configuration++
nfsmgmt.mscServices for Network File System++
nps.mscNetwork Policy Server++
ocsp.mscOnline Responder++
perfmon.mscPerformance Monitor++
pkiview.mscEnterprise PKI++
printmanagement.mscPrint Management++
remoteprograms.mscRemoteApp Manager (Local)+
rrasmgmt.mscRouting and Remote Access++
rsop.mscResultant Set of Policy++
SanMmc.mscStorage Manager for SANs (Local)+
sbmgr.mscRemote Desktop Connection Manager+
ScanManagement.mscScan Management++
secpol.mscLocal Security Policy++
ServerManager.mscServer Manager+
services.mscServices++
storagemgmt.mscShare and Storage Management++
storexpl.mscStorage Explorer+
tapimgmt.mscTelephony++
taskschd.mscTask Scheduler++
tpm.mscTrusted Platform Module (TPM) Management++
tsadmin.mscRemote Desktop Services Manager+
tsconfig.mscRemote Desktop Session Host Configuration+
tsgateway.mscRD Gateway Manager++
tsmmc.mscRemote Desktops+
virtmgmt.mscHyper-V Manager++
wbadmin.mscWindows Server Backup++
WdsMgmt.mscWindows Deployment Services++
WF.mscWindows Firewall with Advanced Security++
winsmgmt.mscWINS++
wlbadmin.mscWindows Server Backup
+
WmiMgmt.mscWMI Management++
WSRM.mscWindows System Resource Manager++
wsus.mscUpdate Services
+

Step-By-Step: Assigning VMs with Static IP addresses in a Virtual Network



Hello Folks,
in order to follow along you should be familiar with IaaS.  The easiest way to do that is to listen to the Windows Azure for IT Pros Jump Start on Microsoft Virtual Academy.
Over the last few weeks we published a lot of information regarding Microsoft Azure.  I’ve actually concentrated on the networking side of things because after many conversations with ITPros it was clear that guidance on extending your own datacenter to the cloud was the first step needed.
So with that in mind I wrote several articles on connecting your local network with a (or many) virtual networks in the cloud.
How ever last week while I was in Redmond someone pointing out that I had left off an very important topic.  How do I assign a static IP address to a Virtual Machine running in one of my Virtual Networks on Azure.
Well…  Say no more .  Here is how it’d done.
Before we get to the steps.  There are a few things you need to know about IP addresses on Azure.
as you can see in the screen capture below.  There are 2 IP address for every VM.
The VIP (Virtual IP address):   The public IP address pointing to the cloud service where the VM deployed to.
and The DIP (an internal IP assigned by Windows Azure with DHCP): The IP address assigned to the VM for communicating within the Windows Azure virtual Network.
image
In this articles we will set the INTERNAL address to a static one.  This could be done because the server is a DNS server, because you have services or LOB apps that connect to the server in question using a IP address instead of a FQDN.  whatever your reason. the process is the same.

Step 1: Verify that a specific IP address is available

For sake of argument I want to set my DC02 machine to 10.2.2.10.  as you can see above it is currently set to 10.2.2.4.
To see if 10.2.2.10 is available use the following command in your Microsoft Azure PowerShell console.
Test-AzureStaticVNetIP –VNetName vNet1 –IPAddress 10.2.2.10
image
If you get a “IsAvailable  : True” as the result, you’re good to proceed to step 2.

Step 2: Specify a static internal IP for a existing VM

Still in your Microsoft Azure PowerShell console, type the following command, and then press ENTER. (the command is on one line).  Please note that the Machine will need to restarted to start using the new IP address.
Get-AzureVM -Name DC02 –ServiceName PR-DC02 | Set-AzureStaticVNetIP –IPAddress 10.2.2.10 | Update-AzureVM
and the result of the command is:
image
Once you get the “OperationStatus = Succeeded”.  if you want to verify that the VM has really been set to the new address, type the following command, and then press ENTER.
Get-AzureVM -Name DC02 –ServiceName PR-DC02
image
Once my Machine restarted I opened a Remote Desktop Session and verified the settings.
image
You will notice that the address still shows up as “IPv4 address assigned by DHCP” , and that the address you specified IS the one being assigned (10.2.2.10). But notice the Lease Expires field…
The way azure deals with static IP addresses is to create a reservation for 135 years… it’s pretty safe that it’s going to exceed the life of that machine.
I hope this helps.  Feel free to send us comments and let us know what scenarios you want us to explore for you.
Cheers!