<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://communities.bentley.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Workspace setup on Microsoft OneDrive?</title><link>https://communities.bentley.com/products/administration/f/product-administration-forum/178234/workspace-setup-on-microsoft-onedrive</link><description>Greetings, 
 I will be assisting a startup design firm nearby to get up and running with MicroStaion/ProjectWise (PW) - most likely only one license of each. 
 Their filestorage is all in Microsoft OneDrive, a component of Sharepoint. For any projects</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Workspace setup on Microsoft OneDrive?</title><link>https://communities.bentley.com/thread/517620?ContentTypeID=1</link><pubDate>Thu, 18 Apr 2019 19:31:05 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:e7d380aa-ba5a-4f7f-bc7b-345fe59d77ba</guid><dc:creator>John Frampton</dc:creator><description>&lt;p&gt;I couldn&amp;#39;t figure out how to do it in OneDrive so I used SharePoint to sync it to the local machine. I used SharePoint so I could control some read write access, have a central repository that is sync&amp;#39;d to the local user.&amp;nbsp; A concern is that each user on a machine will have a copy.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;%if defined $(USERPROFILE) &amp;amp;&amp;amp; ($(USERPROFILE) != &amp;quot;&amp;quot;) &amp;amp;&amp;amp; exists ($(USERPROFILE))
_USTN_CUSTOM_CONFIGURATION = $(USERPROFILE)\SharePoint\BCE_Configuration/
%else
_USTN_CUSTOM_CONFIGURATION = //$(server)/BCE_Configuration/
%endif&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Workspace setup on Microsoft OneDrive?</title><link>https://communities.bentley.com/thread/517375?ContentTypeID=1</link><pubDate>Wed, 17 Apr 2019 19:00:16 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:a2c05333-8eaa-41d1-95c4-c5201f224b50</guid><dc:creator>Kevin van Haaren</dc:creator><description>&lt;p&gt;One Drive creates an environment variable that points to the users one drive. You can use that in the _USTN_CUSTOM_CONFIGURATION. Note that One Drive for Business creates a different environment variable than regular One Drive (OneDriveCommercial is the Environment variable for One Drive for Business). So for John&amp;#39;s example you can instead use:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;[General]
%if defined (OneDrive) &amp;amp;&amp;amp; ($(OneDrive) != &amp;quot;&amp;quot;) &amp;amp;&amp;amp; exists ($(OneDrive))
	_USTN_CUSTOM_CONFIGURATION=$(OneDrive)
%elif defined (OneDriveCommerical) &amp;amp;&amp;amp; ($(OneDriveCommercial) != &amp;quot;&amp;quot;) &amp;amp;&amp;amp; exists ($(OneDriveCommercial))
	_USTN_CUSTOM_CONFIGURATION=$(OneDriveCommercial)
%else
	_USTN_CUSTOM_CONFIGURATION=
