Friday Mail Sack: Goat Riding Bambino Edition
Hi folks, Ned here again. I’m trying to get back into the swing of having a mail sack every week but they can be pretty time consuming to write (hey, all this wit comes at a price!) so I am experimenting with making them a little shorter. This week we talk AD PowerShell secrets, USMT and Profile scalability, a little ADUC and DFSR, and some other random awesomeness.
- Get-ADComputer and IP lookups
- USMT profile migration limits
- DSA.MSC and finding computers
- DFSR read-only disconnection
- Other things
Question
Can you explain how the AD PowerShell cmdlet Get-ADComputer gets IP information? (ex: Get-ADComputer -filter * -Properties IPv4Address). Properties are always AD attributes, but I can not find that IPv4Address attribute on any computer object and even after I removed the A records from DNS I still get back the right IP address for each computer.
Answer
That’s an excellent question and you were on the right track. This is what AD PowerShell refers to as an ‘extendedAttribute’ internally, but what a human might call a ‘calculated value’. AD PowerShell special-cases a few useful object properties that don’t exist in AD by using other LDAP attributes that do exist, and then uses that known data to query for the rest. In this case, the dnsHostName attribute is looked up normally, then a DNS request is sent with that entry to get the IP address.
Even if you removed the A record and restarted DNS, you could still be returning the DNS entry from your own cache. Make sure you flush DNS locally where you are running PowerShell or it will continue to “work”.
To demonstrate, here I run this the first time:
Which queries DNS right after the powershell.exe contacts the DC for the other info (all that buried under SSL here, naturally):
Then I run the identical command again – note that there is no DNS request or response this time as I’m using cached info.
It still tells me the IP address. Now I delete the A record and restart the DNS service, then flush the DNS cache locally where I am running PowerShell, and run the same PowerShell command:
Voila! I have broken it. :)
Question
Is there is a limit on the number of profiles that USMT 4.0 can migrate? 3.01 used to have problems with many (20+) profiles, regardless of their size.
Answer
Updated with new facts and fun, Sept 1, 2011
Yes and no. There is no limit real limit, but depending on the quantity of profiles and their contents, combined with system resources on the destination computer, you can run into issues. If possible you should use hardlink migration, as that as fast as H… well, it’s really fast.
To demonstrate (and to show erstwhile USMT admins a quick and dirty way to create some stress test profiles):
1. I create 100 test users:
2. I log them all on and create/load their profiles, using PSEXEC.EXE:
3. Copy a few different files into each profile. I suggest using a tool that creates random files with random contents. In my case I added a half dozen 10MB files to each profile’s My Documents folder. You can’t use the same files in each profile, as USMT is smart enough to reuse them and you will not get the real user experience.
4. I run the harshest, slowest possible migration I can, where USMT writes to a compressed store on a remote file share, with AES_256 encryption, from an x86 Windows 7 computer with only 768MB of RAM, while cranking all logging to the max:
This (amazingly, if you ever used USMT 3.01) takes only 15 minutes and completes without errors. Loadstate memory and CPU isn’t very stressful (in one test, I did this with an XP computer that had only 256MB of RAM, using 3DES encryption).
5. I restore them all to another another computer – here’s the key: you need plenty of RAM on your destination Windows 7 computer. If you have 100 profiles that all have different contents, our experience shows that 4GB of RAM is required. Otherwise you can run out the OS resources and receive error “Close programs to prevent information loss. Your computer is low on memory. Save your files and close your programs: USMT: Loadstate”. More on this later.
This takes about 30 minutes and there are no issues as long as you have the RAM.
6. I bask in the turbulence of my magnificence.
If you do run into memory issues (so far we’ve only seen it with one customer since USMT 4.0 released more than two years ago), you have a few options:
a. Validate your scanstate/loadstate rules – despite what you may think, you might be gathering all profiles and not just fresh ones. Review: https://blogs.technet.com/b/askds/archive/2011/05/05/usmt-and-u-migrating-only-fresh-domain-profiles.aspx. Hopefully that cuts you down to way fewer than 100 per machine. Read that post carefully, there are some serious gotchas: such as once you run scanstate once on a computer, all profiles are made fresh afterwards for any subsequent scanstate runs. The odds that all 100+ profiles are actually active is pretty unlikely.
b. Get rid of old XP profiles with DELPROF before using USMT at all. This is safer than UEL, as like I mentioned, once you run scanstate that’s it – it has to work perfectly on the first try, as all profiles are now “fresh”. (On Vista+ you instead use https://support.microsoft.com/kb/940017, as I’m sure you remember)
c. Get more RAM.
Question
Is it possible in DSA.MSC to have the Find: Users, Contacts, and Groups default to finding computers or include computers with the user, contacts, and groups? Is there a better way to search for computers?
Answer
The Find tool does not provide for user customization – even starting it over without closing DSA.MSC loses your last setting. ADUC is a cruddy old tool, DSAC.EXE is the (much more flexible) replacement and it will do what you want for remembering settings.
There are a few zillion other ways to find computers also. Not knowing what you are trying to do, I can’t recommend one over the other; but there’s DSQUERY.EXE, CSVDE.EXE, many excellent and free 3rd parties, etc.
Question
If I delete or disable the outbound connection from a writable DFSR replicated folder, I get warning that the “topology is not fully connected”. Which is good.
But if that outbound connection is for a read-only replica, no errors. Is this right?
Answer
It’s an oversight on our part. While technically nothing bad will happen in this case (as read-only servers - of course - do not replicate outbound), you should get this message in all cases (There are also 6020 and 6022 DFSR warning events you can use to track this condition). A read-only can be converted to a read-write, and you will definitely want an outbound connection for that.
We’re looking into this; in the meantime, just don’t do it anywhere. :)
Other Things
- Cubs-Red Sox this weekend. This is their first meeting since 1918, and there is a lot of interesting history between the teams. The least we can do is help the Sox to a three game winning streak… >_<
Just to make myself feel better: “Little roller up along first. Behind the bag! It gets through Buckner!”
- If you have parents, siblings, children away at college, nephews, cousins, grandparents, or friends, we have the newest weapon in the war on:
-
- Malware
- Your time monopolized as free tech support
Yes, it’s the all new, all web Microsoft Safety Scanner. It even has a gigantic button, so you know it’s gotta be good. Make those noobs mash it and tell you if there are any problems while you go make a sandwich.
- Finally: thank goodness my wife hasn’t caught this craze yet. She has never met a shoe she didn’t buy.
Have a nice weekend folks.
Ned “86 years between championships? That’s nothing… try 103, you big babies!” Pyle
Comments
Anonymous
May 21, 2011
The comment has been removedAnonymous
May 21, 2011
Thanks Marin. :)Anonymous
May 23, 2011
DSAC may be 'the new hotness' but it is slow to load and doesn't snap into MMCs. That said, why is it so difficult to find documentation/samples for extending ADAC on MSDN?Anonymous
May 23, 2011
Yep - if you haven't noticed, MMCs are declining in popularity within the OS. It's a Catch-22: until ADAC becomes more popular, no one is writing documentation about extensions. Without documentation of extensions, it's harder for ADAC to become more popular as those DLLs fill in customer needs. Regardless, I am going to bring this up again and see if we can get some better docs released - it's good feedback gallwapa.Anonymous
May 24, 2011
The comment has been removed