2014 Latest 100% Pass Guaranteed Microsoft 70-243 Exam Questions (31-40)

QUESTION 31
Note: This question is part of a series of questions that use the same set of answer choices. An answer choice may be correct for more than one question in the series. Your network contains a System Center 2012 Configuration Manager environment. Your company develops a custom hardware device and installs the device on all of the client computers in the research department. You discover that information about the device fails to appear in any inventory queries or reports. Information about other hardware devices appears in the inventory queries and reports. You need to ensure that Configuration Manager data includes information about the custom hardware device.
What should you do?

A.    Enable a default WMI class in the Hardware Inventory Classes list.
B.    Modify the Enable hardware inventory on clients setting.
C.    Add a WMI class to the Hardware inventory Classes list.
D.    Add a file name to the Software Inventory configuration.
E.    Select Collect NOIDMIF files in Hardware Inventory.
F.    Add a file name to the Hardware inventory configuration.
G.    Add a file name to Software Metering.
H.    Add a WMI class to the Sms_def.mof file.
I.    Modify the Enable software inventory on clients setting.

Answer: C
Explanation:
Adding new device/class to hardware inventory
In the hardware inventory class window click the add button
Next click the ‘Connect’ button

clip_image001[12]

Select the desired class and click ‘Edit’

clip_image001[10]

Give your new device/class a friendly name (instead of the default class name)
You can also set the unit size

 

Now you can select the properties you want to add (as you did in the previous section).

clip_image001[8]

You can see the result in the resource explorer:

clip_image001[6]

Hardware inventory works by querying Windows Management Instrumentation (WMI) for all data from certain WMI classes. WMI includes classes for operating system configuration and entities (such as user accounts), installed software, software configuration, and other objects (such as for the logged on user). These classes are supplements to hardware classes. Hardware inventory collects information about many things besides hardware. For example, it can inventory software by collecting details about programs listed in Add or Remove Programs in Control Panel or programs that have been installed using Windows Installer.
most of your inventory needs can be served by hardware inventory collection alone.

QUESTION 32
Note: This question is part of a series of questions that use the same set of answer choices. An answer choice may be correct for more than one question in the series. Your network contains a System Center 2012 Configuration Manager environment. Your company deploys a custom Application to 2,000 client computers by using Configuration Manager. The Application is not listed in Add Remove Programs. You discover that information about the Application fails to appear in the inventory queries and inventory reports- You verify that information about other Applications appear in the inventory reports. You need to ensure that Configuration Manager data includes installation information about the custom Application. What should you do?

A.    Add a file name to Software Metering.
B.    Add a WMI class to the Hardware Inventory Classes fat
C.    Add a file name to the Hardware Inventory configuration.
D.    Enable a default WMI Cass in the Hardware Inventory Classes list.
E.    Select Collect NOIDMIF files .n Hardware Inventory.
F.    Add a file name to the Software Inventory configuration.
G.    Modify the Enable hardware inventory on Cents setting.
H.    Add a WMI class to the Sms_def.mof file.

