Make Action Script connect to XML link

Hi,
Please if somebody can help me with this issue.
I have Flash Movie (with multiple movie symbols) file that parses XML file(gallery.load("gallery.xml") with this
           <image>
            <date>03.31.06</date>
            <title>View of Seattle</title>
            <desc>View of Seattle</desc>
            <thumb>seattle5.jpg</thumb>
            <img>seattle5.jpg</img>
        </image>
        <image>
            <date>03.31.06</date>
            <title>View of New York</title>
            <desc>View of New York</desc>
            <thumb>New York.jpg</thumb>
            <img link="http://www.newyork.com">New York</img>
        </image>
Action Script places first image in Flash File new movie symbol (new window).
          this.onRelease = function()
          showFullImage(this.imgToLoad, this.imgDesc);
My problem is:
           i need to connect to image or to http
           depending on the tag in xml.
           In first example <thumb>Seattle5.jpg</thumb> button click will send image to Flash movie new window while
           <thumb>New York.jpg</thumb> click will open http://www.newyork.com
          this.onRelease = function()
          showFullImage(this.imgToLoad, this.imgDesc);
          i need to diferentiate here to let the ActionScript know that there is link present in XML
         getUrl(Link, "_blank");
How can i make this split in Actionscript.
Thank you

when you parse the img node check if it contains ".jpg".  if yes, it's an image to load.  if no, use its link attribute to obtain the url.

Similar Messages

  • Make action script into movie clip

    Hi,
    I have used some action script to make a turning wheel with several logos in it. Now I want to make that wheel into one single movie click so I can zoom in and out when mouse over. How would I do this?
    Here is the file with the action script
    http://www.weidts.de/cs3.zip

    you have a button with what instance name on which timeline
    that should direct which movieclip to what frame?

  • Help... link URL from XML to Flash Action Script 2

    I am trying to link a different URL to each of my files in XML and use this XML in Flash were I created a carousel. In the carousel, when you click on a picture I would like to insert a specific URL. Each picture will have a different URL (http://------------).
    Here are my codes:
    XML:
    <icons>
    <icon image="icon1.png" tooltip="Planning" />
    <icon image="icon2.png" tooltip="Investments" />
    <icon image="icon3.png" tooltip="Education" />
    <icon image="icon4.png" tooltip="Insurances" />
    <icon image="icon5.png" tooltip="Mortgages" />
    <icon image="icon6.png" tooltip="Retirement" />
    <icon image="icon7.png" tooltip="Business Owner" />
    <icon image="icon8.png" tooltip="Banking" />
    </icons>
    Flash Action Script 2:
    import mx.utils.Delegate;
    var numOfItems:Number;
    var radiusX:Number = 250;
    var radiusY:Number = 75;
    var centerX:Number = Stage.width/2;
    var centerY:Number = Stage.height/2;
    var speed:Number = 0.01;
    var perspective:Number = 60;
    var home:MovieClip = this;
    var tooltip:MovieClip = this.attachMovie("tooltip","tooltip",10000);
    tooltip._alpha = 0;
    var xml:XML = new XML();
    xml.ignoreWhite = true;
    xml.onLoad = function()
    var nodes = this.firstChild.childNodes;
    numOfItems = nodes.length;
    for(var i=0;i<numOfItems;i++)
      var t = home.attachMovie("item","item"+i,i+1);
      t.angle = i * ((Math.PI*2)/numOfItems);
      t.onEnterFrame = mover;
      t.toolText = nodes[i].attributes.tooltip;
      t.icon.inner.loadMovie(nodes[i].attributes.image);
      t.ref.inner.loadMovie(nodes[i].attributes.image);
      t.icon.onRollOver = over;
      t.icon.onRollOut = out;
      t.icon.onRelease = released;
    function over()
    home.tooltip.tipText.text = this._parent.toolText;
    home.tooltip._x = this._parent._x;
    home.tooltip._y = this._parent._y - this._parent._height/2;
    home.tooltip.onEnterFrame = Delegate.create(this,moveTip);
    home.tooltip._alpha = 100;
    function out()
    delete home.tooltip.onEnterFrame;
    home.tooltip._alpha = 0;
    function released()
    function moveTip()
    home.tooltip._x = this._parent._x;
    home.tooltip._y = this._parent._y - this._parent._height/2;
    xml.load("icons.xml");
    function mover ()
    this._x = Math.cos(this.angle) * radiusX + centerX;
    this._y = Math.sin(this.angle) * radiusY + centerY;
    var s = (this._y - perspective) / (centerY+radiusY-perspective);
    this._xscale = this._yscale = s * 100
    this.angle += this._parent.speed;
    this.swapDepths(Math.round(this._xscale) + 100);
    this.onMouseMove = function()
    speed = (this._xmouse-centerX)/10000;
    Thanks so much for the help.

    You should be able to add that data into your xml tags and then extract it in the AS2 onLoad function...
    XML:
    <icons>
    <icon image="icon1.png" tooltip="Planning" linkURL="http://www.someURL.com/somePage.html" />
    AS2:
    xml.onLoad = function()
    etc....
    t.onEnterFrame = mover;
    t.toolText = nodes[i].attributes.tooltip;
    t.urlLink = nodes[i].attributes.linkURL;
    etc...

  • Connect ActionScript With XML Link

    Hi,
    Please if somebody can help me with this issue.
    I have Flash Movie (with multiple movie symbols) file that parses XML file(gallery.load("gallery.xml") with this
               <image>
                <date>03.31.06</date>
                <title>View of Seattle</title>
                <desc>View of Seattle</desc>
                <thumb>seattle5.jpg</thumb>
                <img>seattle5.jpg</img>
            </image>
            <image>
                <date>03.31.06</date>
                <title>View of New York</title>
                <desc>View of New York</desc>
                <thumb>New York.jpg</thumb>
                <img link="http://www.newyork.com">New York</img>
            </image>
    Action Script places first image in Flash File new movie symbol (new window).
              this.onRelease = function()
              showFullImage(this.imgToLoad, this.imgDesc);
    My problem is:
               i need to connect to image or to http
               depending on the tag in xml.
               In first example <thumb>Seattle5.jpg</thumb> button click will send image to Flash movie new window while
               <thumb>New York.jpg</thumb> click will open http://www.newyork.com
              this.onRelease = function()
              showFullImage(this.imgToLoad, this.imgDesc);
              i need to diferentiate here to let the ActionScript know that there is link present in XML
             getUrl(Link, "_blank");
    How can i make this split in Actionscript.
    Thank you

    I am not an xml expert in the least, but if I were faced with what you want to do I would probably have two separate fields in each image set for those two things... <img>  and <link>  and I would be checking if the img tage was assigned a null value or not when making the decision how to code each one...
    if(<img> is not null) code to show the large image
    Just to mention, the code you are showing is AS2, not AS3, so you may want to move your inquiries to the AS2 forum if you aren't planning to use AS3.

  • Flv xml Stream Playlist action script help

    So if you go to this site:
    click here
    you will see a FLV player that has a list of videos that are
    pulled from a .xml file...
    The action script for this player is as such:
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns:NetStream = new NetStream(nc);
    theVideo.attachVideo(ns);
    rewindButton.onRelease = function() {
    ns.seek(0);
    playButton.onRelease = function() {
    ns.pause();
    var videoInterval = setInterval(videoStatus,100);
    var amountLoaded:Number;
    var duration:Number;
    ns["onMetaData"] = function(obj) {
    duration = obj.duration;
    function videoStatus() {
    amountLoaded = ns.bytesLoaded / ns.bytesTotal;
    loader.loadBar._width = amountLoaded * 194.5;
    loader.scrub._x = ns.time / duration * 194.5;
    var vlist:XML = new XML();
    vlist.ignoreWhite = true;
    vlist.onLoad = function() {
    var videos:Array = this.firstChild.childNodes;
    for(i=0;i<videos.length;i++) {
    videoList.addItem(videos
    .attributes.desc,videos.attributes.url);
    ns.play(videoList.getItemAt(0).data);
    videoList.selectedIndex = 0;
    var vidList:Object = new Object();
    vidList.change = function() {
    ns.play(videoList.getItemAt(videoList.selectedIndex).data);
    videoList.addEventListener("change",vidList);
    vlist.load("videos.xml");
    I want to action script something that will make the videos
    play one after the other, get rid of the list on the right and have
    buttons on player that allow you to go to the next/previous video
    listed in the .xml file
    Its sort of like the player at
    click
    here
    I know this is a lot to ask, but I am currently in a jam and
    any help would be greatly appreciated...
    Thanks
    Matthelm88

    gotoAndLearn is a fantastic base to build off of.
    but
    i'm looking for the same thing... how do you get the files
    to play one after another?
    i've looked for everyhting ns. related and i can find any
    doc's on this one.
    i 've found the
    function complete_listener(eventObject:VideoEvent):void {
    if (my_FLVPlybk.source == "rentv1.flv") {
    my_FLVPlybk.play("rentv2.flv");
    else if (my_FLVPlybk.source == "rentv2.flv") {
    my_FLVPlybk.play("rentv3.flv");
    on the flash video live docs.. but i can't find anything on
    how to tie it into the XML.
    anything anyone can offer would be a huge help ...

  • XML Gallery won't work remotely - Action Script issues

    I created an XML scrolling thumbnail gallery using a
    tutorial
    found here
    I then had to alter the action script to get my thumbnails to
    display properly -- they were spaced out or overlapping each other
    and not in the sequence specified in the XML file. The new code
    works great locally, but the thumbnails and larger image refuse to
    load remotely in every browser i've tried. Any thoughts on how to
    alter the action script to load the gallery?!?! I'm not much
    experienced in Flash so any help would be most appreciated.
    You can find the page with my unloadable gallery
    here
    You can see my action script in my
    Flash
    CS3 file
    Thanks!
    Joe.

    Hi --
    I clicked on the link for your gallery and the images load??
    Both when I
    click on the image or when I click the "next" and "previous"
    buttons --
    although the "hit" area for the buttons is below the actual
    text so you
    should adjust that on those buttons. I would also recommend
    not making the
    text selectable so the cursor won't change to the "I bar"
    Rich
    "joesavy" <[email protected]> wrote in
    message
    news:fcp3qi$4ak$[email protected]..
    >I created an XML scrolling thumbnail gallery using a
    >
    http://www.kirupa.com/developer/mx2004/thumbnails.htm
    >
    > I then had to alter the action script to get my
    thumbnails to display
    > properly
    > -- they were spaced out or overlapping each other and
    not in the sequence
    > specified in the XML file. The new code works great
    locally, but the
    > thumbnails
    > and larger image refuse to load remotely in every
    browser i've tried. Any
    > thoughts on how to alter the action script to load the
    gallery?!?! I'm not
    > much
    > experienced in Flash so any help would be most
    appreciated.
    >
    > You can find the page with my unloadable gallery
    >
    http://www.sullivancreative.com/clients/se-07-7-24/se_website/gallery.html
    >
    > You can see my action script in my
    >
    http://www.sullivancreative.com/clients/se-07-7-24/se_website/xml_photogallery_s
    > crollthms_fix.fla
    >
    > Thanks!
    > Joe.
    >
    >

  • XML Action Script Help

    Im taking over a job and I was given the original flash file
    that doesnt seem to be working properly.
    It a thumbnail menu that loads through xml...the images work
    fine but the Links & Titles do not load.
    Nor does the rollover effect. Here what I have.
    Action Script:
    Stage.align = "TL";
    Stage.scaleMode = "noscale";
    preloader._visible = true;
    thumbs_line._visible = false;
    import mx.transitions.Tween;
    import mx.transitions.easing.*;
    my_xml = new XML();
    my_xml.ignoreWhite = true;
    if (_parent.xml_file == undefined) {
    my_xml.load((String(_url.slice(0, (_url.length-3))))+"xml");
    } else {
    my_xml.load(_parent.xml_file);
    my_xml.onLoad = function(ok) {
    if (ok) {
    process_xml();
    } else {
    trace("XML not loaded");
    function process_xml() {
    total_images = my_xml.childNodes[1].childNodes.length-1;
    gallery_width =
    Number(my_xml.childNodes[0].childNodes[0].attributes.gallery_width);
    gallery_height =
    Number(my_xml.childNodes[0].childNodes[0].attributes.gallery_height);
    max_thumb_height =
    Number(my_xml.childNodes[0].childNodes[0].attributes.max_thumb_height);
    thumbs_space =
    Number(my_xml.childNodes[0].childNodes[1].attributes.thumbs_space);
    thumb_border =
    Number(my_xml.childNodes[0].childNodes[1].attributes.thumb_border);
    image_border =
    Number(my_xml.childNodes[0].childNodes[1].attributes.image_border);
    fade_in_seconds =
    Number(my_xml.childNodes[0].childNodes[2].attributes.fade_in_seconds);
    fade_out_seconds =
    Number(my_xml.childNodes[0].childNodes[2].attributes.fade_out_seconds);
    thumb_fade_seconds =
    Number(my_xml.childNodes[0].childNodes[2].attributes.thumb_fade_seconds);
    fade_in_seconds += 0.01;
    fade_out_seconds += 0.01;
    thumb_fade_seconds += 0.01;
    thumbs_line._y =
    gallery_height-max_thumb_height-(4*thumbs_space);
    thumbs_line.thumbs_bg._width = gallery_width;
    thumbs_line.thumbs_mask._width = gallery_width;
    thumbs_line.thumbs_bg._height =
    max_thumb_height+thumbs_space*2+thumb_border*2;
    thumbs_line.thumbs_mask._height =
    max_thumb_height+thumbs_space*2+thumb_border*2;
    thumbs_line._visible = true;
    load_thumb(0);
    preloader._x = int((gallery_width-preloader._width)/2);
    preloader._y = int(thumbs_line._y/2-preloader._height/2);
    max_image_height =
    gallery_height-max_thumb_height-thumbs_space*6;
    load_image(0);
    this["link"+t] =
    my_xml.childNodes[1].childNodes[t].attributes.link;
    function load_thumb(t) {
    thumbs_line.thumbs.createEmptyMovieClip('thumb'+t,
    thumbs_line.thumbs.getNextHighestDepth());
    thumbs_line.thumbs['thumb'+t]._y =
    thumbs_space+thumb_border;
    thumbs_line.thumbs['thumb'+t]._x =
    thumbs_space+thumb_border;
    if (t>0) {
    thumbs_line.thumbs['thumb'+t]._x =
    thumbs_line.thumbs['thumb'+(t-1)]._x+thumbs_line.thumbs['thumb'+(t-1)]._width+thumbs_spac e;
    thumbs_line.thumbs['thumb'+t].image_number = t;
    thumbs_line.thumbs['thumb'+t].onRollOver =
    thumbs_line.thumbs['thumb'+t].attachMovie("thumbov_mc",
    "thumbov_mc", 10);
    thumbs_line.thumbs['thumb'+t].onRelease = function() {
    tellTarget (thumbs_line.thumbs['thumb'+t]) {
    var loadListener:Object = new Object();
    loadListener.onLoadInit = function(target_mc:MovieClip) {
    preloader.visible = false;
    thumbs_line.thumbs['thumb'+t].attachMovie("border_grey",
    "border_grey", 10);
    thumbs_line.thumbs['thumb'+t].border_grey._x -=
    thumb_border;
    thumbs_line.thumbs['thumb'+t].border_grey._y -=
    thumb_border;
    thumbs_line.thumbs['thumb'+t].attachMovie("border_white",
    "border_white", 20);
    thumbs_line.thumbs['thumb'+t].border_white._x -=
    thumb_border-1;
    thumbs_line.thumbs['thumb'+t].border_white._y -=
    thumb_border-1;
    if (target_mc._height>max_thumb_height) {
    ratio = target_mc._width/target_mc._height;
    target_mc._height = max_thumb_height;
    target_mc._width = int(target_mc._height*ratio);
    thumbs_line.thumbs['thumb'+t].border_grey._width =
    target_mc._width+thumb_border*2;
    thumbs_line.thumbs['thumb'+t].border_grey._height =
    target_mc._height+thumb_border*2;
    thumbs_line.thumbs['thumb'+t].border_white._width =
    target_mc._width+thumb_border*2-2;
    thumbs_line.thumbs['thumb'+t].border_white._height =
    target_mc._height+thumb_border*2-2;
    if (t<total_images) {
    t++;
    load_thumb(t);
    thumbs_width = thumbs_line.thumbs._width;
    thumbs_right_limit = 0;
    thumbs_left_limit =
    0-thumbs_width+int(gallery_width-thumbs_space-thumbs_space);
    var thumb_fade_in:Tween = new Tween(target_mc, "_alpha",
    none.easeIn, 0, 100, thumb_fade_seconds, true);
    var thumb_loader:MovieClipLoader = new MovieClipLoader();
    thumb_loader.addListener(loadListener);
    createEmptyMovieClip("img", 30);
    thumb_loader.loadClip(this.my_xml.childNodes[1].childNodes[t].attributes.small,
    img);
    thumbs_line.onMouseMove = function() {
    if (_xmouse>=thumbs_line.thumbs_bg._x and
    _xmouse<=thumbs_line.thumbs_bg._width and
    _ymouse>=thumbs_line._y and
    _ymouse<=thumbs_line._y+thumbs_line._height) {
    onRollOver =
    thumbs_line.thumbs['thumb'+t].attachMovie("thumbov_mc",
    "thumbov_mc", 10);
    onEnterFrame = function () {
    if (_xmouse<(gallery_width/2)-10 and
    thumbs_line.thumbs._x<thumbs_right_limit) {
    thumbs_line.thumbs._x -=
    int((_xmouse-thumbs_line.thumbs_bg._width/2)/(100-scroll_speed));
    if (thumbs_line.thumbs._x>thumbs_right_limit) {
    thumbs_line.thumbs._x = thumbs_right_limit;
    if (_xmouse>gallery_width/2+10 and
    thumbs_line.thumbs._x>thumbs_left_limit) {
    thumbs_line.thumbs._x -=
    int((_xmouse-thumbs_line.thumbs_bg._width/2)/(100-scroll_speed));
    if (thumbs_line.thumbs._x<thumbs_left_limit) {
    thumbs_line.thumbs._x = thumbs_left_limit;
    } else {
    onEnterFrame = undefined;
    this["link"+t] =
    my_xml.childNodes[1].childNodes[t].attributes.link;
    this["the_target"+t] =
    my_xml.childNodes[1].childNodes[t].attributes.target;
    XML File
    <?xml version="1.0" encoding= "UTF-8" ?>
    <options>
    <option gallery_width="730" gallery_height="450"
    max_thumb_height="96"/>
    <option scroll_speed="75" thumbs_space="0"
    thumb_border="1" image_border="2"/>
    <option fade_in_seconds="1.5"
    thumb_fade_seconds="1.5"/>
    </options>
    <gallery>
    <img small="../flash/hosts/images/pic7.jpg" title="Name
    1" link="hosts.asp"/>
    <img small="../flash/hosts/images/pic1.jpg" title="Name
    2" link="bio1.asp"/>
    <img small="../flash/hosts/images/pic2.jpg" title="Name
    3" link="bio2.asp"/>
    <img small="../flash/hosts/images/pic3.jpg" title="Name
    4" link="bio3.asp"/>
    <img small="../flash/hosts/images/pic5.jpg" title="Name
    5" link="bio4.asp"/>
    <img small="../flash/hosts/images/pic6.jpg" title="Name
    6" link="bio5.asp"/>
    <img small="../flash/hosts/images/pic8.jpg" title="Name
    7" link="bio6.asp"/>
    <img small="../flash/hosts/images/pic9.jpg" title="Name
    8" link="bio7.asp"/>
    </gallery>
    Thier is a dynamic Text field in the roll over effect that
    should contain the "title"
    the rollover MC name is: thumbov_mc
    the dynamic text field is labeled: title
    And the links are not working either?
    Does anyone see the problem?
    Thank You So Much for you help in Advance

    If you think you can help just let me now and ill email you
    the link to where this menu is...i dont want to post it for
    everyone to see..thanks

  • Connect Firebird Database and coding in  Action Script

    Hello Friends
    I am new for Flex. I want to ask some questions. I hope i will get right answers as soon as possible.
    Thanks to all in advance.
    I have Firebird database. I want to create one desktop application and i want to store data in Firebird database but i don't know how to connect firebird database?
    Also i don't want to use .net or php or any other language. Is it possible to connect firebird database using action script? can i do insert,update and delete functionality or firebird database using action script?
    Plz reply me and if you have links or code then plz send me . If you want to send email me the send on [email protected]
    Thanks & Regards
    Manjurhusen Momin
    Sr. Software Developer
    Nichetech Solutions Pvt Ltd.

    Yes,  atleast NOT with core ActionScript3.0.
    If you are developing Flex Web Application then you must have to use PHP, .NET, JAVA
    If it's an AIR app then some apecial packages are provided to communicate with database and that too with very limited scope. If you need more data intensive operation then again you have to use other language.
    You can refer to
    http://livedocs.adobe.com/flex/3/html/help.html?content=SQL_05.html
    Abhinav

  • Problems adding  url link to buttons in action Script 3

    each time I added it link 1 to the button on file i get these error messages-  
    1046: Type was not found or was not a compile-time constant: link1.
    1180: Call to a possibly undefined method link1.
    Warning: 3594: exec is not a recognized method of the dynamic class RegExp. var r:Object = p.exec(s);  
    This is the code I am using:   import flash.net.navigateToURL; import flash.net.URLRequest;  var link_one:link1;  link_one = new link1(); stage.addChild(link_one);  link_one.addEventListener(MouseEvent.CLICK, buttonClickHandler);  function buttonClickHandler(event:MouseEvent):void { var url:String = "http://www.masterpiececorp.com/ARMREF.htm"; var request:URLRequest = new URLRequest(url); navigateToURL(request); }    I have no other problems with link 3 or 4, just link 1  I still cannot get my urls link to movie clips on the flash  
    Can you upload flash here? if not I have a image capture I can use to have you look at my buttons  and action script code. i have been to every forum I know and not any have been helpful at all. This is my last hope.
    Very frustrated newbie  Gina T
    Message was edited by: gtaylor0406

    The way you had your code originally would be correct...
    var link_one:link1;
    link_one = new link1();
    addChild(link_one);
    The 1046 error is indicating it doesn't recognize the link1 class.  So the first thing you need to make sure of is that you have assigned the link1 class designation to whatever symbol that is in the library.

  • Designer looking for Action Script/XML galleries

    I am designer. I know XHTML and CSS3, but am really having lots of trouble learing Action Script and XML.
    I need to create a photo gallery for a client and am looking for resources.
    I will have to buy a pre-coded gallery and plug in my own photos.  Looking for suggestions on where to look.
    Thanks

    you can use google to search for premade galleries:  flash as3 photo gallery template.
    if you want a custom made one, send me an email via my website:  www.kglad.com

  • How to avoid custom action script link executing for all pages. It should execute for only custom list

    Hello all,
    The below code creates the custom action script link. however this is executing for all the pages.
    I want to execute only to list not on all the pages. How i can acheive this. Please help
    var context =
    new SP.ClientContext.get_current;
    this.oWebsite = context.get_web();
    var collUserCustomAction =
    this.oWebsite.get_userCustomActions();
    var scriptLink = collUserCustomAction.add();
    scriptLink.set_name('Welcome');
    scriptLink.set_title('Welcome');
    scriptLink.set_description('Welcome to new custom script Link');
    scriptLink.set_location('ScriptLink');
    scriptLink.set_scriptSrc('~Site/Scripts/test.js');
    scriptLink.set_group('');
    scriptLink.update();
    Navaneeth

    Then Edit the list page add the script editor web part on the page . Copy the paste the script. Now it will affect the list only. Or else in your script just validate the list id.
    Ravin Singh D

  • XML Links in Flash

    Ok I have made a site that needs to have different galleries
    (swfs) loading in from an XML text field. The problem is if I use
    the XML command to open a new swf it opens in a new window and I
    can't have that. Even if I type '_self' it opens a new window.
    I know there is a way of setting up a few nodes in XML with a
    name and web address, then somehow getting Flash to list these in a
    textfield, then having the gerURL command to make them into
    clickable links. As you can see by the vagueness of that last part
    I have no idea what the XML or Action Script would look...
    Does anybody else know!??
    Gavin

    Yes, its a simple rule to live by. If the end product will be
    online, always test online to get the full scope of the end
    product. Especially when dealing with XML, PHP, etc.
    "I want those hours back."

  • Photoshop action script

    Hello,
    Can someone give me an action script which could position my layer on specific Y location depending on height of text. I have a hundreds of PSD files with text. Each text has a different height. I need a script which would put the text of every PSD file so that Y position is always 8.5 cm but that Y position should be across the middle of text. My canvas is always the same size.
    Thank You very much!!

    It would be quite easy to write such a Photoshop script if one had the specifics which you did not provide. Action Script is a Flash  feature.  However a Photoshop can most likely be written to what you want here a link for you
    Adobe Photoshop Scripting | Adobe Developer Connection
    You should also be able to record an action to do what you want if all the text layer are in the same relative place in the layers stack. By aligning the text layer to a selection the action makes. Actions do not require programming you just need to know Photoshop and how to record actions.

  • Full action script swf dimension

    hi guys i want to ask something to that been confusing me..,
    if i create and swf let say for desktop application and it is full action script without any object in the stage ( movie clip and etcetera is created and placed by action script 3) not even in the library panel ( i mean no manual object that i added to library oanel and linking it to my code by using the linkage ) what would become the width  and height of this application?? let just say for example i make a slideshow swf which load it's image by reading a xml file (the url of the image file is in the xml file).
    i ask this because when i test my swf (stage.width) it return 0..,
    and when i loaded it into another swf i cannot set the loaded swf dimension (i did use event.complete)..,
    please do help my..,
    thanks..,

    I'm not sure how you would do this with a swf but I know if you build a
    class and in the class constructor write a param like this the-stage:*
    then when you instantiate the class from the main swf just pass in this *
    ie* theInstance = new myClass(this);  then in your constructor equate a
    variable with the-stage  ie:  stg = theStage; then throughout your
    class you can reference the stage using stg  as in this example:
    stg.stage.stageWidth

  • [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.

Maybe you are looking for