Lync Server 2013 : Export-CsArchivingData Can i get the files or name of files transferred between 2 users

I am using LyncServer 2013 And my Question is :-
Export-CsArchivingData -
By using this Command-let Can i get  the files or name of files transferred between 2 users 
Whether it is stored in "LcsLog" database ?
If not weather Lync server saves the files (which users are sending to another users ) anywhere on file system, or not ?

Doug Deitterick has a great blog posting that should answer your question: http://blogs.technet.com/b/dodeitte/archive/2013/04/24/archiving-options-in-lync-server-2013.aspx
The actual File is not archived in Lync, but the file name is and will be have either _p2P or _conf at the end of the name to indicate how it was transferred.
Please mark posts as answers/helpful if it answers your question.
Blog
Lync Validator - Used to assist in the validation and documentation of Lync Server 2013.

Similar Messages

  • I just bought the new late 2013 iMac.  Can I get the new iWork for free?

    I just bought a new late 2013 iMac.  Can I get the new iWork for free?  I updated it to Mavericks also.  The Mac App store is showing $19.99 for each iWork component (Pages, Numbers, Keynote).  I also bought the previous iWork version, if that matters.  Free updates for iPhoto and  iMovie seemed to show up with no problems.  Maybe these are just glitches that will clear up in a couple of days?

    Hi.  If you want it to get updated, this should take care of it.
    1. Uninstall iWork from your Mac.
    2. Do a fresh install of iWork from DVD.
    3. Install iWork update from Apple Downloads (direct link here:  http://support.apple.com/kb/DL1563)
    4. Sign into the Mac App Store, and check for updates.  It should now show up as a free update.  You may have to give it a few minutes (i.e. 10-15 minutes).
    I've been a Windows user for years, so I know all of the tricks by now.  I had hoped I would not need this knowledge for a Mac, but oh well...
    Good luck.

  • JRockit_160_05_R27.6.2-20 can not get the correct os name for windows 2008

    JRockit_160_05_R27.6.2-20 can not get the correct os name for Windows Server 2008 SP1 using System.getProperty("os.name").
    System.getProperty("os.name") will return Windows Vista instead of Windows Server 2008 when running on Windows Server 2008 SP1. Is it a bug of this jdk?
    I tested it on Sun JDK 1.6. It returns the correct name Windows Server 2008.
    Any suggestion will be welcomed. Thanks in advanced!
    Edited by: user4516182 on May 13, 2010 12:59 AM

    Staffan, thanks for your update.
    Do we have a workaround for it or fix it in new release?

  • How can I get the resolution of an image file in JSP?

    how can I get the resolution of an image file like jpg,gif,png in JSP ?

    Hii,
    If by the resolution, u mean size..this is how u can come to know....
    String add = "path/to/some.jpeg";
    javax.swing.ImageIcon chain = new javax.swing.ImageIcon(add);
    int height = chain.getIconHeight();
    int width = chain.getIconWidth();
    Hope that helps.
    regards
                   

  • The Director role is optional in Lync Server 2013 - could anyone please explain why the director server has lost its importance??

    Could anyone please explain why the director has been removed from spotlight as it had much importance in LYNC 2010 and now being an optional role in LYNC server 2013.[any call flows regarding director servers would be much useful]

    Hi SJ Praveen,
    A Director is a server running Lync Server 2013 that authenticates user requests, but does not home any user accounts. Lync 2013 Front End servers have the same registrar service and functionality
    as the Director.
    The Director isn't providing any special functionality. If the Director goes down, all pools would become inaccessible when the clients queried DNS for the SRV record until an administrator
    makes a manual internal DNS change that points users to a Front End pool to handle the sign-in request from Lync clients. Microsoft has made the Director functionality relevant for organizations that have specific security requirements, such as allowing all
    external users to register to a specific internal server instead of the Front End servers. This server role is merely optional and not needed for most Lync Server 2013 deployments.
    Best regards,
    Eric

  • Terminal how can i get the picture dimension of a file?

    Is it possible to get the dimension of an picture (120 x 120 px) via terminal command? The information is visible under the finder "getinfo" command for picture files. Can anyone help?

    You can get image pixel size info using the ImageMagick utilities, which is a GNU package available for installation via the fink pacakage manager, then you can use the terminal command:
    identify image.gif
    ImageMagick also has several other useful conversion and image processing utilities.
    http://www.finkproject.org/
    http://www.imagemagick.org/script/index.php
    Good luck.
    P.S. - There may be ways to interact with AppleScript from Terminal to get the Finder info from a file, but I don't know how to do that.

  • How can I get the path of an existing file????

    Hi.
    I'm a newbie in Jsp development, so this question may appear trivial.
    How can I get the path into a String of an exixting file ..like ...
    String thepath = path_of("my file.txt");
    Thanks for your help.

    Try
    application.getRealPath("myFile.txt")

  • How can we get the artset from a .ai file without opening it?

    Hello All,
    I have one .ai file, lets say sample.ai file. located in C drive. so the complete file path is "C:\Sample.ai".
    and lets assume the sample.ai file has one traingle shape(3 path type arts) in it.
    Now I want to get the 3 path arts (artset)  from sample.ai file without opening it in AI.
    The function protoype is like below
    AIArtSet& artSet GetArtSetFromAFile( ai::FilePath& filePath );
    Is there any API like above function in AI? or is it possible to get the art(s) from a file without opening it in AI?

    Not to my knowlege. The API only operates on active documents as far as I know.

  • How can I get the View Tab name on the Crystal Report Viewer at runtime?

    When a report is displayed in the Windows Forms Crystal Report Viewer and the user drills into the report, the drill down view is displayed in a seperate view and is identified via a View tab at the top of the report.  I can determine the index of the view tab that is currently selected, but I need to access the text that is on the View tab.  The only properties that I've found that pertain to the "view" on the Crystal Report viewer are the ActiveViewIndex and the ViewCount.  Unfortunately, neither of these items help me because they are not specific to a certain section of the report.  Has anyone had any luck accessing the View Tab properties ?  Thanks.

    The tabs at the top of the page are nested within some of the viewers controls. Through trial and error you just have to find the right one. In this case the main part of the report is in the first control. This happens to be a TabControl. From there you can loop through the TabPages on the TabControl to grab the names of the tabs.
    Here is a quick example of what I did to get the tab text. All this code was in a button click event.
    Control oControl = crystalReportViewer1.Controls[0];
    TabControl oTabControl = (TabControl)oControl.Controls[0];
    foreach (TabPage oTabPage in oTabControl.TabPages)
         MessageBox.Show(oTabPage.Text);

  • Where can I get the Adobe Reader 11 .msi file for distribution?

    I have a distribution agreement, but the only version available on the web site is the .exe file. Where can I get a copy of the .msi file so I can use the Customization Wizard?

    Hi JackTatSykes
    Download the reader X MSI from the below link : ftp://ftp.adobe.com/pub/adobe/reader/win/10.x/10.0.0/en_US/
    Reader XI : ftp://ftp.adobe.com/pub/adobe/reader/win/11.x/11.0.00/en_US/

  • JPopupMenu question: Can I get the parent menuItem name?

    Hi Everyone.
    I have a popupMenu. It has a Menu called "Messages" which has subMenus. So, is it possible to get the string of the parent subMenuItem from the ActionEvent of clicking a subsubMenuItem. Example -
    Messages - a ---|--q
    - n             |---k
    - rSo, if I know that k is clicked, by e.getActionCommand(), is there anyway I can know that it is a subsubmenItem of a? If yes, please let me know. Any help will be highly appreciated.

    System.out.println(((JMenu)((JPopupMenu)((JMenuItem)ae.getSource()).getParent()).getInvoker()).getText());where 'ae' is the actionEvent

  • How can I get the exact pathname for a file on my computer?

    I need to enter a command in Terminal that contains the pathname of an application. I know what the path is but Terminal does not recognize it. How do I make sure the pathname is in the correct form?

    Enter the command up to the point of entering the file path and add a space, then drag the file into the terminal window. It will fill out the path.
    If you need to go further into the contents of the Application package, you can continue with /Contents...
    Another way is to start typing and then hit Tab to auto-complete. It will stop where it can't determine the next letter.
    So, type /App tab and it will fill in /Applications. Type a / and start with the name of the app, then tab and it should complete. Continue till you have the correct path.
    Spaces will be replaced with \<space>, so, App Store would end up as /Applications/App\ Store.app

  • How can I get the workspace login name in a custom jsp?

    I want to add a custom jsp in workspace, how can I pass the login name to this jsp?

    DrClap wrote:
    I think the OP wants to start up an application like MS Word and then operate it from a Java program.Doesn't The Monkey's Paw do that? What a second, according to Wikipedia:
    [http://en.wikipedia.org/wiki/The_Monkey%27s_Paw]
    <quote>
    ...the paw of a dead monkey is a talisman that grants its possessor three wishes, but the wishes come with an enormous price.
    The moral of the story is contained in this description of the paw: "It had a spell put on it by an old fakir," said the sergeant-major, "a very holy man. He wanted to show that fate ruled people's lives, and that those who interfered with it did so to their sorrow."
    </quote>
    So I guess that a non-sequitor ... or is it?

  • Function to get the path without name of file

    Hello everyone!
    I'm using the function 'KD_GET_FILENAME_ON_F4', this function works very good but every time I choose a destination folder in the pop-up window it always asks me for a file name, but I need a function if it exist in SAP of course that only asks me for the destination folder and nothing else.
    I hope somebody could help me to find another function.
    Thanks for you time.

    Hi,
    Try the static method CL_GUI_FRONTEND_SERVICES=> DIRECTORY_BROWSE
    Thanks,
    Naren

  • The CompileSPL.exe in the Lync Server 2013 SDK can't compile the application manifest file

    My windows server version is 2012 standard, I deployed the lync server 2013 to my environment, and ran the lync server 2013 SDK on the front end pool. Today, I wanted to compile a application manifest file, but I got the warning that this app can't run on
    your pc, to find a version for your pc, check with the software publisher.

    Hi,
    The issue is related to Lync Server 2013, I suggest you ask for help from Lync Server 2013 SDK forum for better and accurate answer to the question.:
    http://social.msdn.microsoft.com/Forums/lync/en-US/home?forum=communicationsserversdk&filter=alltypes&sort=lastpostdesc
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

Maybe you are looking for