Monday, December 17, 2018

SYSTEMS ADMINISTRATOR

SYSTEMS ADMINISTRATOR

As a Systems Administrator you are working in your Company.You work for a company named DSR.com.Your role of Systems Administrator at DSR.com includes the management of the company’s private and public clouds.The private clouds are hosted in a data center at the company’s headquarters.A physical server named DS-SQL1 runs Windows Server 2012 and SQL Server 2012.DS-SQL1 is hosted in the datacenter.You have an application that runs in Azure Cloud Services.The cloud service consists of two A1 virtual machine instances.The application copies data to a SQL Server database hosted on DS-SQL1.Users complain that the application runs slowly when it is copying data to DS-SQL1.You want to reduce the time it takes the application to copy data to DS-SQL1.

➧INSTANCE A3,  CORES 4,  RAM 7.00 GB,  TEMPORARY STORAGE 1,000 GB,  PRICE ₹21.16/hour
🔼Deploy the application as two A3 instances.



As a Systems Administrator you are working in your Company.You work for a company named DSR.com includes the management of the company’s private and public clouds.The private clouds are hosted in a data center at the company’s headquarters.The private clouds are hosted on Windows Server 2012 R2 Hyper-V servers managed by System Center Virtual Machine Manager 2012 R2 (VMM).You want to implement Microsoft Azure Site Recovery to use Azure as a backup site for the datacenter.You create a site recovery vault and select the “Between an on-premises Hyper-V site and Microsoft Azure” option.

You have Azure subscription,Azure powerShell and An application that can be configured to use Key Vault.
➬If you start an Azure powerShell session and sign in to your Azure Account.
connect-AzureRmAccount
➬In the pop-up browser window,enter your Azure account user name and password.
If you have multiple subscriptions and want to specify a specific one to use for Azure Key Vault.
Get-AzureRmSubscription
➢To specify the subscription to use.
Set-AzureRmContext -SubscriptionId <subscription ID>
➬We will create a new resource group named ContosoResourceDivision.
New-AzureRmResourceGroup –Name 'ContosoResourceDivision' –Location 'East US'
➣New-AzureRmKeyVault
   [-Name] <String>
   [-ResourceGroupName] <String>
   [-Location] <String>
   [-EnabledForDeployment]
   [-EnabledForTemplateDeployment]
   [-EnabledForDiskEncryption]
   [-EnableSoftDelete]
   [-EnablePurgeProtection]
   [-Sku <SkuName>]
   [-Tag <Hashtable>]
   [-DefaultProfile <IAzureContextContainer>]
   [-WhatIf]
   [-Confirm]
   [<CommonParameters>]
➣Resource group name,Key vault name, and Geographic location.All three are cmdlet mandatory.
⤵Vault name of ContosoKeyVault.
⤵Resource group name of ContosoResourceDivision.
⤵The location of East US.
➬New-AzureRmKeyVault -Name 'ContosoKeyVault' -ResourceGroupName'ContosoResourceDivision' -Location 'East US'
➣Vault Name: ContosoKeyVault
➣Vault URI: https://contosokeyvault.vault.Azureadministrator.net/ 
🔼Generate a vault key.


As a Systems Administrator you are working in your Company.You work for a company named DSR.com includes the management of the company’s private and public clouds.The company has an Azure Storage account.The storage account has a container that contains 100 large files stored as blobs.You need to provide a customer with access to one of the files.The customer will need to access the file for a few days within the next month.

You can use a stored access policy to change the start time,expiry time or permissions for a signature or to revoke it after it has been issued.
➣Storage resources support stored access policies:-
1)Blob containers.
2)File shares.
3)Queues.
4)Tables.
➣To create or modify a stored access policy,call the Set ACL operation for the resource.
a)Set Container ACL.
b)Set Queue ACL.
c)Set Table ACL.
d)Set Share ACL.

