Practice Test MCSA:Installation ,Storage and Compute 70-740 Flashcards
You are the administrator for your company network. You have a Windows Server 2016 server.
What should you install if you want to configure the server as a multitenant RAS Gateway? A. Data Center Bridging feature
B. Network Controller server role
C. Network Policy and Access Services server role
D. Remote Access server role
D. The Remote Access server role provides connectivity through DirectAccess, VPNs, and Web Application Proxies (WAPs). DirectAccess provides an Always On and Always Man- aged experience. Remote Access provides VPN access, including site-to-site connectivity.
You are the administrator for your company network. You have just installed Windows Server 2016 on a new server. It is essential that you activate Windows Server. Which of the following command-line tools can be used to activate Windows Server?
A. Cscript C:\windows\system32\slmgr.vbs -ato
B. Ocsetup C:\windows\system32\slmgr.vbs -ato C. Netdom C:\windows\system32\slmgr.vbs -ato
D. Netsh C:\windows\system32\slmgr.vbs -ato
A. The correct answer is Cscript C:\windows\system32\slmgr.vbs –ato. Cscript will start a script so that it runs in a command-line environment. The –ato parameter command prompts Windows to try to do an online activation.
You are the administrator for your company network. With Nano Server some packages are installed directly with their own PowerShell switches (such as -Compute), whereas others are installed by passing package names using the -Packages parameter that can combine in a comma-separated list. If you want to add Internet Information Services (IIS) to your Nano Server, what command should you use? A. -Compute B. -Containers C. -Packages D. -Storage
C. You can install the Internet Information Services (IIS) server role on Nano Server by using -Packages Microsoft-NanoServer-IIS-Package. The NanoServer folders contain a .wim image and a subfolder called Packages. The Packages subfolder is needed when you want to add server roles and features to the image.
You are the administrator for your company network. You have a Windows Server 2016 Nano Server machine with no packages installed. You decide to attach a new disk. You also plan to initialize the disk as a GUID Partition Table (GPT) disk. First you want to create a ReFS-formatted volume on the new disk. What should you do?
A. From the physical server, log on to the Nano Server Recovery Console.
B. Install the Microsoft-NanoServer-Host-Package package.
C. Install the Microsoft NanoServer-Storage-Package package.
D. Run the Format-Volume cmdlet and specify the -FileSystem switch.
D. The Format-Volume cmdlet formats one or more existing volumes or a new volume on an existing partition, and the –FileSystem switch specifies the filesystem with which to format the volume. The acceptable values for this parameter are NTFS, ReFS, exFAT, FAT32, and FAT.
You are the administrator for your company network. You have two Windows Server 2016 servers named ServerA and ServerB, and there is a firewall between the two servers. Both servers run Windows Server Update Services (WSUS). ServerA downloads updates using Windows Update. What port should be open on the firewall if ServerB must synchronize updates from ServerA?
A. 80 B. 443 C. 3389 D. 8530
D. By default, Windows Firewall will be running on the WSUS server; when you installed WSUS, it automatically configured two inbound rules called WSUS that allow both ports TCP 8530 and 8531.
You are the administrator for your company network. Your network contains an Active Directory domain. There is a company policy in place that states that new servers should run Nano Server whenever possible. What server role can be deployed on a Nano Server?
A. Active Directory Domain Services (AD DS) B. DHCP Server
C. Network Policy and Access Services
D. Web Server (IIS)
D. A Nano Server cannot run Active Directory Domain Services (AD DS), Network Policy and Access Services, or a DHCP server. The recommended role is IIS Web Server. The Web Server (IIS) role in Windows Server 2016 allows an administrator to set up a secure, easy- to-manage, modular, and extensible platform for reliably hosting websites, services, and applications.
You are the administrator for your company network. You have a Windows Server 2016 server named ServerA. The server has an application named AppA, which writes entries to the Application event log when errors are encountered. The events have IDs of either 111 or 112.
You want to restart the service whenever one of these events is logged. What should you do?
A. Create a custom view that has a filter for the event IDs from Event Viewer.
B. Run the Get-SMServerEvent cmdlet and pipe the output to the Start-NetEvent using
PowerShell.
C. Run the Write-Eventlog cmdlet and specify the -EventID parameter using PowerShell.
D. Use Create Task to create one task that includes triggers for both event IDs from Task Scheduler.
C. The Write-EventLog cmdlet writes an event to an event log. To write an event to an event log, the event log must exist on the computer and the source must be registered for the event log. The –EventID switch specifies the event identifier. This parameter is required.
You are the administrator for your company network. You have a Windows Server 2016 server named ServerA, which has Windows Defender enabled. ServerA runs an applica- tion named AppA that stores different types of files in Microsoft OneDrive and Microsoft SharePoint Online. AppA also interacts with several local services. You need to prevent Windows Defender from scanning any files opened by AppA. What should you do on ServerA?
A. Configure a process exclusion in the Windows Defender settings. B. Modify the real-time protection settings in Windows Defender.
C. Modify the cloud-based protection settings in Windows Defender.
D. Run the New-AppLockerPolicy cmdlet
C. Windows Defender offers improved security using cloud-based antivirus protection. When enabled, Windows Defender sends information to Microsoft about any problems it finds. This information is then used to gather more information about the problems affect- ing you and other users. This can be enabled and disabled. The cloud-based protection is also turned on by default and it provides real-time protection when Windows Defender sends information to Microsoft about potential security threats.
You are the administrator for your company network. You have a Windows Server 2016 server named ServerA. The Windows Server 2016 installation media is mounted as Drive E. You copy the NanoServerImageGenerator folder from the E:\NanoServer folder to the C:\NanoServer folder. You create a custom Nano Server image that includes the Hyper-V server role. What two commands should you run if you want this image to be used to deploy Nano Servers to physical servers? (Choose two.)
A. New-NanoServerImage –Edition Standard –DeploymentType Guest –MediaPath E:-TargetPath \NanoServerImage\NanoServer.wim -Compute
B. Install-PackageProvider NanoServerPackage
C. Import-PackageProvider NanoServerPackage
D. New-NanoServerImage –Edition Standard –DeploymentType Host –MediaPath E:\ -TargetPath \NanoServerImage\NanoServer.wim -Compute
E. Import-Module C:\NanoServer\NanoServerImageGenerator
D, E. You must import the module for NanoServerImage generation, and then use the New-NanoServerImage command to create the new image. The New-NanoServerImage cmdlet makes a local copy of the necessary files from the installation media and converts the included Nano Server Windows image (.wim) file into a VHD or VHDX image, or reuses the existing .wim file. It then makes a copy of the converted VHD or VHDX image in the specified path. The -Edition parameter specifies the edition of the operating system. Valid values are Standard and Datacenter. The -DeploymentType parameter specifies the type of Nano Server deployment image. Valid values are Guest and Host. The -MediaPath parameter specifies the path of the source media. The -TargetPath parameter specifies the path of the final, modified image. The -Computer parameter indicates that this operation adds the Compute package. The Import-Module cmdlet adds one or more modules to the current session. The modules that you import must be installed on the local computer or a remote computer.
Youaretheadministratorforyourcompanynetwork.Yourcompanyhastwomainoffices. One is located in Atlanta and the other in Dallas. All servers at both locations run Windows Server 2016. In the Dallas office, there is a Distributed File System (DFS) server named DFS1. DFS1 has a folder named FolderA that contains large Windows image files. In the Atlanta office, you deploy a DFS server named DFS2, and you then replicate FolderA to DFS2. After several days, you notice that the replication of certain files failed to complete. What should you do if you need to ensure that all of the files in FolderA can replicate to DFS2?
A. Create a quota for FolderA using File Server Resource Manager (FSRM). B. Modify the disk quota on the drive that contains FolderA.
C. Modify the size of the staging area on FolderA.
D. Run dfsutil /purgemupcache from a command prompt.
C. Distributed File System Replication (DFSR) staging is a hard drive area that is used for files that need to be replicated from one DFS server to other DFS servers. If the files that you are trying to replicate are larger than your assigned staging area, the replication will fail. When this happens, you must increase the amount of space used in the staging area.
You are the administrator for your company network. You have a Windows Server 2016 server named ServerA. The server contains a storage pool named PoolA. PoolA contains five physical disks named DiskA, DiskB, DiskC, DiskD, and DiskE. A virtual disk named VD1 is stored in PoolA. VD1 uses the parity storage layout. Which two commands should you run if you need to remove DiskC after it fails from PoolA? (Choose two.)
A. Set-PhysicalDisk-FriendlyName DiskC -Usage Retired
B. Set-ResiliencySetting-StoragePool PoolA-PhysicalDiskRedundancyDefault 4 C. Remove-PhysicalDisk-FriendlyName DiskC
D. Update-StoragePool-FriendlyName PoolA
E. Reset-PhysicalDisk-FriendlyName DiskC
B, C. The Remove-PhysicalDisk cmdlet removes a physical disk from a specified storage pool. The Set-ResiliencySetting cmdlet modifies the properties of the specified resil- iency setting name.
You are the administrator for your company network. You have two Windows Server 2016 servers named ServerA and ServerB. ServerA contains a volume named Vol1. You decide to implement a Storage Replica that replicates the content of Vol1 from ServerA and ServerB. One day, ServerA fails. You need to ensure that you can access the contents of Vol1. What should you run from ServerB?
A. Clear-FileStorageTier B. Set-SRPartnership
C. Update-StoragePool
D. vssadmin revert shadow
B. The Set-SRPartnership command modifies a replication partnership between two rep- lication groups. You can use this cmdlet to add replicated volumes, and you can also change the direction of replication, which makes a source volume into a destination volume.
You are the administrator for your company network. The network contains an Active Directory domain. The domain contains a new file server named ServerA that runs a Server Core installation of Windows Server 2016. ServerA has an ReFS-formatted volume D: and NTFS-formatted volume E:. The volumes do not contain any data. You install the Data Deduplication role service on ServerA. What PowerShell cmdlet should you run if you want to implement Data Deduplication for volumes on D: and E:?
A. Format-Volume D: -FileSystem EXFat and Enable-DeDupVolume -Volume D:,E: B. Format-Volume E: -FileSystem ReFS and Enable-DeDupVolume -Volume D:,E: C. Enable-DeDupVolume-Volume D:,E:
D. Enable-DeDupVolume-Volume E: D:
B. The Format-Volume cmdlet formats one or more existing volumes, or a new volume on an existing partition. This cmdlet returns the object representing the volume that was just formatted, with all properties updated to reflect the format operation. The Enable-DeDupVolume cmdlet enables Data Deduplication on one or more volumes.
You are the administrator for your company network. The network contains an Active Directory domain. The domain contains two servers named ServerA and ServerB, each with the same hardware configuration. You need to asynchronously replicate volume E: from ServerA to ServerB. What should you do?
A. Install the Failover Clustering feature and create a new cluster resource group. B. Install the Failover Clustering feature and use Cluster Shared Volumes (CSV). C. Run New-SRPartnership and specify the –ReplicationMode parameter.
D. Run Set-DfsrServiceConfiguration and specify the –RPCPort parameter.
C. The New-SRPartnership cmdlet creates a replication partnership between two new or existing replication groups. This cmdlet can create the complete replication topology. It can also tie together separately created replication groups. The -ReplicationMode parameter specifies the desired mode of replication for this source and destination pair. The acceptable values for this parameter are:
■■ Synchronous or 1—The synchronous mode requires all writes to commit on the destina- tion server and on the source server, which guarantees data integrity between computers. This is the default value.
■■ Asynchronous or 2—The asynchronous mode writes to the source server without wait- ing for the destination server, which allows for replication over high-latency, geographic networks.
You are the administrator for your company network. You have client computers that run Windows Server 2016. Each computer has two hard drives. Which kind of volume should you create if you need to create a dynamic volume on each computer that will maximize write performance as well as provide data fault tolerance? A. Mirrored volume B. RAID 5 volume C. Spanned volume D. Striped volume
A. A mirrored volume duplicates data across two disks. This type of volume is fault toler- ant because if one drive fails, the data on the other disk is unaffected.
You are the administrator for your company network. You want to remove the host from the iSNS server. What command should you use to remove the host? A. iscsicli addisnsserver B. iscsicli listisnsservers C. iscsicli refreshisnsserver D. iscsicli removeisnsserver
D. The iscsicli removeisnsserver command removes the host from the iSNS server. The iscsicli addisnsserver command manually registers the host server to an iSNS server. refreshisnsserver refreshes the list of available servers. listisnsservers lists the available iSNS servers.
You are the administrator for your company network. A user, Sandy, is a member of both the Human Resources and Marketing departments. There is a shared folder called App1 that everyone uses. The current permissions on the App1 shared folder are:
Group/User. NTFS Shared
Sales Read Deny
Marketing Modify Full Control
R&D. Read Read
Human Resources Full Control Deny
Admin Full Control Change
What will Sandy’s local and remote permissions be when she logs into the App1 folder?
A. Local = Full Control and Remote = Deny
B. Local = Deny and Remote = Deny
C. Local = Full Control and Remote = Change
D. Local = Change and Remote = Read
A. Permissions are additive among themselves. This means you get the highest level of per- missions. But when the two permissions meet, the most restrictive set of permission applies. In this question, the NTFS side would be Full Control (this would be the local permission) and the Shared permission would be Deny. But when the two permissions meet, the most restrictive, Deny, would apply.
You are the administrator for your company network. You have a computer that has a 1 TB volume named D. What tool should you use if you want to receive a notification when the volume has less than 100 GB of free space left? A. Disk Cleanup B. Event Viewer C. Performance Monitor D. Resource Monitor E. System Configuration
C. The Microsoft Windows Performance Monitor is a tool that administrators can use to examine how programs running on their computers affect the computer’s performance. The tool can be used in real time and can also be used to collect information in a log to analyze the data at a later time. With Performance Monitor, you can set up counter logs and alerts.
You are the administrator of your company network. You have a computer that runs Windows Server 2012 R2. You create a system image backup on the computer and then upgrade to Windows Server 2016. You need to access a file from the backup. Your solution must use the least amount of administrative effort. What should you do?
A. From the Backup section of the Settings app, add a drive.
B. From the File History section of the Settings app, add a drive.
C. From the Computer Management console, attach a VHD.
D. From the File History Control Panel item, restore the personal files.
C. Virtual Hard Disk (VHD) is a file format that represents a virtual disk drive. A VHD can be used to store virtual disk data in files that can be easily transferred from one com- puter to another. It contains what is found on a physical HDD, such as disk partition and filesystem. Once attached, they can be treated like physical disks and you can use them to store data. To attach the VHD, you would use the Computer Management console.
You are the administrator for your company network. You decide to purchase a new com- puter that has four external USB hard drives. You want to create a single volume by using all the USB drives. You want the volume to be expandable, portable, and resilient in the event of failure of an individual USB hard drive. What should you do so you can create the required volume?
A. Create a new spanned volume.
B. Create a new striped volume.
C. Create a new Storage Space across the four USB hard drives and set the resiliency type to three-way mirror.
D. Create a new Storage Space across the four USB hard drives and set the resiliency type to parity
D. Storage Spaces can combine multiple hard drives into a single virtual drive. To create a Storage Space, you need to connect two or more internal or external drives to the computer to create a storage pool. When the drive begins to fill up and nears the physical limit, Win- dows will display a notification prompting you to add additional physical Storage Space. Selecting the Parity resiliency type allows Windows to store parity information with the data, thereby protecting you from a single drive failure.