Failed to getSSOToken after second connection in one JVM

I met a problem when connected to two hosts to getSSOToken. I can get the SSO token in the first connection but failed in the second connection. And during the second connection, login succeeded, but failed to getSSOToken from AuthContext. The code is:
import com.iplanet.am.util.SystemProperties;
import com.iplanet.sso.SSOToken;
import com.sun.identity.authentication.AuthContext;
import com.sun.identity.authentication.spi.AuthLoginException;
import javax.net.ssl.*;
import javax.security.auth.callback.Callback;
import javax.security.auth.callback.NameCallback;
import javax.security.auth.callback.PasswordCallback;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.security.KeyStore;
import java.security.SecureRandom;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
public class AuthSession {
public static void main(String[] args) throws Exception {
AuthSession session1 = new AuthSession();
session1.login("IP1", "login1", "pass1");
String cookie1 = session1.getCookieId();
System.out.println("Cookie: " + cookie1);
session1.logout();
AuthSession session2 = new AuthSession();
session2.login("IP2", "login2", "pass2");
String cookie2 = session2.getCookieId();
System.out.println("Cookie: " + cookie2);
session2.logout();
private AuthContext authContext = null;
private SSOToken ssoToken = null;
private static final String NGSSO_SEC_LOGIN_MODULE = "NgssoSecLoginModule";
private static final int PORT = 58082;
private static final String COOKIE_NAME = "iPlanetDirectoryPro";
public void login(String host, String user, String pwd) throws Exception {
this.authContext = getAuthContext(host, user, pwd);
public void logout() {
try {
if (authContext != null) {
authContext.logout();
authContext.reset();
authContext = null;
} catch (AuthLoginException e) {
throw new RuntimeException(e);
public String getCookieName() {
return COOKIE_NAME;
public String getCookieId() throws Exception {
return getSSOToken().getTokenID().toString();
private SSOToken getSSOToken() throws Exception {
if (authContext != null) {
if (ssoToken == null) {
ssoToken = authContext.getSSOToken();
return ssoToken;
return null;
private static AuthContext getAuthContext(String hostname, String login, String password) throws Exception {
String url = "https://" + hostname + ":" + PORT + "/amserver/namingservice";
initProperties(password, url, hostname);
AuthContext localAuthContext = new AuthContext("/");
localAuthContext.login(AuthContext.IndexType.MODULE_INSTANCE, NGSSO_SEC_LOGIN_MODULE);
Callback[] callbacks = localAuthContext.getRequirements();
while (callbacks != null) {
NameCallback nameCallBack = null;
PasswordCallback passwordCallback = null;
for (Callback callback : callbacks) {
if (callback instanceof NameCallback) {
nameCallBack = (NameCallback) callback;
if (callback instanceof PasswordCallback) {
passwordCallback = (PasswordCallback) callback;
if (nameCallBack != null && passwordCallback != null) {
nameCallBack.setName(login);
passwordCallback.setPassword(password.toCharArray());
} else {
throw new Exception("connection failed on '" + hostname + "'");
localAuthContext.submitRequirements(callbacks);
callbacks = localAuthContext.getRequirements();
if (localAuthContext.getStatus() != AuthContext.Status.SUCCESS) {
throw new Exception("bad login/pwd on '" + hostname + "'");
return localAuthContext;
private static String getKeyStore(String password) throws Exception {
File keyStore = File.createTempFile("wskeys_", ".keystore");
keyStore.deleteOnExit();
String keyStoreFileName = keyStore.getAbsolutePath().replaceAll("\\\\", "/");
PrivateTrustManager trustManager = new PrivateTrustManager(keyStoreFileName, password);
SSLContext context = SSLContext.getInstance("SSL");
context.init(null, new TrustManager[]{trustManager}, new SecureRandom());
HttpsURLConnection.setDefaultSSLSocketFactory(context.getSocketFactory());
return keyStoreFileName;
private static void initProperties(String password, String url, final String hostname) throws Exception {
String keyFileName = getKeyStore(password);
HttpsURLConnection.setDefaultHostnameVerifier(new HostnameVerifier() {
public boolean verify(String urlHostName, javax.net.ssl.SSLSession session) {
return true;
System.setProperty("javax.net.ssl.trustStore", keyFileName);
System.setProperty("javax.net.ssl.trustStorePassword", password);
SystemProperties.initializeProperties("com.iplanet.am.naming.url", url);
SystemProperties.initializeProperties("com.iplanet.services.debug.level", "error");
SystemProperties.initializeProperties("com.iplanet.services.debug.directory","D:\\tmp");
System.setProperty("com.iplanet.am.naming.url", url);
System.setProperty("com.sun.identity.agents.app.username", "administrator");
System.setProperty("com.iplanet.am.service.password", password);
System.setProperty("com.iplanet.am.naming.failover.url","");
System.setProperty("com.iplanet.services.debug.level","error");
System.setProperty("com.sun.identity.agents.notification.enabled","false");
System.setProperty("com.iplanet.am.server.protocol", "https");
System.setProperty("com.iplanet.am.server.host", hostname);
System.setProperty("com.iplanet.am.server.port", String.valueOf(PORT));
System.getProperty("com.iplanet.am.serverMode");
private static class PrivateTrustManager implements X509TrustManager {
private String keyStoreName;
private String password;
public PrivateTrustManager(String keyStoreName, String password) {
this.keyStoreName = keyStoreName;
this.password = password;
public void checkClientTrusted(X509Certificate[] chains, String authType) {
public void checkServerTrusted(X509Certificate[] chains, String authType)
throws CertificateException {
FileOutputStream keyStoreOutputStream = null;
try {
KeyStore keyStore = KeyStore.getInstance("JKS", "SUN");
char[] storePassword = password.toCharArray();
keyStore.load(null, storePassword);
for (X509Certificate oneChain : chains) {
keyStore.setCertificateEntry("wskey", oneChain);
keyStoreOutputStream = new FileOutputStream(keyStoreName);
keyStore.store(keyStoreOutputStream, storePassword);
} catch (Exception e) {
throw new CertificateException(e);
finally {
try {
if (keyStoreOutputStream != null) {
keyStoreOutputStream.close();
} catch (IOException e) {
e.printStackTrace();
public X509Certificate[] getAcceptedIssuers() {
return new X509Certificate[0];
Does anyone have idea? Thanks a lot!

And when the java code is executed, below exception is thrown:
com.iplanet.sso.SSOException: AQIC5wM2LY4SfcwNBIUIhyedKiqTZSd+vcrG5/PD5Pir+lc=@AAJTSQACMDE=# Invalid session ID.AQIC5wM2LY4SfcwNBIUIhyedKiqTZSd+vcrG5/PD5Pir+lc=@AAJTSQACMDE=#
     at com.iplanet.sso.providers.dpro.SSOProviderImpl.createSSOToken(SSOProviderImpl.java:178)
     at com.iplanet.sso.SSOTokenManager.createSSOToken(SSOTokenManager.java:305)
     at com.sun.identity.authentication.AuthContext.getSSOToken(AuthContext.java:1071)
     at AuthSession.getSSOToken(AuthSession.java:77)
     at AuthSession.getCookieId(AuthSession.java:70)
     at AuthSession.main(AuthSession.java:36)
Exception in thread "main" com.sun.identity.common.L10NMessageImpl: Error occurred while creating SSOToken.
     at com.sun.identity.authentication.AuthContext.getSSOToken(AuthContext.java:1074)
     at AuthSession.getSSOToken(AuthSession.java:77)
     at AuthSession.getCookieId(AuthSession.java:70)
     at AuthSession.main(AuthSession.java:36)
It's strange that it can be succeeded to invoke authContext.getAuthIdentifier(), while failed to getSSOToken().getTokenID().toString().

Similar Messages

  • In oneasset class i have created 2 assets by using of aso1 after that i acquired one asset for that i run the depreciation for first 5 periods, it has been showing depreciation for those period but if i am trying to run the depreciation for second asset i

    in on asset class i have created 2 assets by using of aso1 after that i acquired one asset for that i run the depreciation for first 5 periods, it has been showing depreciation for those period but if i am trying to run the depreciation for second asset it is not showing first 5 periods why it is not showing? Is there any reason?

    Hi
    Repeat run you can do only for the last depreciation period. For the asset which you are tryin to post depreciation from July to Jan, please check the asset value date which you have given while posting the transactions or in the asset master.
    If the asset value date is in July, then deprecaition from July - Jan will get posted in the current month depreciation in total. You will not be able to post depreciation individually month wise using AFAB.
    REgards
    Malathi

  • After itunes update my ipod touch is not syncing correctly first I got error message..ipod failed to complete sync because connection was lost..now it wont sync new music

    After recent itunes update my ipod touch 4 is not syncing properly...I got error message twice "ipod failed to sync properly because connection was lost, please try again"... it continued acting weird, now when i click on "sync now" it says preparing to sync, it goes through steps quickly says sync finished but it doesnt update.. can anyone help?

    There's a good guide here on how to roll back to 10.7 https://discussions.apple.com/thread/4559563?tstart=0

  • Able to connect keyboard to only one mac ...not able to connect to my other mac at work after disconnecting the first one ...any suggestions please

    Hello,
    I am able to connect my wireless keyboard to only one mac ...not able to connect to my other mac at work after disconnecting the first one ...any suggestions please
    thanks,

    Hello:
    You will need to delete the keyboard from the other Mac.  Simply disconnecting it leaves it still paired with the first Mac.
    Barry

  • Problem with connecting ipad 2 with crestron cp2e...help plss its urgent... I hv a ipad 2 with mobile pro g connected with cp2e. when i pressed any button in ipad its connet with cp2e but after 4-5 sec one error comes (warning wifi was powered off while t

    problem with connecting ipad 2 with crestron cp2e...help plss its urgent...
    I hv a ipad 2 with mobile pro g connected with cp2e. when i pressed any button in ipad its connet with cp2e but after 4-5 sec one error comes (warning wifi was powered off while the device was in auto -lock(sleep)press connect to reconnect) when i pressed again its connected with cp2e. i am using netgear wireless access point . i also has been changed access point as well as updated ipad firmware bt problem is as it is .. pls help.

    Hi have you solved the issue ?
    Cause I have the same problem.
    Tnx

  • Client boots into WinPE but then it will fail and reboot after the step: "Preparing network connections"

    I  have a new issue with all DPs.
    When I pxe boot, it will boot into WinPE but then it will fail and reboot after the step: “Preparing network connections”
    I have tried reinstalling the DP and MP. Also redistributing the boot image.
    When I press F8 to go into debug mode, ipconfig show me an IP address and I am able to ping my Management point, my DHCP server and also my Distribution point.
    I have attached the smsts.log file.
    <![LOG[LOGGING: Finalize process ID set to 900]LOG]!><time="10:43:28.925+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="904" file="tslogging.cpp:1495">
    <![LOG[==============================[ TSBootShell.exe ]==============================]LOG]!><time="10:43:28.925+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="904"
    file="bootshell.cpp:1055">
    <![LOG[Succeeded loading resource DLL 'X:\sms\bin\x64\1033\TSRES.DLL']LOG]!><time="10:43:28.925+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="904" file="util.cpp:964">
    <![LOG[Debug shell is enabled]LOG]!><time="10:43:28.940+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="904" file="bootshell.cpp:1066">
    <![LOG[Waiting for PNP initialization...]LOG]!><time="10:43:28.940+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="908" file="bootshell.cpp:60">
    <![LOG[RAM Disk Boot Path: NET(0)\SMSIMAGES\EVN0002F\BOOT.EVN0002F.WIM]LOG]!><time="10:43:28.940+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="908" file="configpath.cpp:302">
    <![LOG[Booted from network (PXE)]LOG]!><time="10:43:28.940+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="908" file="configpath.cpp:317">
    <![LOG[Network(PXE) path: X:\sms\data\]LOG]!><time="10:43:28.940+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="908" file="configpath.cpp:319">
    <![LOG[Found config path X:\sms\data\]LOG]!><time="10:43:28.940+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="908" file="bootshell.cpp:548">
    <![LOG[Booting from removable media, not restoring bootloaders on hard drive]LOG]!><time="10:43:28.940+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="908" file="bootshell.cpp:582">
    <![LOG[X:\sms\data\WinPE does not exist.]LOG]!><time="10:43:28.940+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="908" file="bootshell.cpp:599">
    <![LOG[X:\_SmsTsWinPE\WinPE does not exist.]LOG]!><time="10:43:28.940+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="908" file="bootshell.cpp:613">
    <![LOG[Executing command line: wpeinit.exe -winpe]LOG]!><time="10:43:28.956+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="908" file="bootshell.cpp:860">
    <![LOG[The command completed successfully.]LOG]!><time="10:44:13.294+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="908" file="bootshell.cpp:942">
    <![LOG[Starting DNS client service.]LOG]!><time="10:44:13.294+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="908" file="bootshell.cpp:666">
    <![LOG[Executing command line: X:\sms\bin\x64\TsmBootstrap.exe /env:WinPE /configpath:X:\sms\data\]LOG]!><time="10:44:13.809+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="908"
    file="bootshell.cpp:860">
    <![LOG[The command completed successfully.]LOG]!><time="10:44:13.809+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="908" file="bootshell.cpp:942">
    <![LOG[==============================[ TSMBootStrap.exe ]==============================]LOG]!><time="10:44:13.903+480" date="08-13-2014" component="TSMBootstrap" context="" type="1" thread="1116"
    file="tsmbootstrap.cpp:1165">
    <![LOG[Command line: X:\sms\bin\x64\TsmBootstrap.exe /env:WinPE /configpath:X:\sms\data\]LOG]!><time="10:44:13.903+480" date="08-13-2014" component="TSMBootstrap" context="" type="0" thread="1116"
    file="tsmbootstrap.cpp:1166">
    <![LOG[Succeeded loading resource DLL 'X:\sms\bin\x64\1033\TSRES.DLL']LOG]!><time="10:44:13.919+480" date="08-13-2014" component="TSMBootstrap" context="" type="1" thread="1116" file="util.cpp:964">
    <![LOG[Succeeded loading resource DLL 'X:\sms\bin\x64\TSRESNLC.DLL']LOG]!><time="10:44:13.919+480" date="08-13-2014" component="TSMBootstrap" context="" type="1" thread="1116" file="resourceutils.cpp:169">
    <![LOG[Current OS version is 6.2.9200.0]LOG]!><time="10:44:13.919+480" date="08-13-2014" component="TSMBootstrap" context="" type="1" thread="1116" file="util.cpp:3094">
    <![LOG[Adding SMS bin folder "X:\sms\bin\x64" to the system environment PATH]LOG]!><time="10:44:13.934+480" date="08-13-2014" component="TSMBootstrap" context="" type="0" thread="1116"
    file="tsmbootstrap.cpp:963">
    <![LOG[PXE Boot with Root = X:\]LOG]!><time="10:44:13.934+480" date="08-13-2014" component="TSMBootstrap" context="" type="1" thread="1116" file="tsmbootstrap.cpp:1062">
    <![LOG[Executing from PXE in WinPE]LOG]!><time="10:44:13.934+480" date="08-13-2014" component="TSMBootstrap" context="" type="1" thread="1116" file="tsmbootstrap.cpp:1077">
    <![LOG[Loading TsPxe.dll from X:\sms\bin\x64\TsPxe.dll]LOG]!><time="10:44:13.934+480" date="08-13-2014" component="TSMBootstrap" context="" type="0" thread="1116" file="tsmbootstraputil.cpp:1363">
    <![LOG[TsPxe.dll loaded]LOG]!><time="10:44:13.934+480" date="08-13-2014" component="TSPxe" context="" type="0" thread="1116" file="tsmbootstraputil.cpp:1373">
    <![LOG[Device has PXE booted]LOG]!><time="10:44:13.934+480" date="08-13-2014" component="TSPxe" context="" type="0" thread="1116" file="tspxe.cpp:122">
    <![LOG[Variable Path: \SMSTemp\2014.08.13.10.42.54.0001.{F722E5C6-13E4-4635-B674-7A56A68BCF03}.boot.var]LOG]!><time="10:44:13.934+480" date="08-13-2014" component="TSPxe" context="" type="0" thread="1116"
    file="tspxe.cpp:134">
    <![LOG[Variable Key Len: 69]LOG]!><time="10:44:13.934+480" date="08-13-2014" component="TSPxe" context="" type="0" thread="1116" file="tspxe.cpp:141">
    <![LOG[Succesfully added firewall rule for Tftp]LOG]!><time="10:44:13.950+480" date="08-13-2014" component="TSPxe" context="" type="0" thread="1116" file="fwopen.cpp:123">
    <![LOG[Executing: X:\sms\bin\x64\smstftp.exe -i 10.9.12.122 get \SMSTemp\2014.08.13.10.42.54.0001.{F722E5C6-13E4-4635-B674-7A56A68BCF03}.boot.var X:\sms\data\variables.dat]LOG]!><time="10:44:13.950+480" date="08-13-2014" component="TSPxe"
    context="" type="0" thread="1116" file="tspxe.cpp:177">
    <![LOG[Command line for extension .exe is "%1" %*]LOG]!><time="10:44:14.028+480" date="08-13-2014" component="TSPxe" context="" type="0" thread="1116" file="commandline.cpp:228">
    <![LOG[Set command line: "X:\sms\bin\x64\smstftp.exe" -i 10.9.12.122 get \SMSTemp\2014.08.13.10.42.54.0001.{F722E5C6-13E4-4635-B674-7A56A68BCF03}.boot.var X:\sms\data\variables.dat]LOG]!><time="10:44:14.028+480" date="08-13-2014"
    component="TSPxe" context="" type="0" thread="1116" file="commandline.cpp:731">
    <![LOG[Executing command line: "X:\sms\bin\x64\smstftp.exe" -i 10.9.12.122 get \SMSTemp\2014.08.13.10.42.54.0001.{F722E5C6-13E4-4635-B674-7A56A68BCF03}.boot.var X:\sms\data\variables.dat]LOG]!><time="10:44:14.028+480" date="08-13-2014"
    component="TSPxe" context="" type="1" thread="1116" file="commandline.cpp:827">
    <![LOG[Process completed with exit code 0]LOG]!><time="10:44:14.106+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="commandline.cpp:1123">
    <![LOG[Succesfully removed firewall rule for Tftp]LOG]!><time="10:44:14.122+480" date="08-13-2014" component="TSPxe" context="" type="0" thread="1116" file="fwopen.cpp:146">
    <![LOG[Successfully downloaded pxe variable file.]LOG]!><time="10:44:14.122+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tspxe.cpp:187">
    <![LOG[we are booted using PXE]LOG]!><time="10:44:14.122+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:2673">
    <![LOG[we are booted using PXE and we use a generated password]LOG]!><time="10:44:14.122+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:2678">
    <![LOG[Loading Media Variables from "X:\sms\data\variables.dat"]LOG]!><time="10:44:14.122+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsremovablemedia.cpp:322">
    <![LOG[CryptDecrypt (hKey, 0, 1, 0, pData, &dwDecryptedLen), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\smscrypt\windes.cpp,165)]LOG]!><time="10:44:14.122+480" date="08-13-2014" component="TSPxe" context=""
    type="0" thread="1116" file="windes.cpp:165">
    <![LOG[SMS::Crypto::DES::DecryptBuffer( (BYTE*)pszPassword, (DWORD)(wcslen(pszPassword)*sizeof(WCHAR)), encryptedBuffer.getBuffer(), (DWORD)encryptedBuffer.size(), pbDecryptedBuffer, dwDecryptedBufferSize ), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\tscore\tsremovablemedia.cpp,387)]LOG]!><time="10:44:14.122+480"
    date="08-13-2014" component="TSPxe" context="" type="0" thread="1116" file="tsremovablemedia.cpp:387">
    <![LOG[Verifying media password.]LOG]!><time="10:44:14.122+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:271">
    <![LOG[Loading Media Variables from "X:\sms\data\variables.dat"]LOG]!><time="10:44:14.122+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsremovablemedia.cpp:322">
    <![LOG[Found network adapter "Intel(R) 82577LM Gigabit Network Connection" with IP Address 10.9.2.50.]LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context="" type="0"
    thread="1116" file="tsmbootstraputil.cpp:517">
    <![LOG[Loading Media Variables from "X:\sms\data\variables.dat"]LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsremovablemedia.cpp:322">
    <![LOG[CryptDecrypt (hKey, 0, 1, 0, pData, &dwDecryptedLen), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\smscrypt\windes.cpp,165)]LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context=""
    type="0" thread="1116" file="windes.cpp:165">
    <![LOG[SMS::Crypto::DES::DecryptBuffer( (BYTE*)pszPassword, (DWORD)(wcslen(pszPassword)*sizeof(WCHAR)), encryptedBuffer.getBuffer(), (DWORD)encryptedBuffer.size(), pbDecryptedBuffer, dwDecryptedBufferSize ), HRESULT=80090005 (e:\nts_sccm_release\sms\framework\tscore\tsremovablemedia.cpp,387)]LOG]!><time="10:44:14.153+480"
    date="08-13-2014" component="TSPxe" context="" type="0" thread="1116" file="tsremovablemedia.cpp:387">
    <![LOG[Entering TSMediaWizardControl::GetPolicy.]LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context="" type="0" thread="1116" file="tsmediawizardcontrol.cpp:527">
    <![LOG[Creating key 'Software\Microsoft\SMS\47006C006F00620061006C005C007B00350031004100300031003600420036002D0046003000440045002D0034003700350032002D0042003900370043002D003500340045003600460033003800360041003900310032007D00']LOG]!><time="10:44:14.153+480"
    date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="environmentscope.cpp:263">
    <![LOG[Environment scope successfully created: Global\{51A016B6-F0DE-4752-B97C-54E6F386A912}]LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116"
    file="environmentscope.cpp:623">
    <![LOG[Creating key 'Software\Microsoft\SMS\47006C006F00620061006C005C007B00420041003300410033003900300030002D0043004100360044002D0034006100630031002D0038004300320038002D003500300037003300410046004300320032004200300033007D00']LOG]!><time="10:44:14.153+480"
    date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="environmentscope.cpp:263">
    <![LOG[Environment scope successfully created: Global\{BA3A3900-CA6D-4ac1-8C28-5073AFC22B03}]LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116"
    file="environmentscope.cpp:623">
    <![LOG[Setting LogMaxSize to 1000000]LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:555">
    <![LOG[Setting LogMaxHistory to 1]LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:556">
    <![LOG[Setting LogLevel to 0]LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:557">
    <![LOG[Setting LogEnabled to 1]LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:558">
    <![LOG[Setting LogDebug to 1]LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:559">
    <![LOG[UEFI: false]LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:569">
    <![LOG[Loading variables from the Task Sequencing Removable Media.]LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:584">
    <![LOG[Loading Media Variables from "X:\sms\data\variables.dat"]LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsremovablemedia.cpp:322">
    <![LOG[Succeeded loading resource DLL 'X:\sms\bin\x64\1033\TSRES.DLL']LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="util.cpp:964">
    <![LOG[Setting SMSTSMP TS environment variable]LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSMediaGuid TS environment variable]LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSBootMediaPackageID TS environment variable]LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSHTTPPort TS environment variable]LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSHTTPSPort TS environment variable]LOG]!><time="10:44:14.153+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSIISSSLState TS environment variable]LOG]!><time="10:44:14.169+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSLaunchMode TS environment variable]LOG]!><time="10:44:14.169+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSMediaPFX TS environment variable]LOG]!><time="10:44:14.169+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSPublicRootKey TS environment variable]LOG]!><time="10:44:14.169+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSSiteCode TS environment variable]LOG]!><time="10:44:14.169+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSSiteSigningCertificate TS environment variable]LOG]!><time="10:44:14.169+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSUseFirstCert TS environment variable]LOG]!><time="10:44:14.169+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSx64UnknownMachineGUID TS environment variable]LOG]!><time="10:44:14.169+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Setting _SMSTSx86UnknownMachineGUID TS environment variable]LOG]!><time="10:44:14.169+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:604">
    <![LOG[Root CA Public Certs=]LOG]!><time="10:44:14.169+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:615">
    <![LOG[Missing root CA environment variable from variables file]LOG]!><time="10:44:14.169+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:621">
    <![LOG[Support Unknown Machines: 0]LOG]!><time="10:44:14.169+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:632">
    <![LOG[Custom hook from X:\\TSConfig.INI is ]LOG]!><time="10:44:14.169+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:675">
    <![LOG[No hook is found to be executed before downloading policy]LOG]!><time="10:44:14.169+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:699">
    <![LOG[Authenticator from the environment is empty.]LOG]!><time="10:44:14.169+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:838">
    <![LOG[Need to create Authenticator Info using PFX]LOG]!><time="10:44:14.169+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmediawizardcontrol.cpp:850">
    <![LOG[Initialized CStringStream object with string: 6b7b5b1a-8a29-40a1-af6b-008746965168;2014-08-13T18:44:14Z.]LOG]!><time="10:44:14.200+480" date="08-13-2014" component="TSPxe" context="" type="0"
    thread="1116" file="stringstream.cpp:101">
    <![LOG[Set media certificate in transport]LOG]!><time="10:44:14.216+480" date="08-13-2014" component="TSPxe" context="" type="0" thread="1116" file="libsmsmessaging.cpp:9401">
    <![LOG[Set authenticator in transport]LOG]!><time="10:44:14.216+480" date="08-13-2014" component="TSPxe" context="" type="0" thread="1116" file="libsmsmessaging.cpp:7734">
    <![LOG[CLibSMSMessageWinHttpTransport::Send: URL: SS01.adskevents.local:80  GET /SMS_MP/.sms_aut?MPKEYINFORMATIONMEDIA]LOG]!><time="10:44:14.216+480" date="08-13-2014" component="TSPxe" context="" type="1"
    thread="1116" file="libsmsmessaging.cpp:8604">
    <![LOG[Executing command line: X:\WINDOWS\system32\cmd.exe /k]LOG]!><time="10:44:15.939+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="904" file="bootshell.cpp:860">
    <![LOG[The command completed successfully.]LOG]!><time="10:44:15.939+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="904" file="bootshell.cpp:942">
    <![LOG[Successfully launched command shell.]LOG]!><time="10:44:15.939+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="904" file="bootshell.cpp:432">
    <![LOG[Error. Received 0x80072ee2 from WinHttpSendRequest.]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="libsmsmessaging.cpp:8870">
    <![LOG[hr, HRESULT=80072ee2 (e:\nts_sccm_release\sms\framework\osdmessaging\libsmsmessaging.cpp,8919)]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSPxe" context="" type="0" thread="1116"
    file="libsmsmessaging.cpp:8919">
    <![LOG[sending with winhttp failed; 80072ee2]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSPxe" context="" type="3" thread="1116" file="libsmsmessaging.cpp:8919">
    <![LOG[m_pHttpTransport->Send (0, 0, pServerReply, nReplySize), HRESULT=80072ee2 (e:\nts_sccm_release\sms\framework\osdmessaging\libsmsmessaging.cpp,5159)]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSPxe"
    context="" type="0" thread="1116" file="libsmsmessaging.cpp:5159">
    <![LOG[MPKeyInformation.RequestMPKeyInformationForMedia(szTrustedRootKey), HRESULT=80072ee2 (e:\nts_sccm_release\sms\framework\osdmessaging\libsmsmessaging.cpp,9410)]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSPxe"
    context="" type="0" thread="1116" file="libsmsmessaging.cpp:9410">
    <![LOG[Failed to get information for MP: http://SS01.adskevents.local. 80072ee2.]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSPxe" context="" type="3" thread="1116" file="tsmbootstraputil.cpp:1518">
    <![LOG[sMP.length() > 0, HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\tsmbootstrap\tsmbootstraputil.cpp,1526)]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSPxe" context=""
    type="0" thread="1116" file="tsmbootstraputil.cpp:1526">
    <![LOG[TSMBootstrapUtil::SelectMP ( sSMSTSMP.c_str(), sMediaPfx.c_str(), sMediaGuid.c_str(), sAuthenticator.c_str(), sEnterpriseCert.c_str(), sServerCerts.c_str(), nHttpPort, nHttpsPort, bUseCRL, sSiteCode, sAssignedSiteCode, sMP, sCertificates, sX86UnknownMachineGUID,
    sX64UnknownMachineGUID), HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\tsmbootstrap\tsmediawizardcontrol.cpp,907)]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSPxe" context=""
    type="0" thread="1116" file="tsmediawizardcontrol.cpp:907">
    <![LOG[Exiting TSMediaWizardControl::GetPolicy.]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSPxe" context="" type="0" thread="1116" file="tsmediawizardcontrol.cpp:1419">
    <![LOG[GetPolicy(), HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\tsmbootstrap\tsmediawizardcontrol.cpp,2492)]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSPxe" context=""
    type="0" thread="1116" file="tsmediawizardcontrol.cpp:2492">
    <![LOG[RunWizardForPXE(), HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\tsmbootstrap\tsmediawizardcontrol.cpp,2834)]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSPxe" context=""
    type="0" thread="1116" file="tsmediawizardcontrol.cpp:2834">
    <![LOG[oTSMediaWizardControl.Run( sMediaRoot, true, sTSLaunchMode ), HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\tsmbootstrap\tsmbootstrap.cpp,1078)]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSPxe"
    context="" type="0" thread="1116" file="tsmbootstrap.cpp:1078">
    <![LOG[Execute( eExecutionEnv, sConfigPath, sTSXMLFile, uBootCount, &uExitCode ), HRESULT=80004005 (e:\nts_sccm_release\sms\client\tasksequence\tsmbootstrap\tsmbootstrap.cpp,1226)]LOG]!><time="10:44:35.281+480" date="08-13-2014"
    component="TSPxe" context="" type="0" thread="1116" file="tsmbootstrap.cpp:1226">
    <![LOG[Exiting with return code 0x80004005]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSPxe" context="" type="1" thread="1116" file="tsmbootstrap.cpp:1238">
    <![LOG[Execution complete.]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="908" file="bootshell.cpp:693">
    <![LOG[hMap != 0, HRESULT=80070002 (e:\nts_sccm_release\sms\framework\tscore\environmentscope.cpp,493)]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSBootShell" context="" type="0"
    thread="908" file="environmentscope.cpp:493">
    <![LOG[m_pGlobalScope->open(), HRESULT=80070002 (e:\nts_sccm_release\sms\framework\tscore\environmentlib.cpp,335)]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSBootShell" context="" type="0"
    thread="908" file="environmentlib.cpp:335">
    <![LOG[this->open(), HRESULT=80070002 (e:\nts_sccm_release\sms\framework\tscore\environmentlib.cpp,553)]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSBootShell" context="" type="0"
    thread="908" file="environmentlib.cpp:553">
    <![LOG[::RegOpenKeyExW (HKEY_LOCAL_MACHINE, sKey.c_str(), 0, KEY_READ, &hSubKey), HRESULT=80070002 (e:\nts_sccm_release\sms\framework\tscore\utils.cpp,809)]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSBootShell"
    context="" type="0" thread="908" file="utils.cpp:809">
    <![LOG[RegOpenKeyExW is unsuccessful for Software\Microsoft\SMS\Task Sequence]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSBootShell" context="" type="2" thread="908"
    file="utils.cpp:809">
    <![LOG[GetTsRegValue() is unsuccessful. 0x80070002.]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSBootShell" context="" type="2" thread="908" file="utils.cpp:842">
    <![LOG[End program: ]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="908" file="bootshell.cpp:725">
    <![LOG[Finalizing logging from process 900]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="908" file="tslogging.cpp:1741">
    <![LOG[Finalizing logs to root of first available drive]LOG]!><time="10:44:35.281+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="908" file="tslogging.cpp:1583">
    <![LOG[Successfully finalized logs to C:\SMSTSLog]LOG]!><time="10:44:35.687+480" date="08-13-2014" component="TSBootShell" context="" type="1" thread="908" file="tslogging.cpp:1640">
    <![LOG[Cleaning up task sequencing logging configuration.]LOG]!><time="10:44:35.687+480" date="08-13-2014" component="TSBootShell" context="" type="0" thread="908" file="tslogging.cpp:584">

    Every time a query is sent to the MP, it receives 0x80072ee2 which translates to "The operation timed out". This has nothing to do with your MP or DP though so reinstalling them won't make any difference.
    This error is indicative of network issues -- basically, the "client" is not getting a response back in a timely manner (and probably not at all). Assuming the MP is healthy though, then only other piece of the puzzle is the network.
    You can try setting the SMSTSAssignmentsDownloadRetry and SMSTSAssignmentsDownloadInterval task sequence variables in the boot image to increase the client's tolerance for latency or other weirdness in the network. This has worked for many.
    If that doesn't work, you'll have to break out a sniffer and watch the traffic to see what's going on at a network level.
    Jason | http://blog.configmgrftw.com

  • I moved to new house where I have wifi base station I made extension via TP-link power line adapter and connect my Airport utility 6.3.2, but I don't now how to set up as a second network with one IP address?Could you help me please?

    I moved to new house where I have wifi base station I made extension via TP-link power line adapter and connect my Airport utility 6.3.2, but I don't now how to set up as a second network with one IP address?Could you help me please?

    Urvergessen wrote:
    +You may have already done this, but do you have the first AirPort Express configured to "Allow this network to be extended"?+
    Could not find that setting anywhere.
    It's in AirPort Utility, AirPort panel, Wireless tab.
    When I'm within the range of the base station I connect normally, but further away the connection drops despite the fact that the other Airport is very close and light is green. Interestingly, my PB Pro has signal almost everywhere in the house, but my iPhone and Mac Mini don't. Most likely just a hardware difference?
    In AirPort Utility with the second Express, in the AirPort panel, Wireless tab, have you checked "Allow wireless clients"?
    The second AP does show an IP address: 10.0.1.3.
    With a "Configure IPv4" setting of "Using DHCP", that suggests that the second Express really is connecting to the first Express. In that case I have no other explanation of your your problem.

  • Successfully connected clients disconnetcs after seconds

    Hello,
    I'm having troubles with AP541N in clustered mode.
    The problem is that clients connects successfully but get disconnected  after seconds without any visible reason.
    The AP541N is configured to authenticate the clients against a Symantec Network Access Control (SNAC) and a radius server.
    eventlog from radius server:
    "User xxxxxx was granted access."
    SNAC log:
    Client[0000000c] xxxxxxxxxxxxxxxx, Status Recevied(HI:PASSED, EAP:PASSED, PRO:PASSED), UID is CORRECT, Enforcer matches(HI:PASSED, EAP:PASSED, PRO:ANY), switch VLAN XXXX on switch nnn.nnn.nnn.nnn.
    client settings (Windows 7 32-bit):
    WPA2-Enterprise/AES
    EAP-Typ: secured EAP (PEAP)
    This problems happens not to all clients (all clients are Dell Latitude laptops with Intel Wifi, but different models).
    When I use eg. a D-Link USB Wifi adapter in a laptop causing troubles, the connection will work fine, no disconnects.
    I have tested with Intel driver version 13.4.0.139
    When I connect a laptop causing troubles to another access point (eg. D-Link) it will work fine.
    Any ideas to solve the problem are welcome.
    AP541N Device Information 
    Product Identifier: AP541N-E-K9 
    Hardware Version:   V01 
    Software Version:   AP541N-K9-1.9(2) 
    Serial Number:      DNI1422A06V 
    Device Name:        AP541N-E-K9 
    Device Description: 802.11n Dual Band Access Point - Single Radio 
    Wolfgang

    Dear Wolfgang,
    i have the same problems with old dlink ap-s.
    After change to new hardware - no more, works fine.
    mfg
    Best regards.

  • After updating to Mavericks, FaceTime will say it's connecting and then fail. I can't connect with my family in the US dialling from UK.

    After updating to Mavericks, FaceTime will say it's connecting and then fail. I can't connect with my family in the US dialling from UK. Any tips on how to fix much appreciated!

    From the Mail menu bar, select
    Window ▹ Connection Doctor
    Click the Show Detail button. A drawer opens. Try to send a message and post the text that appears. Anonymize any personal information before posting.

  • TS3899 Hi my nan keeps Getting an error message of cannot get mail the connection to the server failed.... Can any one tell me what this means please

    Hi my nan keeps Getting an error message of cannot get mail the connection to the server failed.... Can any one tell me what this means please

    I too am getting this message. I have been using my iPad for two years with no problems but a couple of days ago I starting having this problem intermittently. I have restarted the iPad when that did not work I deleted the account and reloaded it. Nothing seems to work. I was having the same problem on my iPhone but that seems to be OK today. Any other ideas?

  • TS3367 when i try to FaceTime on my iPod touch, and the call gets accepted it says connecting... and then just goes to FaceTime failed. this started after a 800 number called my FaceTime. i have tried putting in several other emails & on diff wifi. sugges

    when i try to FaceTime on my iPod touch, and the call gets accepted it says connecting... and then just goes to FaceTime failed. this started after a 800 number called my FaceTime. i have tried putting in several other emails & on diff wifi. suggestions??
    i have also tried facetiming with several other people. the same thing has hapened every single time and it has always worked just fine until that 800 number called me.

    Judging by all the posts on the forum, there seems to be an issue at Apple's end, although they have made no announcement on their status page. Some users have reported that Apple is aware of the issue.
    http://www.apple.com/support/systemstatus/

  • HT201412 My iPhone 4S stops charging a few seconds after being connected to the USB, it will, however, charge when it is switched off.

    iPhone stops charging a few seconds after being connected to a USB slot, it will charge when switched off is I think it must be a software issue.

    HAve you tried using a different power chord? If the power chord is not the issue, it could be the power supply inside your mac.

  • Hello guys!! I have a problem! My old mac book today when I am switch one appears and after seconds white screen continue with one interrogation mark?? Someone Knows whats happen?? How can I solve this trobleshooting?? Sorry, my english is poor!!

    Hello guys!! I have a problem with my old mac book. Today when I am switch on one white screen appears and after seconds this white screen continue with one interrogation mark!! Someone knows whats happen?? It does not starts !! I have a feel of work inside and I am afraid!! someone may help me??

    your English was quite good enough to tell us that you saw this
    Niel has advised you well.
    If you have a more complicated problem, you can write in your language. Most all of us can translate with Google very easily... see
    Español
    Si usted tiene un problema más complicado, se puede escribir en su idioma. La mayoría de todos nosotros puede traducir con Google muy fácilmente ... ver
    Português
    Se você tem um problema mais complicado, você pode escrever no seu idioma. A maioria de todos nós pode traduzir com Google com muita facilidade ... ver
    buenos tardes
    ÇÇÇ

  • [SOLVED] - Unable to Distribute to Some DP's: Failed to make a network connection to ADMIN$ (0x5)

    For the past few days I've been struggling to wrap my head around what may have happened that resulted in distribution errors like this in distmgr.log:
    Sleep 30 minutes... SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:35 PM 6584 (0x19B8)
    Found notification for package 'AP2000D9' SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:40 PM 5288 (0x14A8)
    Used 0 out of 5 allowed processing threads. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:40 PM 5288 (0x14A8)
    Starting package processing thread, thread ID = 0x1BA8 (7080) SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 5288 (0x14A8)
    Sleep 3600 seconds... SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 5288 (0x14A8)
    STATMSG: ID=2300 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=AP2SCCM01.F.Q.D.N SITE=AP2 PID=11276 TID=7080 GMTDATE=Thu Apr 24 18:06:41.487 2014 ISTR0="Wireless (Internal)" ISTR1="AP2000D9" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="AP2000D9" SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7080 (0x1BA8)
    No action specified for the package AP2000D9. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7080 (0x1BA8)
    Start adding package to server ["Display=\\svcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\svcm01.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7080 (0x1BA8)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7772 (0x1E5C)
    Start adding package to server ["Display=\\brcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\brcm01.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7080 (0x1BA8)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 11496 (0x2CE8)
    Start adding package to server ["Display=\\sfcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\sfcm01.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7080 (0x1BA8)
    Will wait for 3 threads to end. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7080 (0x1BA8)
    Thread Handle = 0000000000001D40 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7080 (0x1BA8)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 6680 (0x1A18)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=AP2SCCM01.F.Q.D.N SITE=AP2 PID=11276 TID=11496 GMTDATE=Thu Apr 24 18:06:41.602 2014 ISTR0="Wireless (Internal)" ISTR1="["Display=\\brcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\brcm01.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="AP2000D9" AID1=404 AVAL1="["Display=\\brcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\brcm01.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 11496 (0x2CE8)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=AP2SCCM01.F.Q.D.N SITE=AP2 PID=11276 TID=6680 GMTDATE=Thu Apr 24 18:06:41.610 2014 ISTR0="Wireless (Internal)" ISTR1="["Display=\\sfcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\sfcm01.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="AP2000D9" AID1=404 AVAL1="["Display=\\sfcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\sfcm01.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 6680 (0x1A18)
    Get site system FQDN and account information from DB for ["Display=\\sfcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\sfcm01.F.Q.D.N\ SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 6680 (0x1A18)
    for ["Display=\\sfcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\sfcm01.F.Q.D.N\, no connection account is available SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 6680 (0x1A18)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=AP2SCCM01.F.Q.D.N SITE=AP2 PID=11276 TID=7772 GMTDATE=Thu Apr 24 18:06:41.655 2014 ISTR0="Wireless (Internal)" ISTR1="["Display=\\svcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\svcm01.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="AP2000D9" AID1=404 AVAL1="["Display=\\svcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\svcm01.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7772 (0x1E5C)
    Thread Handle = 0000000000002634 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7080 (0x1BA8)
    Thread Handle = 00000000000024E4 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:41 PM 7080 (0x1BA8)
    The current user context will be used for connecting to ["Display=\\brcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\brcm01.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 11496 (0x2CE8)
    The current user context will be used for connecting to ["Display=\\sfcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\sfcm01.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 6680 (0x1A18)
    The current user context will be used for connecting to ["Display=\\svcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\svcm01.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7772 (0x1E5C)
    Failed to make a network connection to \\brcm01.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 11496 (0x2CE8)
    Cannot establish connection to ["Display=\\brcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\brcm01.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 11496 (0x2CE8)
    Failed to make a network connection to \\sfcm01.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 6680 (0x1A18)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=AP2SCCM01.F.Q.D.N SITE=AP2 PID=11276 TID=11496 GMTDATE=Thu Apr 24 18:06:42.260 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="AP2000D9" AID1=404 AVAL1="["Display=\\brcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\brcm01.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 11496 (0x2CE8)
    Failed to make a network connection to \\svcm01.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7772 (0x1E5C)
    Error occurred. Performing error cleanup prior to returning. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 11496 (0x2CE8)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=AP2SCCM01.F.Q.D.N SITE=AP2 PID=11276 TID=6680 GMTDATE=Thu Apr 24 18:06:42.329 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="AP2000D9" AID1=404 AVAL1="["Display=\\sfcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\sfcm01.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 6680 (0x1A18)
    Cannot establish connection to ["Display=\\sfcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\sfcm01.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 6680 (0x1A18)
    DP thread with array index 1 ended. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    Cannot establish connection to ["Display=\\svcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\svcm01.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7772 (0x1E5C)
    Error occurred. Performing error cleanup prior to returning. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7772 (0x1E5C)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=AP2SCCM01.F.Q.D.N SITE=AP2 PID=11276 TID=7772 GMTDATE=Thu Apr 24 18:06:42.356 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="AP2000D9" AID1=404 AVAL1="["Display=\\svcm01.F.Q.D.N\"]MSWNET:["SMS_SITE=AP2"]\\svcm01.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7772 (0x1E5C)
    Error occurred. Performing error cleanup prior to returning. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 6680 (0x1A18)
    DP thread with thread handle 0000000000002634 and thread ID 11496 ended. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    Will wait for 2 threads to end. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    Thread Handle = 0000000000001D40 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    Thread Handle = 00000000000024E4 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    DP thread with array index 1 ended. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    DP thread with thread handle 00000000000024E4 and thread ID 6680 ended. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    Will wait for 1 threads to end. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    Thread Handle = 0000000000001D40 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    DP thread with array index 0 ended. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    DP thread with thread handle 0000000000001D40 and thread ID 7772 ended. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:42 PM 7080 (0x1BA8)
    Created policy provider trigger for ID AP2000D9 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    Package AP2000D9 does not have a preferred sender. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    A program for package AP2000D9 has changed, therefore it needs to be replicated to all child sites. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    Package AP2000D9 is new or has changed, replicating to all applicable sites. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    CDistributionSrcSQL::UpdateAvailableVersion PackageID=AP2000D9, Version=1, Status=2301 SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    StoredPkgVersion (1) of package AP2000D9. StoredPkgVersion in database is 1. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    SourceVersion (1) of package AP2000D9. SourceVersion in database is 1. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    STATMSG: ID=2302 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=AP2SCCM01.F.Q.D.N SITE=AP2 PID=11276 TID=7080 GMTDATE=Thu Apr 24 18:06:44.252 2014 ISTR0="Wireless (Internal)" ISTR1="AP2000D9" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="AP2000D9" SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    Failed to process package AP2000D9 after 0 retries, will retry 3 more times SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    Exiting package processing thread. SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:44 PM 7080 (0x1BA8)
    Sleep 30 minutes... SMS_DISTRIBUTION_MANAGER 4/24/2014 2:06:45 PM 6584 (0x19B8)
    The log is huge so I invite you to check out the 'FailedDistributionLog.log' log in the 'FailedDistributionError5' folder of my OneDrive.
    The hierarchy is simple:
    single primary site with a local SQL installation, management point role (among other roles)
    five other servers acting as the distribution points: 1 local, 4 remote
    Something has changed recently because distribution was working fine up until I believe this week.  I suspect some GPO is in place (or not in place) which is causing trouble, but I have not been successful in confirming that or isolating the issue to
    anything other than "it affects my 2008 R2 servers".
    What I've checked so far:
    the site server (2008 R2 Standard) has no issues during distribution to itself
    Local DP win7dp01 has no issues during distribution (this is a Windows 7 DP just for testing/proof of concept purposes)
    Remote DP 2003dp01 (Server 2003) has no issues during distribution
    Remote DP's 2008dp01, 2008dp02 & 2008dp03 (all 2008 R2 Standard) are producing the errors above
    Site System Installation Account is set to 'Use the site server's computer account to install this site system'
    All servers are joined to the same domain
    All servers are members of an SCCM Servers AD security group
    All servers have the above SCCM Servers AD security group added to the local administrators group
    As part of troubleshooting, I've added the Site Server by name (domain\servername) to the local administrators group, in addition to the AD security group which its already a member of, to the three 2008 DP's that are failing.  (The Windows 7 and 2003
    DP's don't have this setup because they seem to be working fine with the AD security group.)
    The firewall is disabled [via GPO] on all these servers & DP's
    The ADMIN$ share is available & accessible on the three 2008 DP's
    The three 2008 DP's have NO_SMS_ON_DRIVE.SMS only on the root drive (not the data drive)
    The three 2008 DP's have Data drives which house the SCCMContentLib, SMSPKG$, SMS_DP$, SMSPKGSIG$ & RemoteInstall directories.
    I checked the Share & NTFS permissions for the SCCMContentLib, SMSPKG$, SMS_DP$, SMSPKGSIG$ & REMINST shares, and local Administrators have full access/full control
    The three 2008 DP's have at least 100GB free; this package is under 1MB.
    The file 2 files in this package (one XML & one CMD) have very short file name lengths
    The files in this package are not currently in use.  (I've edited, renamed & moved them to be sure)
    RSOP of the server confirms firewall is disabled (I checked wf.msc manually anyway)
    Under Component Status, SMS_DISTRIBUTION_MANAGER is showing critical errors for the three 2008 DP's.  I've copied up the relevant entries from the log up to my OneDrive as 'SMS_DISTRIBUTION_MANAGERLog.log'.
     In short there are two error codes:
    2323 with a description of:
    Distribution Manager failed to connect to the distribution point.
    Possible cause: Distribution Manager cannot access the distribution point machine because of access permissions issues.
    Solution: Make sure that the site server machine account or Site System Installation account has administrative permissions on the distribution point machine.
    Retry Interval is 5 minutes, number of retries left is 3.
    2302 with a description of:
    Distribution Manager failed to process package "My (Package)" (package ID = PRI000D9).
    Possible cause: Distribution Manager does not have access to either the package source directory or the distribution point.
    Solution: Verify that distribution manager can access the package source directory/distribution point.
    Possible cause: The package source directory contains files with long file names and the total length of the path exceeds the maximum length supported by the operating system.
    Solution: Reduce the number of folders defined for the package, shorten the filename, or consider bundling the files using a compression utility.
    Possible cause: There is not enough disk space available on the site server computer or the distribution point.
    Solution: Verify that there is enough free disk space available on the site server computer and on the distribution point.
    Possible cause: The package source directory contains files that might be in use by an active process.
    Solution: Close any processes that maybe using files in the source directory. If this failure persists, create an alternate copy of the source directory and update the package source to point to it.
    I stood up 1 more DP on a 2003 servers which completed successfully.  Its already received content error-free.  I'll enable PXE & verify that works before standing up my final 2003 DP.  I don't have any other 2008 servers I could test
    this on which complicates this a bit.
    Before I go standing up more [2008] servers, what else could I be testing/validating?

    Tried to redistribute again this early morning and it looks like many packages succeeded but not all.  For instance a .NET package I deployed reached 7 of 8 DP's, Dell CCTK reached 5 of 8 etc..
    So seemingly by magic some DP's like some packages but not others.  I quit.
    distmgr log shows access denied errors as before:
    Used 0 out of 5 allowed processing threads. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:43 PM 4324 (0x10E4)
    Starting package processing thread, thread ID = 0x188C (6284) SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:44 PM 4324 (0x10E4)
    Starting package processing thread, thread ID = 0x1DB0 (7600) SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:44 PM 4324 (0x10E4)
    Starting package processing thread, thread ID = 0x1210 (4624) SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:45 PM 4324 (0x10E4)
    Starting package processing thread, thread ID = 0x1858 (6232) SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:45 PM 4324 (0x10E4)
    Starting package processing thread, thread ID = 0x5F8 (1528) SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4324 (0x10E4)
    Used all 5 allowed processing threads, won't process any more packages. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4324 (0x10E4)
    STATMSG: ID=2300 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=4624 GMTDATE=Tue May 13 16:09:46.240 2014 ISTR0="Nuance PDF Converter Enterprise 8.2" ISTR1="SITE10001C" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="SITE10001C" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    STATMSG: ID=2300 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6232 GMTDATE=Tue May 13 16:09:46.243 2014 ISTR0="PayneGroup Forms Assistant Add-in for Word 2007" ISTR1="SITE100022" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="SITE100022" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 6232 (0x1858)
    Sleep 3600 seconds... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4324 (0x10E4)
    STATMSG: ID=2300 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6284 GMTDATE=Tue May 13 16:09:46.248 2014 ISTR0="User State Migration Tool for Windows 8" ISTR1="SITE100001" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="SITE100001" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 6284 (0x188C)
    STATMSG: ID=2300 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=7600 GMTDATE=Tue May 13 16:09:46.246 2014 ISTR0="Workshare Professional 7.5" ISTR1="SITE100018" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="SITE100018" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 7600 (0x1DB0)
    No action specified for the package SITE100018. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 7600 (0x1DB0)
    STATMSG: ID=2300 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=1528 GMTDATE=Tue May 13 16:09:46.250 2014 ISTR0="PayneGroup Metadata Assistant" ISTR1="SITE100023" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=1 AID0=400 AVAL0="SITE100023" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 1528 (0x05F8)
    No action specified for the package SITE100023. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 1528 (0x05F8)
    Start updating the package on server ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 1528 (0x05F8)
    No action specified for the package SITE10001C. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    Start updating the package on server ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 7600 (0x1DB0)
    Start updating the package on server ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 5344 (0x14E0)
    Start updating the package on server ["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 6464 (0x1940)
    Start updating the package on server ["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 1000 (0x03E8)
    Start updating the package on server ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    Will wait for 4 threads to end. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 5504 (0x1580)
    Thread Handle = 0000000000002618 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    Start updating the package on server ["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 1528 (0x05F8)
    Thread Handle = 0000000000002B18 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    Thread Handle = 000000000000258C SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 4624 (0x1210)
    No action specified for the package SITE100001. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 6284 (0x188C)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 3684 (0x0E64)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=5504 GMTDATE=Tue May 13 16:09:46.713 2014 ISTR0="Nuance PDF Converter Enterprise 8.2" ISTR1="["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE10001C" AID1=404 AVAL1="["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 5504 (0x1580)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=1000 GMTDATE=Tue May 13 16:09:46.738 2014 ISTR0="Nuance PDF Converter Enterprise 8.2" ISTR1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE10001C" AID1=404 AVAL1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 1000 (0x03E8)
    Get site system FQDN and account information from DB for ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\ SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 5504 (0x1580)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6464 GMTDATE=Tue May 13 16:09:46.842 2014 ISTR0="Nuance PDF Converter Enterprise 8.2" ISTR1="["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE10001C" AID1=404 AVAL1="["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 6464 (0x1940)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=3684 GMTDATE=Tue May 13 16:09:46.762 2014 ISTR0="PayneGroup Metadata Assistant" ISTR1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100023" AID1=404 AVAL1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 3684 (0x0E64)
    Start updating the package on server ["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 1528 (0x05F8)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 6832 (0x1AB0)
    Start updating the package on server ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 1528 (0x05F8)
    Will wait for 4 threads to end. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 1528 (0x05F8)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 6388 (0x18F4)
    No action specified for the package SITE100022. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 6232 (0x1858)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:46 PM 6116 (0x17E4)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6832 GMTDATE=Tue May 13 16:09:47.037 2014 ISTR0="PayneGroup Metadata Assistant" ISTR1="["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100023" AID1=404 AVAL1="["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6832 (0x1AB0)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6116 GMTDATE=Tue May 13 16:09:47.045 2014 ISTR0="PayneGroup Metadata Assistant" ISTR1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100023" AID1=404 AVAL1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6116 (0x17E4)
    Thread Handle = 00000000000026FC SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 1528 (0x05F8)
    Thread Handle = 0000000000002160 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 1528 (0x05F8)
    Thread Handle = 0000000000002A18 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 1528 (0x05F8)
    Start updating the package on server ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6232 (0x1858)
    for ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\, no connection account is available SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 5504 (0x1580)
    Thread Handle = 000000000000164C SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 1528 (0x05F8)
    The current user context will be used for connecting to ["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 1000 (0x03E8)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=5344 GMTDATE=Tue May 13 16:09:47.335 2014 ISTR0="Nuance PDF Converter Enterprise 8.2" ISTR1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE10001C" AID1=404 AVAL1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 5344 (0x14E0)
    The current user context will be used for connecting to ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 3684 (0x0E64)
    Sleep 30 minutes... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 4468 (0x1174)
    Start updating the package on server ["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6232 (0x1858)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 7072 (0x1BA0)
    Start updating the package on server ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6284 (0x188C)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6388 GMTDATE=Tue May 13 16:09:47.457 2014 ISTR0="PayneGroup Metadata Assistant" ISTR1="["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100023" AID1=404 AVAL1="["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6388 (0x18F4)
    Get site system FQDN and account information from DB for ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\ SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6388 (0x18F4)
    Failed to make a network connection to \\remotedp05.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 1000 (0x03E8)
    The current user context will be used for connecting to ["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6832 (0x1AB0)
    The current user context will be used for connecting to ["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6116 (0x17E4)
    for ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\, no connection account is available SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6388 (0x18F4)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=7072 GMTDATE=Tue May 13 16:09:47.653 2014 ISTR0="PayneGroup Forms Assistant Add-in for Word 2007" ISTR1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100022" AID1=404 AVAL1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 7072 (0x1BA0)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 5752 (0x1678)
    Will wait for 1 threads to end. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6284 (0x188C)
    Thread Handle = 00000000000026E0 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 6284 (0x188C)
    Start updating the package on server ["DISPLAY=\\remotedp01.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp01.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 7600 (0x1DB0)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=7712 GMTDATE=Tue May 13 16:09:47.758 2014 ISTR0="Workshare Professional 7.5" ISTR1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100018" AID1=404 AVAL1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 7712 (0x1E20)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 7712 (0x1E20)
    Start updating the package on server ["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 7600 (0x1DB0)
    Start updating the package on server ["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 7600 (0x1DB0)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 8080 (0x1F90)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 5628 (0x15FC)
    Cannot establish connection to ["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 1000 (0x03E8)
    Error occurred. Performing error cleanup prior to returning. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 1000 (0x03E8)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=1000 GMTDATE=Tue May 13 16:09:47.921 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE10001C" AID1=404 AVAL1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 1000 (0x03E8)
    The current user context will be used for connecting to ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6388 (0x18F4)
    The current user context will be used for connecting to ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:47 PM 5504 (0x1580)
    Failed to make a network connection to \\remotedp02.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 3684 (0x0E64)
    Failed to make a network connection to \\remotedp04.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6832 (0x1AB0)
    The current user context will be used for connecting to ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5344 (0x14E0)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=5628 GMTDATE=Tue May 13 16:09:48.015 2014 ISTR0="Workshare Professional 7.5" ISTR1="["DISPLAY=\\remotedp01.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp01.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100018" AID1=404 AVAL1="["DISPLAY=\\remotedp01.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp01.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5628 (0x15FC)
    Thread Handle = 0000000000002320 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 4624 (0x1210)
    Failed to make a network connection to \\remotedp03.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5504 (0x1580)
    Failed to make a network connection to \\remotedp05.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6116 (0x17E4)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=5504 GMTDATE=Tue May 13 16:09:48.254 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE10001C" AID1=404 AVAL1="["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5504 (0x1580)
    Start updating the package on server ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 7600 (0x1DB0)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 2548 (0x09F4)
    Cannot establish connection to ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5504 (0x1580)
    The current user context will be used for connecting to ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 7712 (0x1E20)
    Failed to make a network connection to \\remotedp02.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5344 (0x14E0)
    The current user context will be used for connecting to ["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6464 (0x1940)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=8080 GMTDATE=Tue May 13 16:09:48.397 2014 ISTR0="Workshare Professional 7.5" ISTR1="["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100018" AID1=404 AVAL1="["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 8080 (0x1F90)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6116 GMTDATE=Tue May 13 16:09:48.360 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100023" AID1=404 AVAL1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6116 (0x17E4)
    Cannot establish connection to ["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6116 (0x17E4)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6832 GMTDATE=Tue May 13 16:09:48.438 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100023" AID1=404 AVAL1="["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6832 (0x1AB0)
    Cannot establish connection to ["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6832 (0x1AB0)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=5752 GMTDATE=Tue May 13 16:09:48.495 2014 ISTR0="User State Migration Tool for Windows 8" ISTR1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100001" AID1=404 AVAL1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5752 (0x1678)
    Error occurred. Performing error cleanup prior to returning. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6832 (0x1AB0)
    Cannot establish connection to ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 3684 (0x0E64)
    Error occurred. Performing error cleanup prior to returning. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 3684 (0x0E64)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=3684 GMTDATE=Tue May 13 16:09:48.597 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100023" AID1=404 AVAL1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 3684 (0x0E64)
    Error occurred. Performing error cleanup prior to returning. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5504 (0x1580)
    The current user context will be used for connecting to ["DISPLAY=\\remotedp01.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp01.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5628 (0x15FC)
    The current user context will be used for connecting to ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 7072 (0x1BA0)
    Failed to make a network connection to \\remotedp02.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 7712 (0x1E20)
    Failed to make a network connection to \\remotedp04.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6464 (0x1940)
    Cannot establish connection to ["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6464 (0x1940)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6464 GMTDATE=Tue May 13 16:09:48.843 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE10001C" AID1=404 AVAL1="["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6464 (0x1940)
    DP thread with array index 1 ended. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 1528 (0x05F8)
    Failed to make a network connection to \\remotedp01.F.Q.D.N\ADMIN$ (0x5). SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 5628 (0x15FC)
    Start updating the package on server ["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 6232 (0x1858)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 7992 (0x1F38)
    DP thread with array index 2 ended. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 4624 (0x1210)
    DP thread with thread handle 0000000000002B18 and thread ID 1000 ended. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 4624 (0x1210)
    The current user context will be used for connecting to ["Display=\\remotedp04.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp04.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 8080 (0x1F90)
    Will wait for 3 threads to end. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:48 PM 4624 (0x1210)
    Thread Handle = 0000000000002618 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 4624 (0x1210)
    The current user context will be used for connecting to ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 5752 (0x1678)
    Thread Handle = 000000000000258C SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 4624 (0x1210)
    Thread Handle = 0000000000002320 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 4624 (0x1210)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 7964 (0x1F1C)
    Will wait for 5 threads to end. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 7600 (0x1DB0)
    Thread Handle = 0000000000002688 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 7600 (0x1DB0)
    Thread Handle = 0000000000002D40 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 7600 (0x1DB0)
    STATMSG: ID=2323 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=5344 GMTDATE=Tue May 13 16:09:49.282 2014 ISTR0="5" ISTR1="3" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE10001C" AID1=404 AVAL1="["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 5344 (0x14E0)
    Thread Handle = 00000000000022F8 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 7600 (0x1DB0)
    Cannot establish connection to ["DISPLAY=\\remotedp01.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp01.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 5628 (0x15FC)
    Cannot establish connection to ["Display=\\remotedp02.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp02.F.Q.D.N\. Error = 5 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 5344 (0x14E0)
    Start updating the package on server ["Display=\\remotedp03.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp03.F.Q.D.N\... SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 6232 (0x1858)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=2548 GMTDATE=Tue May 13 16:09:49.351 2014 ISTR0="Workshare Professional 7.5" ISTR1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100018" AID1=404 AVAL1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 2548 (0x09F4)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 6428 (0x191C)
    Thread Handle = 000000000000234C SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 7600 (0x1DB0)
    Thread Handle = 00000000000021B0 SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 7600 (0x1DB0)
    Will wait for 4 threads to end. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 6232 (0x1858)
    Attempting to add or update a package on a distribution point. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 752 (0x02F0)
    STATMSG: ID=2342 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_DISTRIBUTION_MANAGER" SYS=SITESERVER.F.Q.D.N SITE=SITE1 PID=2892 TID=6428 GMTDATE=Tue May 13 16:09:49.564 2014 ISTR0="PayneGroup Forms Assistant Add-in for Word 2007" ISTR1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=2 AID0=400 AVAL0="SITE100022" AID1=404 AVAL1="["Display=\\remotedp05.F.Q.D.N\"]MSWNET:["SMS_SITE=SITE1"]\\remotedp05.F.Q.D.N\" SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 6428 (0x191C)
    Error occurred. Performing error cleanup prior to returning. SMS_DISTRIBUTION_MANAGER 5/13/2014 12:09:49 PM 5628 (0x15FC)
    Shell launched under site server context shows I can access \\remotedp01\admin$ & manipulate files & directories. (e.g.: mkdir \\remotedp01\admin$\test_%username% && echo %date% %time% > \\remotedp01\admin$\%username%.txt)  Also
    ran wbemtest again to confirm connectivity to \\remotedp01\root\cimv2.

  • How can i get mountain lion reinstalled if my mac says apple id never purchased? hd failed 2 wks after wty expired, I am the original owner, i have done command-r

    how can i get mountain lion reinstalled if my mac says apple id never purchased? hd failed 2 wks after wty expired, I am the original owner, put another hd in, done command-r & sys reinstalled, but it wanted to update & now am stuck. I don't mind paying for mountain lion; it is too far to get to an apple store. but, i only have one mac, so i cannot download with another mac. lots of other apple, but only one mac.

    You will need to do a network recovery:
    Install Lion/Mountain Lion on a New HDD/SDD
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Internet Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND-OPTION- R keys until a globe appears on the screen. Wait patiently - 15-20 minutes - until the Recovery main menu appears.
    Partition and Format the hard drive:
    1. Select Disk Utility from the main menu and click on the Continue button.
    2. After DU loads select your external hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed. Quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion: Select Reinstall Lion/Mountain Lion and click on the Install button. Be sure to select the correct drive to use if you have more than one.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.

Maybe you are looking for