➬<?xml version="1.0" encoding="utf-8"?>  
<SignedIdentifiers>  
  <SignedIdentifier>   
    <Id>unique-64-char-value</Id>  
    <AccessPolicy>  
      <Start>start-time</Start>  
      <Expiry>expiry-time</Expiry>  
      <Permission>abbreviated-permission-list</Permission>  
    </AccessPolicy>  
  </SignedIdentifier>  
</SignedIdentifiers>

➣If your existing policy grants read and write permissions to a resource,you can modify it to grant only read permissions for all future requests.

In this case,the signed identifier of the new policy,as specified by the ID field,would be identical to the signed identifier of the policy you are replacing.
➣To revoke a stored access policy,you can either delete it or rename it by changing the signed identifier.
➣To remove a single access policy,call the resource's Set ACL operation,passing in the set of signed identifiers that you wish to maintain on the container.
➫You can also manage the stored access policies for your storage accounts from within the Azure portal.
Shared access signatures (SAS) enable restricted access to entities within a storage account.A stored access policy provides additional control over service-level SAS on the server side.You can use a stored access policy to change the start time,expiry time or permissions for a signature or to revoke it after it has been issued.
🔼⤵Create a stored access policy on the container that specifies the start and end dates that the file should be available for.
⤵Create and provide the customer with an SAS (Shared Access Signature) based on a stored access policy.
⤵Delete the stored access policy when the customer has finished with the file.

As a Systems Administrator you are working in your Company.You work for a company named DSR.com includes the management of the company’s private and public clouds.The company has datacenters in Los Angeles and New York.The company has a Microsoft Azure subscription.You are configuring the two datacenters as geo-clustered sites for site resiliency.
You need to recommend an Azure storage redundancy option.
You have the following data storage requirements:
•Data must be stored on multiple nodes.
•Data must be stored on nodes in separate geographic locations.
•Data can be read from the secondary location as well as from the primary location.

If your primary endpoint for the Blob service is azureadministrator.blogspot.com,then your secondary endpoint is azureadministrator-secondary.blobspot.com.The access keys for your storage account are the same for both the primary and secondary endpoints.
➢RA-GRS replicates your data to another data center in a secondary region, and also provides you with the option to read from the secondary region.With RA-GRS,you can read from the secondary region regardless of whether Microsoft initiates a failover from the primary to secondary region.
➢Geo-redundant storage (GRS) is designed to provide at least 99.99999999999999% durability of objects over a given year by replicating your data to a secondary region that is hundreds of miles away from the primary region.Read-access geo-redundant storage (RA-GRS) is based on GRS.
🔼Read-only geo-redundant storage.
⤵When you create a storage account,you can also select one of the following replication options:-
Geo-redundant storage.
Zone-redundant storage.
Locally redundant storage.


As a Systems Administrator you are working in your Company.You work for a company named DSR.com includes the management of the company’s virtual infrastructure.The company has virtual machines running in an on-premise virtual environment and in Microsoft Azure.The on-premise virtual environment consists of virtual machines (VMs) running on Windows server 2012 R2 Hyper-V host servers.You have created some PowerShell scripts to automate the configuration of newly created VMs.You plan to create several new VMs.You need a solution that ensures the scripts are run on the new VMs.

Sunday, December 9, 2018

NETWORK ADMINISTRATOR

Network Administrator

As a Network Administrator you are working in your Company.You work for a company named DSR.com.The corporate network consists of physical and virtual servers located in a datacenter and virtual servers hosted on Microsoft Azure.The company has servers that run Windows Server 2008, Windows Server 2008 R2 and Windows Server 2012.A server named DS-App1 runs Windows Server 2008 R2 SP1 and Microsoft .NET 3.5 Framework.DS-App1 hosts a custom application named ProductionApp. All users in the Production
department use ProductionApp.You want to run ProductionApp as a cloud service on Microsoft Azure.
The server operating system and .NET framework version that ProductionApp runs under cannot be changed.

