There is a group policy available which can do this:
The page says disable, but an option within the GP is to simply prefer IPv4, which can solve a lot of problems straightforwardly.
There is a group policy available which can do this:
The page says disable, but an option within the GP is to simply prefer IPv4, which can solve a lot of problems straightforwardly.
Good links here:
http://www.heidoc.net/joomla/technology-science/microsoft/14-windows-7-direct-download-links
The Windows USB/DVD Download Tool may also be rather handy.
Windows Firewall is required, if network-shared printers are to be used, in Server 2008 R2 and Windows 7. See here:
http://support.microsoft.com/kb/2123653
But there are still many instances where Windows Firewall gets in the way. In these cases, set up a Group Policy for Windows Firewall with Advanced Security:
Computer Configuration,
Policies,
Windows Settings,
Security Settings,
Windows Firewall with Advanced Security,
Windows Firewall with Advanced Security – LDAP://cn={GUID},cn=….
and Allow all connections both inbound and outbound. That way the APIs all run, but no interferences.
Something new from Microsoft:
Some new steps:
Here’s how to replace a self-signed Exchange certificate in the Exchange Shell.
First get the list with details:
Get-ExchangeCertificate | fl
You’ll see all of the certs, with expiration dates (“NotAfter”) and thumbprints. For each one that you need to replace, do this:
Get-ExchangeCertificate -thumbprint <thumbprintcontents> | New-ExchangeCertificate
Then say Yes.
Excellent documentation here:
http://blogs.technet.com/b/sbs/archive/2011/09/22/how-to-recreate-the-sbsmonitoring-database.aspx
NET USE does not appear to be able to set a user’s password to non-expiring. However, we do have this:
WMIC USERACCOUNT WHERE "Name='username'" SET PasswordExpires=FALSE