Download Free Microsoft 70-243 PDF and VCE Updated Today 31-40
Vendor: Microsoft
Exam Code: 70-243
Exam Name: Administering and Deploying System Center 2012 Configuration Manager
Version: 14.81
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
Select the desired class and click ‘Edit’
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).
You can see the result in the resource explorer:
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
Explanation:
http://technet.microsoft.com/en-us/library/gg682005.aspx
Introduction to Software Metering in Configuration Manager
Use software metering in System Center 2012 Configuration Manager to monitor and collect software usage data from Configuration Manager clients.
To collect this usage data, configure software metering rules or use the Configuration Manager inventory to generate these rules automatically. Client computers evaluate these rules and collect metering data to send to the site.
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: C
Explanation:
SELECT computer name FROM table v_R_System (SQL Syntax)
WHERE resource ResourceID is NOT IN
Add Remove Programs WHERE DisplayName0 = ‘App1’
http://www.w3schools.com/sql/sql_join_inner.asp
SQL INNER JOIN Keyword
The INNER JOIN keyword returns rows when there is at least one match in both tables.
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
Explanation:
http://www.w3schools.com/sql/sql_join_left.asp
SQL LEFT JOIN Keyword
The LEFT JOIN keyword returns all rows from the left table (table_name1), even if there are no matches in the right table (table_name2).
Further information:
http://www.w3schools.com/sql/sql_join_full.asp
SQL FULL JOIN Keyword
The FULL JOIN keyword return rows when there is a match in one of the tables.
http://www.w3schools.com/sql/sql_join_inner.asp
SQL INNER JOIN Keyword
The INNER JOIN keyword returns rows when there is at least one match in both tables.
http://www.w3schools.com/sql/sql_join_right.asp
SQL RIGHT JOIN Keyword
The RIGHT JOIN keyword returns all the rows from the right table (table_name2), even if there are no matches in the left table (table_name1).
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: C
Explanation:
http://myitforum.com/myitforumwp/2012/06/26/client-health-check-in-configmgr-2012in-actionpart-2/
Client Health Check in ConfigMgr 2012–In Action–Part 2
Over here, we can clearly see that it failed to verify if the SMS Agent Host Service exists and it failed with error code 5 (Access Denied). Other than this, we can also see that few other evaluation tasks did not run because the tasks they were dependent on failed.
Once this evaluation was complete, I checked the ConfigMgr Console to see what all is shown over there. So we go to ConfigMgr Console > Monitoring > Client Status > Client Check. Over here we get graphical view which gives summary of Client Checks.
So now, I can see that there is 1 machine which failed the Client Check. if we click on the Red/Green Area of the graph, it takes us to a Temporary Monitoring Collection. I clicked on the Red Area and it took me to a collection named “Clients that failed client check from “All Desktop and Server Clients”
So we can see that there is one machine which failed the Client Check. At the bottom on the screen, I clicked on Client Check Detail Tab
So now, I can see that “Verify SMS Agent Host service exists” task failed with the error “Access is Denied” and this caused 3 other evaluation tasks to fail because they were dependent on the first task. Pretty Nice Thing!!
We can even configure alerts based on Client Checks. For this, I opened the properties of the collection my client is a part of and went Alerts Tab.
Click on Add
I selected the option “Client check pass or no results for active clients falls below threshold (%)”. After clicking OK it took me back to the Properties of the Collection.
Now, we get an option to select the Severity of the Alert and SLA. I selected “Warning” as he Severity and 90 as the SLA. So whenever the Client Check Fail Percentage falls below 90%, I’ll get an alert in the console. Now, if we go to Monitor > Alerts. We can see that an alert has been created.
Further information:
http://technet.microsoft.com/en-us/library/hh427334.aspx
Configuring Alerts in Configuration Manager
Alerts in System Center 2012 Configuration Manager are generated by some operations when a specific condition occurs. Typically, alerts are generated when an error occurs that you must resolve. Additionally, an alert might be generated to warn you that a condition exists so that you can continue to monitor the situation. You can configure alerts for some Configuration Manager operations, such as Endpoint Protection and client status, whereas some alerts are configured automatically. Additionally, you can configure subscriptions to alerts for client status and Endpoint Protection that will be emailed to you.
Personal comment:
"Create an alert subscription." is not a correct answer because it only reffers to e-mailing alerts.
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:
A: http://technet.microsoft.com/en-us/library/hh213578.aspx
B: http://en.wikipedia.org/wiki/Business_Intelligence_Development_Studio
D: http://technet.microsoft.com/en-us/library/ms156305.aspx
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
Explanation:
Report caching can shorten the time it takes for a user to retrieve a report, particularly if the
report is large or accessed frequently. When a report is requested, a query is sent to the database, an intermediate form of the report is cached on the report server, and the final
report is rendered to the end user. Report caching forces the intermediate version of the
report to be cached on the report server and provides a more consistent user experience
with a reduced load on the database.
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:
Create Configuration Item Wizard
If you want to pass Microsoft 70-243 exam successfully, donot missing to read latest lead2pass Microsoft 70-243 dumps.
If you can master all lead2pass questions you will able to pass 100% guaranteed.
http://www.lead2pass.com/70-243.html
Why Choose Lead2pass?
If you want to pass the exam successfully in first attempt you have to choose the best IT study material provider, in my opinion, Lead2pass is one of the best way to prepare for the exam.
Lead2pass | Testking | Pass4sure | Actualtests | Others | |
$99.99 | $124.99 | $125.99 | $189 | $29.99-$49.99 | |
Up-to-Dated | ✔ | ✖ | ✖ | ✖ | ✖ |
Real Questions | ✔ | ✖ | ✖ | ✖ | ✖ |
Error Correction | ✔ | ✖ | ✖ | ✖ | ✖ |
Printable PDF | ✔ | ✖ | ✖ | ✖ | ✖ |
Premium VCE | ✔ | ✖ | ✖ | ✖ | ✖ |
VCE Simulator | ✔ | ✖ | ✖ | ✖ | ✖ |
One Time Purchase | ✔ | ✖ | ✖ | ✖ | ✖ |
Instant Download | ✔ | ✖ | ✖ | ✖ | ✖ |
Unlimited Install | ✔ | ✖ | ✖ | ✖ | ✖ |
100% Pass Guarantee | ✔ | ✖ | ✖ | ✖ | ✖ |
100% Money Back | ✔ | ✖ | ✖ | ✖ | ✖ |