SOLUTION:
➧Family 2
🔼Guest OS Family 1 and Guest OS Family 2 supports .NET 3.5 and .Net 4.0. Guest OS Family 3 and Guest OS Family 4 supports .NET 4.0 and .Net 4.5
The latest Azure Guest OS releases for Cloud Services. This information helps you plan your upgrade
path before a Guest OS is disabled. If you configure your roles to use automatic Guest OS updates.
Only the latest 2 versions of the Guest OS will be supported and available in the Azure portal.
Family 5 releases
Windows Server 2016
.NET Framework installed: 3.5, 4.6.2
Family 4 releases
Windows Server 2012 R2
.NET Framework installed: 3.5, 4.5.1
Family 3 releases
Windows Server 2012
.NET Framework installed: 3.5, 4.5
Family 2 releases
Windows Server 2008 R2 SP1
.NET Framework installed: 3.5 (includes 2.0 and 3.0)



As a Network Administrator you are working in your Company.You work for a company named DSR.com.The corporate network consists of physical and virtual servers located in a datacenter and virtual servers hosted on Microsoft Azure.The company has servers that run Windows Server 2008, Windows Server 2008 R2 and Windows Server 2012.The corporate network consists of physical and virtual servers located in a datacenter and a public cloud hosted on Microsoft Azure. The company has a Development department.
Users in the Development department develop custom applications that are used within the company.One custom application is named DsApp1.The application is hosted in Azure Cloud Services.
The developers release an updated version of DsApp1.You need to deploy the updated version of DsApp1 to Azure cloud services for a period of time to allow for testing.
During testing,the current version of DsApp1 must remain online.After testing,the new version must replace the current version as the live version with the minimum amount of downtime.When the new version is live,the old version must remain available for a period of time to be redeployed in the
event of problems with the new version.The solution must minimize costs,administrative effort and application downtime.

SOLUTION:
➧⤵Deploy the new application to the staging area.
  ⤵Perform a Virtual IP swap.
🔼Azure App Service:
An integrated service that enables you to create web apps and mobile apps for any platform or device,easily integrate with SaaS solutions (Office 365,Dynamics CRM,Salesforce,Twilio)
easily connect with on-premises applications (SAP,Oracle,Siebel).
Azure App Services are useful for developers.It offers (Web,API,Mobile and Function )Apps
(that run Azure Functions).These apps are incredibly powerful and can literally get you up and running in minutes.They provide a host of amazing features like (auto)scaling,easy authentication,offline sync (for Mobile Apps),hybrid connections and much more.
                                        SWAP
🔄staging.website.com ⬄  🔁production.website.com
You have a Web App deployed in an Azure App Service and it has a URL like production.website.com.
In Azure App Services,you can very easily add an additional deployment slot.
The deployment slot has a different URL like staging.website.com.
Your users would be accessing your original Web App because that is your production environment slot. 
You can deploy a new version of the Web App into a secondary deployment slot,so you can test it before it goes live.
Instead of deploying your Web App to a staging slot,you could have deployed it as whole new App
Service.The swap functionality of the deployment slot takes care of this.
The original App Service deployment slot is also called the production slot.
Deployment slots have a different URL than the original App Service.This URL is based on the name you give the deployment slot.
For instance, “staging” can become http://azureadministrator.blogspot-staging.azurewebsites.net.
Deployment slots are actually live apps with their own hostnames.App content and configurations
elements can be swapped between two deployment slots, including the production slot.
a)In the Azure Portal,open your app's resource blade.
b)Choose the Deployment slots option,then click on Add Slot.
c)In the Add a slot blade,give the slot a name,and select whether to clone app configuration from
another existing deployment slot.
After you have created several slots,you will be able to clone configuration from a slot other than
the one in production.
d)In your app's resource blade, click Deployment slots,then click a deployment slot to open that slot's
resource blade,with a set of metrics and configuration.
The name of the slot is shown at the top of the blade to remind you that you are viewing the deployment slot.
e)Click the app URL in the slot's blade. Notice the deployment slot has its own hostname and is also a live app.
Suppose that I have a website deployed in a Web App.
This Web App has the custom URL https://azureadministrator.blogspot.com/.I have created a new version of the website and want to test it before publishing it.So,I create a deployment slot called staging.
which has the URL http://azureadministrator.blogspot-staging.azurewebsites.net.
Staging is the concept of testing an application in a production mirrored environment before moving
the site to production.
The same configuration values so that I use the same database and cache as production.I have deployed the new website in the deployment slot and want to deploy to production.I can do this by performing a swap.
a)To swap deployment slots,click the Swap button in the command bar of the app or in the command bar of a deployment slot.
b)Make sure that the swap source and swap target are set properly.
                                      SWAP
