-
-
This weeks reading for the self study group is:
| 11.2 Configuring the Global Catalog and Application Directory Partitions | 9 | 45 |
| 11.3 Configuring Replication | 24 | |
| 12.1 Understanding Domain and Forest Functional Levels | 12 | |
-
-
For those of you within the 70-620 Study group or for that matter anyone who is looking to pass this exam.
Ucertify is offering a 30 free practice questions.
To download the practice questions go to http://www.ucertify.com/exams/Microsoft/70-620.html
-
-
What three factors should you use to decide to group server roles?
-
-
If you had two Domains, one with High Security template applied and other with Enterprise Client template applied, which workstations could only connect to the Enterprise Client template domain and not the High Security template domain?
- Windows for Workgroup
- Windows 95
- Windows 98
- Windows 98SE
- Windows NT 4 workstation
- Windows NT 4 Server
- Windows 2000 workstation
- Windows XP
- Vista
- Linux
- None of the above
Answer: None of the above
-
-
Did you know about http://www.iis.net/? it is the Official Microsoft IIS site!
-
-
SELECT DISTINCT
ARP.DisplayName0,
ARP.Publisher0,
ARP.Version0,
CS.Name0,
CS.UserName0,
WS.LastHWScan,
BIOS.SerialNumber0,
R.AD_Site_Name0
FROM
dbo.v_GS_ADD_REMOVE_PROGRAMS ARP INNER JOIN dbo.v_GS_Computer_System CS ON ARP.ResourceID = CS.ResourceID
INNER JOIN dbo.v_GS_PC_BIOS BIOS ON CS.ResourceID = BIOS.ResourceID
INNER JOIN dbo.v_R_System R ON CS.ResourceID = R.ResourceID
INNER JOIN dbo.v_GS_WORKSTATION_STATUS WS ON CS.ResourceID = WS.ResourceID
ORDER BY
ARP.DisplayName0 ASC,
CS.Name0 ASC,
WS.LastHWScan DESC
-
-
If you had two Domains, one with High Security template applied and other with Enterprise Client template applied, which workstations could only connect to the Enterprise Client template domain and not the High Security template domain?
- Windows for Workgroup
- Windows 95
- Windows 98
- Windows 98SE
- Windows NT 4 workstation
- Windows NT 4 Server
- Windows 2000 workstation
- Windows XP
- Vista
- Linux
- None of the above
-
-
Which FSMO roles does not matter if all DC are GC and Why?
Answer:
Infrastructure Role and it is not all that important because all GC will have the most up-to-date information about every object. yes you will still have one but…
-
-
Are you like me have you accidentally deleted the “All systems” collection instead of a PC? Have you wonder how to get it back?
Well after some digging and asking around, I finally determine the answer! (with being pointed in the right direction)
<Drum Roll>
Install / Reinstall the last service pack!
BTW This might work in SMS 2003 too. If you try it and it works please let me know.
-
-
Hum.. This is interesting! How would you like to get training for the 70-652 exam for free!
Rod, posted a note about getting "Clinic 5935: Introducing Hyper-V in Windows Server 2008" for free.
http://myitforum.com/cs2/blogs/rtrent/archive/2008/08/21/learn-about-hyper-v-for-free.aspx
Trika, posted a note about the 70-652 exam going live August 25ist.
http://blogs.msdn.com/trika/archive/2008/08/19/go-watch-family-guy-or-71-652.aspx
and the Prep Guide is located here
http://www.microsoft.com/learning/en/us/exams/70-652.mspx
So what is my point? Well if you read the Prep Guide you will see that the free training clinic that Rod posted is the E-learning course you need for the 70-652 exam!
So what are you waiting for? it will only cost the the price of the exam to get certified on this exam!
-
-
What is include within the Security Option section of a Security Template?
Answer:
- Setting for GUI
- Legal Notice
- Device Drivers
- Etc.
-
-
declare @olddate datetime
set @olddate=dateadd(day,-8, getdate())
select
CS.Name0 as 'Computer Name',
arp.installdate0 as 'Installed Date',
arp.displayname0 as 'Application Name',
from
dbo.v_GS_ADD_REMOVE_PROGRAMS arp,
dbo.v_GS_Computer_System CS
where
CS.resourceid = arp.resourceid
and datediff(DD,arp.installdate0, @olddate) < 8
and displayname0 not like ('%Update%')
and displayname0 not like ('%hotfix%')
and arp.installdate0 not like ('NULL')
order by
CS.Name0,
installdate0 desc
-
-
This query will display all devices (PCs, routers, etc.) that ConfigMgr / SMS knows about which are not clients.
select
Name0,
Resource_Domain_Or_Workgr0,
Operating_system_name_and0,
AD_Site_Name0,
Community_name0
from
v_R_System R
where
R.ResourceID Not in
(Select
CS.ResourceID
From
v_GS_Computer_System CS)
Order by
Name0
-
-
What is include within the Security Option section of a Security Template?
-
-
When answering this question “ How to Translate Business Requirement into Solutions?” What two step need to take place?
Answer:
- Determine the level of security required
- Translate Business requirements into Technical Solution