<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Inventor 2019 using Microsoft Teams Cloud for Project storage platform in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/inventor-2019-using-microsoft-teams-cloud-for-project-storage/m-p/11210092#M143380</link>
    <description>&lt;P&gt;Sharing some updated test results.&amp;nbsp; The mapped drive feature with our cloud service does work, there appears to be a timeout issue either with Windows as the service or Inventor not handling asynchronous activity well, but appears slower internet speeds have issues with waiting for results and simply return a "File Not Found" result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I took this test home with me and used my personal high speed internet and had no issues at all with finding files.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In short, cloud services appear to be hit or miss and will greatly depend on your internet speeds.&lt;/P&gt;</description>
    <pubDate>Thu, 02 Jun 2022 10:02:23 GMT</pubDate>
    <dc:creator>llorden4</dc:creator>
    <dc:date>2022-06-02T10:02:23Z</dc:date>
    <item>
      <title>Inventor 2019 using Microsoft Teams Cloud for Project storage platform</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/inventor-2019-using-microsoft-teams-cloud-for-project-storage/m-p/9524439#M143375</link>
      <description>&lt;P&gt;Does Autodesk Inventor 2019 support the usage of using Microsoft Teams Cloud as storage for the using Inventor Projects as its storage location?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2020 17:19:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/inventor-2019-using-microsoft-teams-cloud-for-project-storage/m-p/9524439#M143375</guid>
      <dc:creator>harrykling</dc:creator>
      <dc:date>2020-05-18T17:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2019 using Microsoft Teams Cloud for Project storage platform</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/inventor-2019-using-microsoft-teams-cloud-for-project-storage/m-p/9524682#M143376</link>
      <description>&lt;P&gt;i would say no since Autodesk has their own “team” cloud platform that is designed to work with their software or you can look at their vault products&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2020 19:03:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/inventor-2019-using-microsoft-teams-cloud-for-project-storage/m-p/9524682#M143376</guid>
      <dc:creator>DarrenP</dc:creator>
      <dc:date>2020-05-18T19:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2019 using Microsoft Teams Cloud for Project storage platform</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/inventor-2019-using-microsoft-teams-cloud-for-project-storage/m-p/9525081#M143377</link>
      <description>&lt;P&gt;Hi Harry,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any storage system should work. But, Inventor, as a file based CAD system, cannot interact with a URL-like file path. It has to be a relative or absolute file path. There are two primary ways of leveraging cloud drive: 1) Use it just like another logical drive. 2) Zip up local files and store it in the cloud as a backup.&lt;/P&gt;
&lt;P&gt;For Fusion Team, you need to install Desktop Connector and then you can directly write to or save to Fusion Team hub.&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2020 22:07:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/inventor-2019-using-microsoft-teams-cloud-for-project-storage/m-p/9525081#M143377</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2020-05-18T22:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2019 using Microsoft Teams Cloud for Project storage platform</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/inventor-2019-using-microsoft-teams-cloud-for-project-storage/m-p/11207155#M143378</link>
      <description>&lt;P&gt;I am experimenting with this now and am not having any success. We are using a cloud service (Citrix) and have installed their app to install their cloud service as a mapped drive so that we can share files with our various branches across the globe. Using the following iLogic code to search directories for a file...&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Files&lt;/SPAN&gt; = &lt;SPAN&gt;System&lt;/SPAN&gt;.&lt;SPAN&gt;IO&lt;/SPAN&gt;.&lt;SPAN&gt;Directory&lt;/SPAN&gt;.&lt;SPAN&gt;GetFiles&lt;/SPAN&gt;(&lt;SPAN&gt;oProjPath&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;"Common Parts\Nuts\"&lt;/SPAN&gt;, &lt;SPAN&gt;NutFilename&lt;/SPAN&gt;, &lt;SPAN&gt;System&lt;/SPAN&gt;.&lt;SPAN&gt;IO&lt;/SPAN&gt;.&lt;SPAN&gt;SearchOption&lt;/SPAN&gt;.&lt;SPAN&gt;AllDirectories&lt;/SPAN&gt;)
&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;Files&lt;/SPAN&gt;.&lt;SPAN&gt;Count&lt;/SPAN&gt; &amp;gt; 0 &lt;SPAN&gt;Then&lt;/SPAN&gt;									&lt;SPAN&gt;'if count &amp;gt; 0 then at least one file was found in directory search&lt;/SPAN&gt;
	&lt;SPAN&gt;Filename&lt;/SPAN&gt; = &lt;SPAN&gt;Files&lt;/SPAN&gt;(0)								&lt;SPAN&gt;'use first found file with matching part number&lt;/SPAN&gt;
&lt;SPAN&gt;Else&lt;/SPAN&gt; 
	&lt;SPAN&gt;DetFail&lt;/SPAN&gt; = &lt;SPAN&gt;True&lt;/SPAN&gt;
	&lt;SPAN&gt;Exit&lt;/SPAN&gt; &lt;SPAN&gt;Sub&lt;/SPAN&gt;
&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;This routine works well when the drive is connected to a physical network location but the mapped cloud drive constantly fails to return any results.&amp;nbsp; Is there another approach/method that could work here?&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 09:28:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/inventor-2019-using-microsoft-teams-cloud-for-project-storage/m-p/11207155#M143378</guid>
      <dc:creator>llorden4</dc:creator>
      <dc:date>2022-06-01T09:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2019 using Microsoft Teams Cloud for Project storage platform</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/inventor-2019-using-microsoft-teams-cloud-for-project-storage/m-p/11208974#M143379</link>
      <description>&lt;P&gt;Hi Leo,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you will want to map the cloud drive as a logical drive. Inventor cannot handle cloud path at the moment. You may want to take a look at this prior thread.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-forum/workgroup-search-paths-and-onedrive/td-p/9880944" target="_blank"&gt;https://forums.autodesk.com/t5/inventor-forum/workgroup-search-paths-and-onedrive/td-p/9880944&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 21:27:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/inventor-2019-using-microsoft-teams-cloud-for-project-storage/m-p/11208974#M143379</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2022-06-01T21:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: Inventor 2019 using Microsoft Teams Cloud for Project storage platform</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/inventor-2019-using-microsoft-teams-cloud-for-project-storage/m-p/11210092#M143380</link>
      <description>&lt;P&gt;Sharing some updated test results.&amp;nbsp; The mapped drive feature with our cloud service does work, there appears to be a timeout issue either with Windows as the service or Inventor not handling asynchronous activity well, but appears slower internet speeds have issues with waiting for results and simply return a "File Not Found" result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I took this test home with me and used my personal high speed internet and had no issues at all with finding files.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In short, cloud services appear to be hit or miss and will greatly depend on your internet speeds.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jun 2022 10:02:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/inventor-2019-using-microsoft-teams-cloud-for-project-storage/m-p/11210092#M143380</guid>
      <dc:creator>llorden4</dc:creator>
      <dc:date>2022-06-02T10:02:23Z</dc:date>
    </item>
  </channel>
</rss>