🔁staging.website.com  ⬌  🔁production.website.com
After a swap,the “old” website will be in the staging slot and the “new” website in the production
slot.


As a Network Administrator you are working in your Company.You work for a company named DSR.com.The company has offices in India,United Kingdom and Mexico .Each office has a data center.All three offices are connected by a Multi-Protocol Label Switching (MPLS) network.The company has a Microsoft Azure subscription.You want to create a connection between Azure and the three offices by connecting Azure to your MPLS network.

ExpressRoute is an Azure service that lets you create private connections between Microsoft datacenters and infrastructure that's on your premises or in a colocation facility.A colocation is a data center facility in which a business can rent space for servers and other computing hardware.
⤵ExpressRoute provides private connections between your on-premises datacenters and Azure datacenters.
You can achieve up to
50 Mbps
100 Mbps
200 Mbps
500 Mbps
1 Gbps
2 Gbps
5 Gbps
10 Gbps,10 Gbps bandwidth with the dedicated,secure and reliable connections.
⤵Connectivity to Microsoft cloud services.
Microsoft Azure services
Microsoft Office 365 services
⤵You can establish connections to Microsoft cloud services,such as Microsoft Azure,Office 365,and 
Dynamics 365.Connectivity can be from an any-to-any (IP VPN) network,a point-to-point Ethernet network or a virtual cross-connection through a connectivity provider at a co-location facility.
🔼ExpressRoute.


As a Network Administrator you are working in your Company.You work for a company named DSR.com.The company has a single Active Directory Domain Services (AD DS) domain named DSR.Com.All domain controllers in the DSR.com domain run Windows Server 2008 R2.The company has an on-premise Microsoft Exchange 2010 organization and a Lync Server 2010 environment.The company has recently purchased a Microsoft Office 365 subscription.You plan to migrate to Exchange Online and Lync Online.You need to configure directory synchronization between the on-premise Active Directory and Azure Active Directory.The on-premise Active Directory contains many Organizational Units (OUs).Some OUs contain user accounts that are used as service accounts for on-premise services.You need to configure directory synchronization to enable you to exclude OUs from the synchronization schedule.

➧a)Welcome to Azure AD Connect
b)Analysis of current DirSync configuration
c)Collect Azure AD global admin password
d)Collect credentials for an enterprise admin account(only used during the installation of Azure AD
Connect)
e)Installation of Azure AD Connect
➢Uninstall DirSync (or temporarily disable it)
➢Install Azure AD Connect
➢Optionally begin synchronization
➤Additional steps:-
➭You are currently using Full SQL Server - local or remote.
➭You have more than 50,000 objects in scope for synchronization.
(1)Launch the Azure AD Connect installer (MSI).
 Click on Welcome,After that click on Checkbox agree to license terms and privacy notice.
