我几个月来通过csom代码创建我的用户。我为他们分配了许可证并创建了一个驱动器来填充文件夹和共享点的结构。它运作良好,但最近几周配置onedrive停止工作。这意味着执行命令Csom CreatePersonalSiteEnqueueBulk没有错误,但是,用户onedrive没有完成,然后就无法创建文件夹。
如果我使用用户帐户登录Office 365并且创建是ondrive,我可以使用csom代码创建文件夹,等等。
这是执行的代码没有错误。 (onedrive之后48小时没有创建)
_context.AuthenticationMode = ClientAuthenticationMode.Default;
_context.Credentials = new SharePointOnlineCredentials (Email, GetSecurePassword);
ProfileLoader _profileLoader = ProfileLoader.GetProfileLoader (_context);
_profileLoader.CreatePersonalSiteEnqueueBulk (emailIDs);
_profileLoader.Context.ExecuteQuery ();
问题是:
在哪里可以跟踪队列中用于在Office 365管理界面中创建onedrives的请求?
方法改变了吗?
在Office 365中创建用户帐户时,我们可以使用Office 365管理界面中的参数强制创建用户onedrive吗?
是否有一个comdlet来创建一个驱动器?
谢谢
狡猾