From 37a5e6acf864c5c725600b7c09d372dca57fc605 Mon Sep 17 00:00:00 2001 From: Petri Puustinen Date: Wed, 16 Dec 2020 11:10:30 +0200 Subject: [PATCH] Update MSFT_SPUserProfileServiceApp.schema.mof Changed MySiteHostLocation parameter to not be mandatory --- .../MSFT_SPUserProfileServiceApp.schema.mof | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SharePointDsc/DSCResources/MSFT_SPUserProfileServiceApp/MSFT_SPUserProfileServiceApp.schema.mof b/SharePointDsc/DSCResources/MSFT_SPUserProfileServiceApp/MSFT_SPUserProfileServiceApp.schema.mof index 08950ae71..53249f9cf 100644 --- a/SharePointDsc/DSCResources/MSFT_SPUserProfileServiceApp/MSFT_SPUserProfileServiceApp.schema.mof +++ b/SharePointDsc/DSCResources/MSFT_SPUserProfileServiceApp/MSFT_SPUserProfileServiceApp.schema.mof @@ -4,7 +4,7 @@ class MSFT_SPUserProfileServiceApp : OMI_BaseResource [Key, Description("The name of the user profile service")] string Name; [Write, Description("The proxy name, if not specified will be /Name of service app/ Proxy")] string ProxyName; [Required, Description("The name of the application pool to run the service app in")] string ApplicationPool; - [Required, Description("The URL of the my site host collection")] string MySiteHostLocation; + [Write, Description("The URL of the my site host collection")] string MySiteHostLocation; [Write, Description("The Managed Path of the my site sites")] string MySiteManagedPath; [Write, Description("The name of the profile database")] string ProfileDBName; [Write, Description("The name of the server to host the profile database")] string ProfileDBServer;