(2)Click on upgrade DirSync.
Analyzing previously installed DirSync Configuration.
After Completing Analysis.
Give your SERVER NAME and INSTANCE NAME then click on Next.
(3)Click on Connect to Azure AD.
Enter your USERNAME and PASSWORD connect to Azure AD.
(4)Click on Connect to AD DS.
Enter the Windows Server AD enterprise administrator credentials for the azureadministrator.com
Enter your USERNAME and PASSWORD.
Then click on Next.
(5)Now ready to Configure.Click on Upgrade.
(6)Now Installation has Completed,sign out and sing in again to Windows before you use Synchronization Service Manager.
➥DirSync (Directory Synchronization) is a tool for making copies of a local directory in a hybrid cloud deployment of Microsoft Exchange.DirSync works with Office 365 and Windows Azure Active Directory,removing the need for Active Directory Federation Services in many organizations.
Install Azure AD Connect on separate server.When you install Azure AD Connect on a new server,the assumption is that you want to perform a clean install of Azure AD Connect.Since you want to use the DirSync configuration,there are some extra steps to take Run the Azure AD Connect installer (MSI).
🔼After the installation of Dirsync,run miisclient.exe to create directory partitions.


As a Network Administrator you are working in your Company.You work for a company named DSR.com.The company has a single Active Directory Domain Services (AD DS) domain named DSR.com.All domain controllers in the DSR.com domain run Windows Server 2008 R2.The company has an on-premise Microsoft Exchange 2010 organization and a Lync Server 2010 environment.The company has recently purchased a Microsoft Office 365 subscription.You plan to migrate to Exchange Online and Lync Online.
The on-premise Active Directory contains many Organizational Units (OUs).
User accounts are located in multiple OUs.You have configured Directory Synchronization (DirSync) to synchronize user accounts in selected OUs to Azure Active Directory and performed an initial user account synchronization.You find some user accounts in OUs that are excluded from synchronization that need to be synchronized to Azure AD.You move the user accounts to an OU that is included in the synchronization schedule.You discover that the users are unable to log in to Office 365.You confirm that the user accounts exist in Azure AD.However,event log error messages indicate a problem with password synchronization for the moved user accounts.

Run the Set-FullPasswordSync PowerShell cmdlet and restart the Forefront Identity Manager 
Synchronization Service service.

Friday, November 9, 2018

Microsoft Azure, Cloud Administrator Details,Cloud Roles & Responsibilities.

Microsoft Azure


➽Typical day-to-day tasks of a cloud administrator:


Error log checking,Email Handling,Dashboard Creation & Monitoring.Monitoring daily site Activities,Checking Health of Website,Allocating or Providing Access etc.
➧Error Log Checking:If service is down,Check errors for cause.

➧Email Handling:Email Sent or not.

➧Dashboard Checking:Resource Monitoring(Usage)


➽What Kind of incidents or critical incidents do you receive?


Incidents might include as worst as site crash or request overflow.Sometimes slow response from Service.


➽Cloud Administrator Responsibilities:
Two Primary Responsibilities-

Configure the Cloud Management service.

Monitor and manage the services.

Installing and configuring the Cloud Management application for Azure Provider.
➤Running Discovery on the cloud resources.
➤Obtaining templates and approving templates to be used to create catalog items.
➤Defining catalog items for VMs.
➤Approving change requests associated with modifications to cloud resource.
➤Monitoring pending approvals for cloud resources.
➤View and analyze summary data on cloud resource deployments.
➤Monitoring requests and key metrics for cloud resources. 

➽How to deploy Azure Virtual Machine

SRP⇉Storage Resource Provider
CRP⇉Compute Resource Provider
NRP⇉Network Resource Provider

 Deploy Azure
Virtual Machine Resources



 Virtual Machines


➽Where to deploy new VM(Virtual Machines)

Select Virtual Machines from the navigation list.
Click on +Add
Search🔘 Windows Server Datacenter
Select a  deployment Model⦽
➖Resource Manager↷New Deployment Model
Click on Create➖

Step(1)⇓Basics:


 Step:-Basics



Step(2)⇓Choose a Size:

 Choose a Size


Step(3)⇓ Settings:

 Settings


Step(4)⇓Summary:



 Summary



➽The Virtual Provisioning Cloud Administrators group roles:-

1)itil
2)cloud_admin
3)cloud_operator
4)cloud_user