Answer: F
Explanation:
Inventory of Custom application sw, the sw is not in add remove program Add a File name to the SW Inventory configuration
Reg key for Add/remove program is :
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall If custom sw is not in Add/remove list then, wmi still has the custome app info by query another reg key: HKEY_CLASSES_ROOT\Installer\Products but safer to use sw inventory (#file inventory) Software inventory works by scanning the disks on each computer to find files and gather information about files. You can also configure software inventory to collect specific files when it finds them. Software Inventory=File Inventory.
In the Configuration Manager console, Administration, Client Settings.
Default Client Settings.Properties , Default Settings ,Software Inventory.
In the Device Settings list, configure the following values:
Enable software inventory on clients
From the drop-down list, select True.
Schedule software inventory and file collection schedule ….
Configure the client settings that you require: Path , file name xxx.exe… http://technet.microsoft.com/en-us/library/cc180952.aspx#EBAA

QUESTION 33
Note: This question is part of a series of questions that use the same set of answer choices. An answer choice may be correct for more than one question in the series. Your network contains a System Center 2012 Configuration Manager environment. Your company deploys a third-party Application to 10,000 client computers. You need to ensure that you can run a report that lists all of the client computers that ran the Application last month. What should you do?

A.    Modify the Enable hardware inventory on clients setting.
B.    Enable a default WMI class in the Hardware Inventory Classes list.
C.    Modify the Enable software inventory on clients setting.
D.    Add a file name to the Hardware Inventory configuration.
E.    Add a WMI class to the Hardware Inventory Classes list.
F.    Add a file name to the Software Inventory configuration.
G.    Add a file name to Software Metering.
H.    Add a WMI class to the Sms_def.mof file.
I.    Select Collect NOIDMIF files in Hardware Inventory.

Answer: G

QUESTION 34
Your network contains a System Center 2012 Configuration Manager environment. You need to create a report that lists all of the client computers that do not have an Application named App1 instated. Which query should you use to create the report?

A.    SELECT SYS.Netbios_Name0, ARP.DisplayName0
FROM v_R_System AS SYS INNER JOIN
v_GS_ADD_REMOVE_PROGRAMS AS ARP ON SYS.ResourceID = ARP.
ResourceID WHERE ARP.DisplayName0 NOT IN (‘App1’)
B.    SELECT SYS.Netbios_Name0 from v_R_System SYS
WHERE SYS.ResourceID IN
(SELECT SYS.ResourceID
FROM v_R_System AS SYS INNER JOIN
v_GS_ADD_REMOVE_PROGRAMS AS ARP ON SYS.ResourceID – ARP.
ResourceID. WHERE ARP.
DisplayName0 = ‘App1’)
C.    SELECT SYS.Netbios_Name0 from v_R_System SYS
WHERE SYS.ResourceID NOT IN
(SELECT SYS.ResourceID
FROM v_R_System AS SYS INNER JOIN
v_GS_ADD_REMOVE_PROGRAMS AS ARP ON SYS.ResourceID = ARP.
ResourceID WHERE ARP.
DisplayName0 = ‘App1’)
D.    SELECT SYS.Netbios_Name0, ARP.DisplayName0
FROM v_R_System AS SYS INNER JOIN
V_GS_ADD_REMOVE_PROGRAMS AS ARP ON SYS.ResourceID – ARP.
ResourceID WHERE ARP.
DisplayName0 NOT LIKE ‘App1’

Answer: A

QUESTION 35
Network contains a System Center 2012 Configuration Manager environment.
You have the following query:

Select
R.Name,
U.UserName
from
SMS_R_System R
join SMS_R_User U
on R.LastLogonUserName = U.UserName

You need to ensure that all of the client computers are listed in the query results.
Which join type should you use?
A.    LEFT
B.    FULL
C.    INNER
D.    RIGHT

Answer: A

QUESTION 36
Your network contains a System Center 2012 Configuration Manager environment.
You write the following query:

select SYS.Name from SMS_R_System SYS
join SMS_G_Syatem_ADD_REMOVE_PROGRAMS ARP
on ARP.ResourceId = SYS.ResourceId

You need to create a list of all the client computers that have a version of Visual Studio installed.
What should you add to the query?

A.    where ARP.DisplayName like “Visual Studio*”
B.    where ARP.DisplayName = “*Visual Studio*”
C.    where ARP.DisplayNarae = “%%Visual Studio”
D.    where ARP.DisplayName like “Visual studio%”

Answer: D
Explanation:
You need to use “Like” not “=” otherwise the WildCard “%” is seen as a real identifier. Better to use % compared to *. With % you would only get different versions of Visual Studio and not other applications with names starting with Visual Studio.

QUESTION 37
Your network contains a System Center 2012 Configuration Manager environment. You need to receive an email message every day that lists all non-compliant clients. What should you do?

A.    Create an alert subscription.
B.    Configure a Microsoft SQL Server Reporting Services (SSRS) report.
C.    Configure an in-console alert.
D.    Create a ConfigMgr query.

Answer: B
Explanation:
 clip_image001[4]

Configure report subscription is with the same procedure as standard SQL report service

QUESTION 38
Your network contains a System center 2012 Configuration Manager environment. The environment contains a reporting services point. A group of users is responsible for creating custom reports. The custom reports will be published. You need to identify which tools can be used to create and publish custom reports to Microsoft SQL Server Reporting Services (SSRS). Which tools should you identify? (Choose all that apply.)

A.    Report Builder
B.    Microsoft SQL Server Business Intelligence Development Studio
C.    Microsoft Access 2010
D.    Reporting Services Configuration Manager
E.    Microsoft SQL Server Management Studio

Answer: ABD
Explanation:
Configuration Manager no longer uses the reporting point; the reporting services point is the only site system role that Configuration Manager now uses for reporting. Report Builder 2.0 integration: System Center 2012 Configuration Manager uses Microsoft SQL Server 2008 Reporting Services Report Builder 2.0 as the exclusive authoring and editing tool for both model-based and SQL-based reports. Report Builder 2.0 is automatically installed when you create or modify a report for the first time.
Reports in Configuration Manager are rendered in the locale of the installed Configuration Manager console. Subscriptions are rendered in the locale that SQL Server Reporting Services is installed. Creating report by Config Manager Console, Reports, new report (wizard)

 

clip_image002[8]
QUESTION 39
Your network contains a System Center 2012 Configuration Manager environment. You create a report named Report1. Report1 is used by multiple users. Users report that it takes too long to load Report1. You need to reduce the amount of time it takes to load Report1. What should you do?

A.    Enable caching for the report.
B.    Decrease the Size of the ReportServer database.
C.    Decrease the session timeout value for the Reports website.
D.    Increase the size of the ReportServerTempDB database.

Answer: A

QUESTION 40
Your network contains a System center 2012 Configuration Manager environment. You are creating a configuration item that contains application settings for Microsoft Office 2010. You need to detect whether Office 2010 is installed before validating the configuration item. What should you do?

A.    Create a report to display all installed software.
B.    Enable Use a custom script to detect this application.
C.    Create a direct membership collection.
D.    Create an automatic deployment rule.

Answer: B
Explanation:
 clip_image002[6]

clip_image002[4]

If you want to pass Microsoft 70-243exam successfully, donot missing to read latest greatexam Microsoft 70-243 practice tests .If you can master all greatexam questions you will able to pass 100% guaranteed.

http://www.lead2pass.com/70-243.html