2010
354 TopicsInstall exchange server Error :
Hi teams, i have a problem with installing exchange server , I want to install Exchange again on a server that has already uninstalled Exchange after uninstalling exchange i delete manulay the folder C:\Program Files\Microsoft\Exchange Server, now when i try to install exchange server i have this error : also with GUI : any idea , i find also these services in server : any helpSolved57Views0likes1CommentUser's mailbox Limit not retained after cross forest migration
We're performing Cross Forest migration with the "prepare" and "move" scripts from microsoft, after migrating the users with ADMT. We noticed that the user's specific mailbox limits are not preserved, is there a way of migrating the mailboxes preserving such settings17Views0likes1Commentuninstall error exchange server CAS role:
hi teams , i have an error when i try to uninstall exchange server : in role CAS at 70% : the iis admin service not started , and i delete all folder (owa, mapi, ...) in http folder Configuration >CN=Configuration>CN=Services>CN=Microsoft Exchange>CN=EXOIP>CN=Administrative Groups>CN=Exchange Administrative Group (FYDIBOHF23SPDLT)>CN=Servers>CN=srv_name>CN=Protocols>CN=HTTP. and i delete also the folder http any helpSolved29Views0likes1CommentHow to update the Comment Author field programmatically?
I'm migrating a SharePoint (2019) OnPrem Site Collection to SPO. I have numerous Site pages in OnPrem that users have commented on and I would like to migrate the Site Pages, the Comments and the Comment Author to SPO. Using PnP PowerShell, I am able migrate the Site Pages and the Comments. I'm using a REST API POST method to create the comments in SPO. However, I am unable to to set the Author name of the comment in SPO. As it is, the migrated comments all fall under my name...as that is the login my script used. Is there a way to programmatically set the Author name in SPO. More information... I've re-created the OnPrem users in SPO I've migrated the OnPrem SitePages meta data to SP lists in SPO. I then loop through these SP lists to dynamically create Site Pages and Comments.12Views0likes0CommentsHow to extract the value of RBS in Enterprise Resource in Project Server 2019?
I try to retrieve the value of RBS in Enterprise Resource in Project Server by using C#/ CSOM. Unfortunately, I just got the Resource Name, as for the value of RBS, I always cannot extract any value from this field. Sometimes, the value of RBS is wrong or the same. I shared the code for you to look at and hope the seasoned people can help me to address it or sharing some idea in this. I appreciate your help. Thanks. Explanation: The Enterprise Resources will be extracted by ID. "projectContext" will load specificRes with all Custom Fields. I'm going to retrieve the value of a specific field (RBS) Finally, When I specify to retrieve the value of "RBS", no matter how I change the Resource Id, the value of RBS is the same Is there any idea on this issue? Thanks for everyone's help. var specificRes = projectContext.EnterpriseResources.GetById(new Guid("46914ae8-3c55-488d-a045-4d1a5aaf1e74").ToString()); projectContext.Load(specificRes, r => r.Name, r => r.CustomFields, r => r.CustomFields.IncludeWithDefaultProperties( lu => lu.LookupTable, lu => lu.LookupEntries)); projectContext.ExecuteQuery(); var cusField = specificRes.CustomFields.FirstOrDefault(cf => cf.InternalName == "Custom_000039b78bbe4ceb82c4fa8c0c400284"); projectContext.Load(cusField); projectContext.ExecuteQuery(); Console.WriteLine(cusField.LookupEntries.First().FullValue);58Views0likes7CommentsRegarding the "App Catalog" in SharePoint 2019
Hi there, When the customization (ListView Command Set extension: Microsoft Sample: Build your first ListView Command Set extension | Microsoft Learn) was done, and it was uploaded to the App Catalog (http://win-xxxxx:19065/sites/apps), everything was well. And I also can "Add an App" in the "Site Content" But I cannot find any changes in my list in "http://win-xxxxx:19065/", I try to create a new list, and the custom function went well in App Catalog (http://win-xxxxx:19065/sites/apps). Even I want to "Add an App" in "http://win-xxxxx:19065/", I also cannot find the new App in "App you can add". Is there any idea on this? or which steps was ignored? Thanks1.8KViews0likes2CommentsMS Access Handling Nulls In Query Formula
Hi all, I have this formula in Access: IIf([Init_Static_P] < 0 And (Nz([Adj_Static_P], -9999) < 0), "Resolved", "Not resolved" which keeps outputting an #Error when Adj_Static_P is null which will happen. I need the nulls in my dataset. Whenever Init_Static_P is < 0 and or Adj_Static_P is < 0, it works as it should outputting "Resolved" and vicer versa, however it does not work whenever there is any instance of Adj_Static_P as a blank value. Does anyone know how I can handle the nulls so that if the Init_Static_P is >0 and Adj_Static_P is null, then it would output "Unresolved", and if Init_Static_P is <0 and Adj_Static_P is null then it would output "Resolved" instead of #Error? Output should be as follows: Init_Static_P Adj_Static_P Result >0 Null "Not resolved" >0 >0 "Not resolved" <0 Null "Resolved" <0 < 0 "Resolved" Thanks in advance! <3100Views0likes3CommentsRecreating a Sharepoint 2010 booking calendar in Sharepoint 365
Hello, I've been posting this in a few forums looking for if anyone has any possible solutions. At work we have a SharePoint 2010 site which has an 'event calendar' which we use as a booking calendar. I have been trying to move the SharePoint site from SharePoint 2010 to SharePoint 365. I've used the SharePoint migration tool, but I am having some issues recreating the way it was used in the SharePoint 2010 on the new SharePoint. Firstly, a bit of context of how it currently works. It is basically a booking system, there are two users shared by everyone, a booking user and a manager’s user. Both users are able to create events(work) which we refer to as 'tentative bookings'. The managers then go in, confirm details and that there is resources free and confirms the booking. To do this there is a hidden column called 'current user' which is a calculated column '=me' and a column called choice column called 'confirmed' with the choices 'yes' or 'no'. The form then validates off the formula =OR('Confirmed' = 'no', 'current user' = <manager login>'). This means that anyone is able to create/view the events but only the manager user is able to confirm the events. In the new SharePoint this doesn't work. The user is now tied to the single touch sign on, so as in it's going to be username@domain etc. and the calculated column can no longer be '=me' as this is no longer supported. I've been trying for a couple of days, between my regular work, to work out how I can create a similar effect of everyone being able to create tentative bookings but only some users being able to confirm them. Given my lack of experience with any Microsoft products more complex than excel, it has been frustrating. Does anyone have any suggestions on how I would go about creating a similar effect? I've had suggestions from the office about trying to use a different system, the reason we want to keep it on a SharePoint calendar as with the migration it contains a history of all work previous done and we often need to refer back to events 18-24 months in the past. Thanks21Views0likes0CommentsInconsistent Results Referencing Nested Subreport Property
I have placed several subreports in an unbound report's Report Header. Each subreport has two subreports. I'm trying to get the value of the Top property of the first of these sub-subreports, but I'm getting inconsistent results. The reference I'm (currently) using in the OnLoad event of the main report is: intSubSubTop = Me.Controls(strSub1).Report.Controls(strSubSub1).Top This works perfectly when I switch from Design View to Print View, but I get a runtime error (2455: the expression "has an invalid reference to the property Form/Report") when I open the report from the navigation pane. What's the difference between these two actions? I've tried different variations to no avail. What do I need to do to make it work consistently? I'm using Access 2010 on Windows 10 Pro383Views0likes5Commentsdecommision resource forest and install Exchange 2016 in account domain with existing hybrid
Following situation at a customer: - Account and Resource forest - Office 365 tenant - Azure AD Connect machine running in Account forest, syncing both directories - ADFS in Accountforest - Exchange 2010 in Resource forest with Hybrid setup What we want: - decommision resource forest/domain and Exhange 2010 - install Exchange 2016 in account forest - make 2016 the hybrid I was wondering which steps we had to take. We are now already migrating user to Exchange Online. For a new user we create a user with Linked Mailbox in Resource domain. We ADMT it to the Account forest, we trigger ADSync. A mailuser is made in Office 365 and we iniate a mailbox move. Then in the resource forest we have a Mail Contact in Ex2010 and a disabled account in AD. 1- How can we get rid off these migrated users? 2- When can we install 2016 in the account forest, can it do any harm when we install it next to Ex 2010 which is in the other forest(ofcourse we have a trust) 3- How to move on from here? Thanks for your support! (sorry, I also posted this by accident in the Office 365 community. I realized later it should be here?)7.4KViews0likes26Comments