As a Cloud Administrator you are working in your Company.A physical server named DS-SQL1 runs Windows Server 2012 and SQL Server 2012. DS-SQL1 is hosted in the Datacenter.
You have an application that runs in Azure Cloud Services. The cloud service consists of two A1 virtual machine instances. The application copies data to a SQL Server database hosted on DS-SQL1. Users complain that the application runs slowly when it is copying data to DS-SQL1. You want to reduce the time it takes the application to copy data to DS-SQL1
.

SOLUTION:
 INSTANCE  CORE   RAM      TEMPORARY STORAGE      PRICE        
 A0                       1         0.75GB              20 GB                                      1.33/hr
 A1                       1         1.75GB              222 GB                                    5.29/hr
 A2                       2        3.50GB              490 GB                                   10.58/hr
 A3                       4        7.00GB             1000 GB                                 21.16/hr
 A4                       8       14.00GB            2040 GB                                 42.11/hr

➧Deploy the application as two A3 instances.


As a Cloud Administrator you are working in your Company.The company has a web application hosted in Microsoft Azure cloud services. You have one cloud service named DSRCorpService. Two instances of the service host the web application with a role named DSRCorpWebRole.You want to increase the instance count of the cloud service to cope with increased web application demand.

SOLUTION:
➧Set-Azure Role⏬
Set the number of instances of an Azure role to run,The Set-Azure Role cmdlet Sets the number of instances of a specified role to role in an Azure deployment.


As a Cloud Administrator you are working in your Company.The company has a website hosted in Microsoft Azure Websites. The website is named DS-Portal and is accessed using the URL portal.DSR.com. DS-Portal is running in the shared tier hosting plan.
Portal.DSR.com is used by all company users.Users complain that the portal website runs slowly during peak usage times.You need to configure the website to prevent it slowing down during peak usage times.

SOLUTION:
Three types of Tier:-
Presentation tier:The user Interface or the client application.
Business Logic tier:The application Server.
Data Storage tier:The Database Server.
➧Modify the tier of the Website.
➧Enable automatic scaling based on CPU utilization.



As a Cloud Administrator you are working in your Company.The company has virtual machines running in an on-premise virtual environment and in Microsoft Azure.The on-premise virtual environment consists of virtual machines (VMs) running on Windows server2012 Hyper-V host servers.An on-premise VM named DS-App1 runs a custom application that is used by company employees.You want to host DS-App1 in Microsoft Azure.

SOLUTION:
Upload a  VHD File from an on-Premise Computer to a blob in a cloud storage account in Azure.
➧Add-Azure VM Image



As a Cloud Administrator you are working in your Company.The company has offices in America,Hongkong and France. Each office has a data center. All three offices are connected by a Multi-Protocol Label Switching (MPLS) network. The company has a Microsoft Azure subscription.You want to create a connection between Azure and the three offices by connecting Azure to your MPLS network.

SOLUTION:
Microsoft Azure Express Route lets you extend you on-premises network into the Microsoft cloud over a private connection facilitated by a connectivity provider with Express Route,You can establish connections to Microsoft cloud services.Such as Microsoft Azure,Office 365, and Dynamics 365.
➧Express Route



Deploy an Azure VM using Azure CLI v 2.0

Azure CLI 1 is Node.Js application is still around to support azure service management but for new deployment going to forward definitely ones used azure CLI v 2.0.You 1st install python,then you used package manager to install azure CLI.
Suppose..
Script name deploy_linux_vm_cli.ps1
In these Script,I am using ssh-keygen to create a keypaid from myself
ssh-keygen-trsa-b 1022-c"sin@vm-azuredemo-822"-f c:/users/sin/.ssh/id_rsa-N my t@%%word1

But,You create the Key paid,Then you invoke the command line tool,With the AZ Command.










As a Cloud Administrator you are working in your Company.The company has a single Active Directory Domain Services (AD DS) domain and has 1,000 employees.The company currently has a Microsoft Exchange Server on-premises environment.The company plans to implement an Office 365 Exchange online environment in a hybrid configuration.Some mailboxes will be hosted on Exchange online and some mailboxes will be hosted on Exchange on-premises for a period of time.Eventually, all mailboxes will be migrated to Exchange online.You want users to be able to log on the Azure Active Directory (AD) by using their current Active Directory Domain Services (AD DS) user
names and passwords.