%endif
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Couple of things you&amp;#39;ll probably want to test:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;what happens when you update files that are locked open on the local machine. MicroStation retains locks on many of the files in a workspace (notably .rsc files, by default vba&amp;#39;s as well, not sure on mdls).&amp;nbsp; If you update the master version of a file, if the local copy is locked by microstation what does One Drive do? Does it wait &amp;#39;til the file unlocks or does it create a conflict copy.&lt;/li&gt;
&lt;li&gt;In your configuration will any user be able to update the workspace that is then sync&amp;#39;d to everybody else or will the sync be one way. If any user can change the workspace then be prepared for a breaking change that gets replicated to everyone&amp;#39;s computer and locks them out of MicroStation.&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Workspace setup on Microsoft OneDrive?</title><link>https://communities.bentley.com/thread/517148?ContentTypeID=1</link><pubDate>Tue, 16 Apr 2019 13:56:56 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:fa04acc8-4a09-42d2-8501-2e6f26d0a31f</guid><dc:creator>John Frampton</dc:creator><description>&lt;p&gt;Interesting and totally cool if you can pull it off!!&lt;/p&gt;
&lt;p&gt;I have not tested this in any way shape or form but here would be how I would approach it based on a single user. I am not sure how to share this easily between users, I have never seen a OneDrive Organization share, I would think that storing it in SharePoint maybe easier to do and share out to many. This is based on MSTNCE12.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Install the program.&lt;/li&gt;
&lt;li&gt;I would copy the Configuration to the OneDrive location which by default is;
&lt;ol&gt;
&lt;li&gt;c:\users\(%username)\onedrive\&lt;/li&gt;
&lt;li&gt;So you would have something like; &lt;span style="background-color:transparent;color:#000000;float:none;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;c:\users\(%username)\onedrive\&lt;/span&gt;Bentley_Configuration\&lt;br /&gt;This would have the folders Organization and WorkSpaces in it.&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;I would then configure the application to look there by editing the ConfigurationSetup.cfg. Something like this;&lt;br /&gt;_USTN_CUSTOM_CONFIGURATION=&lt;span style="background-color:transparent;color:#000000;float:none;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;c:/users/%username/onedrive/&lt;/span&gt;&lt;span style="background-color:transparent;color:#000000;float:none;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;Bentley_Configuration/&lt;br /&gt;&lt;/span&gt;[SetConfiguration]&lt;br /&gt;%if !defined (_USTN_USER_CONFIGURATION)&lt;br /&gt;%if defined (_USTN_CUSTOM_CONFIGURATION) &amp;amp;&amp;amp; ($(_USTN_CUSTOM_CONFIGURATION) != &amp;quot;&amp;quot;) &amp;amp;&amp;amp; exists ($(_USTN_CUSTOM_CONFIGURATION))&lt;br /&gt;_USTN_CONFIGURATION = &lt;span style="background-color:transparent;color:#000000;float:none;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;c:/users/%username/onedrive/&lt;/span&gt;&lt;span style="background-color:transparent;color:#000000;float:none;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:12px;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;Bentley_Configuration/&lt;br /&gt;&lt;/span&gt;%endif&lt;br /&gt;%endif&lt;/li&gt;
&lt;li&gt;I would then do sometesting making sure it created workspaces and worksets correctly and read the files correctly from there. I would also move the Organiztions data into the structure so it is all good to go before moving on to the next part&lt;/li&gt;
&lt;li&gt;Unistall the application.&lt;/li&gt;
&lt;li&gt;Install the application building a Layout with it installing and pointing to the OneDrive configuration.&lt;/li&gt;
&lt;li&gt;Install the layout to a new PC and test.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Good Luck with this! I am interested in how it works for you. Also how it works with regards to editing files such as DGNlib and any conflicts in file editing that may occur. Please report back any findings.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Workspace setup on Microsoft OneDrive?</title><link>https://communities.bentley.com/thread/517108?ContentTypeID=1</link><pubDate>Tue, 16 Apr 2019 11:11:36 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:ff3f7dee-5412-49b0-a0e7-e8fabdb0e01e</guid><dc:creator>Marc Thomas</dc:creator><description>&lt;p&gt;Interesting question. How many users are involved? Are they logging into thier machines with microsoft accounts so all of the OneDrive sharing etc is handling by the login?&lt;/p&gt;
&lt;p&gt;Will they be isnatlling on multiple machines?&lt;/p&gt;
&lt;p&gt;With the addition of the OneDrive &amp;#39;Always keep on this device option&amp;#39; ecah user should be able to have a local copy of all the files involved. The default path is long and tedious and will vary per user, so I&amp;#39;d suggest changing the local onedrive location to be the same for each user e.g. C:\_ONEDRIVE (or another drive letter if multiple drives are present to avoid filling a smaller SSD?). &lt;/p&gt;
&lt;p&gt;You could then have C:\_ONEDRIVE\Configuration\ and C:\_ONEDRIVE\Projects synced by OneDrive and use our installer to point the Custom Configuration at C:\_ONEDRIVE\Configuration\.&lt;/p&gt;
&lt;p&gt;These blogs may help:&lt;/p&gt;
&lt;p&gt;&lt;a href="/other/old_site_member_blogs/peer_blogs/b/marc_thomass_blog/posts/connect-edition---custom-configuration---part-1-initial-creation-steps" rel="noopener noreferrer" target="_blank"&gt;CONNECT Edition - Custom Configuration - Part 1 : Initial Creation Steps&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="/other/old_site_member_blogs/peer_blogs/b/marc_thomass_blog/posts/connect-edition---configuration-tips-should-i-edit-configurationsetup-cfg?CommentId=9d4c66d7-73e8-47a5-979e-b255879bd31b" rel="noopener noreferrer" target="_blank"&gt;CONNECT Edition - Configuration Tips : Should I edit ConfigurationSetup.cfg?&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Feel free to share more details and ask further questions.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>