SOLUTION:
➧Directory Sync with Password Sync enabled services are the minimum system requirements
to achieve this goal.

Before you Learn how enable synchronization of password hashes.At first you know about Azure Active Directory Domain Services.
You can use these domain services without the need for you to deploy, manage, and patch domain controllers in the cloud.
Azure AD Domain Services working whether your Azure AD tenant is cloud or synced with your on-premises Active Directory.
You can use existing groups and user accounts to secure access to resources, thus ensuring a smoother of on-premises resources to Azure Infrastructure Services.

If you are using Azure AD Domain Services,Four benefits are there:-
1)Simple 
2)Integrated
3)Compatible
4)Cost-effective

Before you begin:-
1)To complete the configure basic settings.
2)To complete the configure network settings.
3)To complete the configure administrative group and enable Azure AD Domain Services.
4)To complete the update DNS settings for the Azure virtual network.
5)Enable password hash synchronization to Azure Active Directory Domain Services


As a Cloud Administrator you are working in your Company.You have a Windows Azure cloud service named DS-CLSrv1.You are configuring a virtual machine (VM) named AppVM1 in the DS-CLSrv1 cloud service. AppVM1 will host a custom application. An on premise server named DS-HV01 runs Windows Server Hyper-V. DS-HV01 hosts a virtual machine (VM) named AppVMData. An application running on AppVMData needs to send data to AppVM1 using TCP port 8080.

SOLUTION:
➧You Should add an endpoint to AppVM1.
To Know about Endpoint Details. You go all Endpoint Keywords:
Endpoint Address
endpoint attribute
WS_ENDPOINT_ADDRESS
Endpoint Identity
Finding Endpoints
_WS_SERVICE_ENDPOINT
Custom Means🔽
Custom Software/Application development is the designing of software application for a specific user or group of users within an organization.
On-Premise🔽
On-Premise software is installed locally on a company's own computers and servers.



As a Cloud Application Administrator you are working in your Company.You work for a company named DSR.com.The company has an Azure Active Directory (Azure AD) tenant.The company has a development department.Developers have created a new application that will be used by company employees and customers.You plan to host the application in Azure.You need to ensure that the application can read and write data such as users and groups in the Azure AD.

SOLUTION:
Read and Write directory data you assign to the application.



As a Cloud Application Administrator you are working in your Company.You work for a company Azure subscription named DSR.com.The company uses Azure Active Directory Premium and the Application Access Panel.You are configuring access to a Software as a Service (SaaS) application.You need to ensure that the sales team lead is able to manage user access to the application but is unable to modify administrative access to the application.In the Azure portal, what should you do?




70-535, 70-533, 70-532

The Microsoft Azure Features,Services and Capabilities continue to expand.The Azure Certification exam(Like 70-535, 70-533, 70-532).Get Certified to build and update skills on a Specific Technology.Get Certified to distinguish themselves from other professionals,improve job opportunities.

➽Future job role

Azure Administrator certifications that are better tailored towards the skills that more Administrators managing Azure Infrastructure are able to master.
These Microsoft Azure Certification changes are just starting with this Azure Administrator focus that was recently announced.come. Perhaps we’ll find out more information about any additional exams and tracks as we get closer in time to the Microsoft Ignite 2018 conference when they plan to release these Azure Administrator exams out of Beta.

➽You'll Learn To:

1)Setup Azure Virtual Machines(VMs).
2)Automate Azure workloads.
3)Migrate Workloads to Azure.
4)Deploy and manage Azure applications.
5)Work with databases in Azure.
6)Setup virtual machines(VMs).

SYSTEMS ADMINISTRATOR

SYSTEMS ADMINISTRATOR ➽ As a Systems Administrator you are working in your Company.You work for a company named DSR.com.Your role of Syst...