From 99de20d640b8144ddff91ced8e0ea1330bb5278a Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Fri, 26 Jun 2015 11:03:54 -0700 Subject: [PATCH] Update generate makefiles Pulled gen and *.mk from \\win2012-ps-01\builds\makegenout\081853542dc16e4d5a354dbf648b0f6a918f0cca --- scripts/commands-management.mk | 12 + scripts/commands-utility.mk | 22 + .../COMMANDS_MANAGEMENT/ComputerResources.cs | 966 ++++++++++++++++++ .../ComputerResources.resources | Bin 0 -> 15641 bytes .../COMMANDS_MANAGEMENT/ProcessResources.cs | 63 ++ .../ProcessResources.resources | Bin 4278 -> 5060 bytes .../COMMANDS_MANAGEMENT/ServiceResources.cs | 315 ++++++ .../ServiceResources.resources | Bin 0 -> 3777 bytes .../COMMANDS_UTILITY/MatchStringStrings.cs | 99 ++ .../MatchStringStrings.resources | Bin 0 -> 613 bytes .../gen/COMMANDS_UTILITY/UpdateDataStrings.cs | 270 +++++ .../UpdateDataStrings.resources | Bin 0 -> 3199 bytes .../COMMANDS_UTILITY/UtilityCommonStrings.cs | 36 + .../UtilityCommonStrings.resources | Bin 1959 -> 2518 bytes scripts/gen/SYS_AUTO/DiscoveryExceptions.cs | 9 + .../SYS_AUTO/DiscoveryExceptions.resources | Bin 6185 -> 6341 bytes .../gen/SYS_AUTO/FileSystemProviderStrings.cs | 99 ++ .../FileSystemProviderStrings.resources | Bin 6684 -> 8114 bytes scripts/gen/SYS_AUTO/HelpDisplayStrings.cs | 9 + .../gen/SYS_AUTO/HelpDisplayStrings.resources | Bin 12583 -> 12619 bytes scripts/gen/SYS_AUTO/HelpErrors.cs | 270 +++++ scripts/gen/SYS_AUTO/HelpErrors.resources | Bin 0 -> 3934 bytes .../InternalHostUserInterfaceStrings.cs | 1 + ...InternalHostUserInterfaceStrings.resources | Bin 3084 -> 3089 bytes scripts/gen/SYS_AUTO/Modules.resources | Bin 26209 -> 0 bytes ...sources.cs => MshSnapinCmdletResources.cs} | 6 +- ...ces => MshSnapinCmdletResources.resources} | Bin scripts/gen/SYS_AUTO/ParserStrings.cs | 108 +- scripts/gen/SYS_AUTO/ParserStrings.resources | Bin 56941 -> 58395 bytes .../SYS_AUTO/RemotingErrorIdStrings.resources | Bin 70035 -> 0 bytes scripts/gen/SYS_AUTO/RunspacePoolStrings.cs | 9 + .../SYS_AUTO/RunspacePoolStrings.resources | Bin 2700 -> 2904 bytes scripts/gen/SYS_AUTO/RunspaceStrings.cs | 9 + .../gen/SYS_AUTO/RunspaceStrings.resources | Bin 7090 -> 7176 bytes scripts/gen/SYS_AUTO/SessionStateStrings.cs | 54 + .../SYS_AUTO/SessionStateStrings.resources | Bin 32467 -> 33250 bytes .../gen/SYS_AUTO/{Modules.cs => modules.cs} | 15 +- scripts/gen/SYS_AUTO/modules.resources | Bin 0 -> 26352 bytes ...IdStrings.cs => remotingerroridstrings.cs} | 51 +- .../SYS_AUTO/remotingerroridstrings.resources | Bin 0 -> 70556 bytes scripts/management-infrastructure.mk | 4 + scripts/system-automation.mk | 142 ++- 42 files changed, 2540 insertions(+), 29 deletions(-) create mode 100644 scripts/gen/COMMANDS_MANAGEMENT/ComputerResources.cs create mode 100644 scripts/gen/COMMANDS_MANAGEMENT/ComputerResources.resources create mode 100644 scripts/gen/COMMANDS_MANAGEMENT/ServiceResources.cs create mode 100644 scripts/gen/COMMANDS_MANAGEMENT/ServiceResources.resources create mode 100644 scripts/gen/COMMANDS_UTILITY/MatchStringStrings.cs create mode 100644 scripts/gen/COMMANDS_UTILITY/MatchStringStrings.resources create mode 100644 scripts/gen/COMMANDS_UTILITY/UpdateDataStrings.cs create mode 100644 scripts/gen/COMMANDS_UTILITY/UpdateDataStrings.resources create mode 100644 scripts/gen/SYS_AUTO/HelpErrors.cs create mode 100644 scripts/gen/SYS_AUTO/HelpErrors.resources delete mode 100644 scripts/gen/SYS_AUTO/Modules.resources rename scripts/gen/SYS_AUTO/{MshSnapInCmdletResources.cs => MshSnapinCmdletResources.cs} (95%) rename scripts/gen/SYS_AUTO/{MshSnapInCmdletResources.resources => MshSnapinCmdletResources.resources} (100%) delete mode 100644 scripts/gen/SYS_AUTO/RemotingErrorIdStrings.resources rename scripts/gen/SYS_AUTO/{Modules.cs => modules.cs} (99%) create mode 100644 scripts/gen/SYS_AUTO/modules.resources rename scripts/gen/SYS_AUTO/{RemotingErrorIdStrings.cs => remotingerroridstrings.cs} (98%) create mode 100644 scripts/gen/SYS_AUTO/remotingerroridstrings.resources diff --git a/scripts/commands-management.mk b/scripts/commands-management.mk index 91d2266e9..c957b79e8 100644 --- a/scripts/commands-management.mk +++ b/scripts/commands-management.mk @@ -27,6 +27,8 @@ COMMANDS_MANAGEMENT_SRCS_WIN=\ ../../../jws/pswin/admin/monad/src/commands/management/SetPropertyCommand.cs \ ../../../jws/pswin/admin/monad/src/commands/management/WriteContentCommandBase.cs \ ../../../jws/pswin/admin/monad/src/commands/management/Process.cs \ + ../../../jws/pswin/admin/monad/src/commands/management/Service.cs \ + ../../../jws/pswin/admin/monad/src/commands/management/Computer.cs \ ../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/SessionBasedWrapper.cs \ ../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/cimWrapper.cs \ ../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/cim/cimQuery.cs \ @@ -79,6 +81,8 @@ COMMANDS_MANAGEMENT_SRCS=\ $(ADMIN_GIT_ROOT)/monad/src/commands/management/SetPropertyCommand.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/management/WriteContentCommandBase.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/management/Process.cs \ + $(ADMIN_GIT_ROOT)/monad/src/commands/management/Service.cs \ + $(ADMIN_GIT_ROOT)/monad/src/commands/management/Computer.cs \ $(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/SessionBasedWrapper.cs \ $(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/cimWrapper.cs \ $(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/cim/cimQuery.cs \ @@ -113,24 +117,32 @@ COMMANDS_MANAGEMENT_RES_GEN_PATH_WIN=gen\COMMANDS_MANAGEMENT COMMANDS_MANAGEMENT_RESX_SRCS=\ ../../../jws/pswin/admin/monad/src/commands/management/resources/CmdletizationResources.resx \ ../../../jws/pswin/admin/monad/src/commands/management/resources/ProcessResources.resx \ + ../../../jws/pswin/admin/monad/src/commands/management/resources/ServiceResources.resx \ + ../../../jws/pswin/admin/monad/src/commands/management/resources/ComputerResources.resx \ ../../../jws/pswin/admin/monad/src/commands/management/resources/NavigationResources.resx \ COMMANDS_MANAGEMENT_RES_SRCS=\ gen/COMMANDS_MANAGEMENT/CmdletizationResources.resources \ gen/COMMANDS_MANAGEMENT/ProcessResources.resources \ + gen/COMMANDS_MANAGEMENT/ServiceResources.resources \ + gen/COMMANDS_MANAGEMENT/ComputerResources.resources \ gen/COMMANDS_MANAGEMENT/NavigationResources.resources \ COMMANDS_MANAGEMENT_RES_CS_SRCS=\ gen/COMMANDS_MANAGEMENT/CmdletizationResources.cs \ gen/COMMANDS_MANAGEMENT/ProcessResources.cs \ + gen/COMMANDS_MANAGEMENT/ServiceResources.cs \ + gen/COMMANDS_MANAGEMENT/ComputerResources.cs \ gen/COMMANDS_MANAGEMENT/NavigationResources.cs \ COMMANDS_MANAGEMENT_RES_REF=\ -resource:gen/COMMANDS_MANAGEMENT/CmdletizationResources.resources \ -resource:gen/COMMANDS_MANAGEMENT/ProcessResources.resources \ + -resource:gen/COMMANDS_MANAGEMENT/ServiceResources.resources \ + -resource:gen/COMMANDS_MANAGEMENT/ComputerResources.resources \ -resource:gen/COMMANDS_MANAGEMENT/NavigationResources.resources \ diff --git a/scripts/commands-utility.mk b/scripts/commands-utility.mk index d82516aef..9b0ffc20f 100644 --- a/scripts/commands-utility.mk +++ b/scripts/commands-utility.mk @@ -16,9 +16,13 @@ COMMANDS_UTILITY_SRCS_WIN=\ ../../../jws/pswin/admin/monad/src/commands/utility/AddMember.cs \ ../../../jws/pswin/admin/monad/src/commands/utility/Write-Object.cs \ ../../../jws/pswin/admin/monad/src/commands/utility/StartSleepCommand.cs \ + ../../../jws/pswin/admin/monad/src/commands/utility/GetCultureCommand.cs \ + ../../../jws/pswin/admin/monad/src/commands/utility/GetUICultureCommand.cs \ ../../../jws/pswin/admin/monad/src/commands/utility/Get-PSCallStack.cs \ ../../../jws/pswin/admin/monad/src/commands/utility/GetUnique.cs \ ../../../jws/pswin/admin/monad/src/commands/utility/GetDateCommand.cs \ + ../../../jws/pswin/admin/monad/src/commands/utility/SetDateCommand.cs \ + ../../../jws/pswin/admin/monad/src/commands/utility/MatchString.cs \ ../../../jws/pswin/admin/monad/src/commands/utility/compare-object.cs \ ../../../jws/pswin/admin/monad/src/commands/utility/GetHostCmdlet.cs \ ../../../jws/pswin/admin/monad/src/commands/utility/GetRandomCommand.cs \ @@ -26,6 +30,7 @@ COMMANDS_UTILITY_SRCS_WIN=\ ../../../jws/pswin/admin/monad/src/commands/utility/NewTimeSpanCommand.cs \ ../../../jws/pswin/admin/monad/src/commands/utility/tee-object.cs \ ../../../jws/pswin/admin/monad/src/commands/utility/TimeExpressionCommand.cs \ + ../../../jws/pswin/admin/monad/src/commands/utility/UnblockFile.cs \ ../../../jws/pswin/admin/monad/src/commands/utility/UtilityCommon.cs \ ../../../jws/pswin/admin/monad/src/commands/utility/SetAliasCommand.cs \ ../../../jws/pswin/admin/monad/src/commands/utility/GetAliasCommand.cs \ @@ -47,6 +52,8 @@ COMMANDS_UTILITY_SRCS_WIN=\ ../../../jws/pswin/admin/monad/src/commands/utility/GetRunspaceCommand.cs \ ../../../jws/pswin/admin/monad/src/commands/utility/EnableDisableRunspaceDebugCommand.cs \ ../../../jws/pswin/admin/monad/src/commands/utility/WriteProgressCmdlet.cs \ + ../../../jws/pswin/admin/monad/src/commands/utility/Update-Data.cs \ + ../../../jws/pswin/admin/monad/src/commands/utility/Update-TypeData.cs \ ../../../jws/pswin/admin/monad/src/commands/utility/FormatAndOutput/common/GetFormatDataCommand.cs \ ../../../jws/pswin/admin/monad/src/commands/utility/FormatAndOutput/common/WriteFormatDataCommand.cs \ ../../../jws/pswin/admin/monad/src/commands/utility/FormatAndOutput/format-list/Format-List.cs \ @@ -81,9 +88,13 @@ COMMANDS_UTILITY_SRCS=\ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/AddMember.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/Write-Object.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/StartSleepCommand.cs \ + $(ADMIN_GIT_ROOT)/monad/src/commands/utility/GetCultureCommand.cs \ + $(ADMIN_GIT_ROOT)/monad/src/commands/utility/GetUICultureCommand.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/Get-PSCallStack.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/GetUnique.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/GetDateCommand.cs \ + $(ADMIN_GIT_ROOT)/monad/src/commands/utility/SetDateCommand.cs \ + $(ADMIN_GIT_ROOT)/monad/src/commands/utility/MatchString.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/compare-object.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/GetHostCmdlet.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/GetRandomCommand.cs \ @@ -91,6 +102,7 @@ COMMANDS_UTILITY_SRCS=\ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/NewTimeSpanCommand.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/tee-object.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/TimeExpressionCommand.cs \ + $(ADMIN_GIT_ROOT)/monad/src/commands/utility/UnblockFile.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/UtilityCommon.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/SetAliasCommand.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/GetAliasCommand.cs \ @@ -112,6 +124,8 @@ COMMANDS_UTILITY_SRCS=\ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/GetRunspaceCommand.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/EnableDisableRunspaceDebugCommand.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/WriteProgressCmdlet.cs \ + $(ADMIN_GIT_ROOT)/monad/src/commands/utility/Update-Data.cs \ + $(ADMIN_GIT_ROOT)/monad/src/commands/utility/Update-TypeData.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/FormatAndOutput/common/GetFormatDataCommand.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/FormatAndOutput/common/WriteFormatDataCommand.cs \ $(ADMIN_GIT_ROOT)/monad/src/commands/utility/FormatAndOutput/format-list/Format-List.cs \ @@ -142,6 +156,7 @@ COMMANDS_UTILITY_RESX_SRCS=\ ../../../jws/pswin/admin/monad/src/commands/utility/resources/EventingStrings.resx \ ../../../jws/pswin/admin/monad/src/commands/utility/resources/NewObjectStrings.resx \ ../../../jws/pswin/admin/monad/src/commands/utility/resources/MeasureObjectStrings.resx \ + ../../../jws/pswin/admin/monad/src/commands/utility/resources/MatchStringStrings.resx \ ../../../jws/pswin/admin/monad/src/commands/utility/resources/SelectObjectStrings.resx \ ../../../jws/pswin/admin/monad/src/commands/utility/resources/SortObjectStrings.resx \ ../../../jws/pswin/admin/monad/src/commands/utility/resources/WriteErrorStrings.resx \ @@ -153,6 +168,7 @@ COMMANDS_UTILITY_RESX_SRCS=\ ../../../jws/pswin/admin/monad/src/commands/utility/resources/HostStrings.resx \ ../../../jws/pswin/admin/monad/src/commands/utility/resources/AddMember.resx \ ../../../jws/pswin/admin/monad/src/commands/utility/resources/ConvertFromStringData.resx \ + ../../../jws/pswin/admin/monad/src/commands/utility/resources/UpdateDataStrings.resx \ ../../../jws/pswin/admin/monad/src/commands/utility/resources/ImportLocalizedDataStrings.resx \ ../../../jws/pswin/admin/monad/src/commands/utility/resources/WriteProgressResourceStrings.resx \ ../../../jws/pswin/admin/monad/src/commands/utility/resources/AliasCommandStrings.resx \ @@ -164,6 +180,7 @@ COMMANDS_UTILITY_RES_SRCS=\ gen/COMMANDS_UTILITY/EventingStrings.resources \ gen/COMMANDS_UTILITY/NewObjectStrings.resources \ gen/COMMANDS_UTILITY/MeasureObjectStrings.resources \ + gen/COMMANDS_UTILITY/MatchStringStrings.resources \ gen/COMMANDS_UTILITY/SelectObjectStrings.resources \ gen/COMMANDS_UTILITY/SortObjectStrings.resources \ gen/COMMANDS_UTILITY/WriteErrorStrings.resources \ @@ -175,6 +192,7 @@ COMMANDS_UTILITY_RES_SRCS=\ gen/COMMANDS_UTILITY/HostStrings.resources \ gen/COMMANDS_UTILITY/AddMember.resources \ gen/COMMANDS_UTILITY/ConvertFromStringData.resources \ + gen/COMMANDS_UTILITY/UpdateDataStrings.resources \ gen/COMMANDS_UTILITY/ImportLocalizedDataStrings.resources \ gen/COMMANDS_UTILITY/WriteProgressResourceStrings.resources \ gen/COMMANDS_UTILITY/AliasCommandStrings.resources \ @@ -186,6 +204,7 @@ COMMANDS_UTILITY_RES_CS_SRCS=\ gen/COMMANDS_UTILITY/EventingStrings.cs \ gen/COMMANDS_UTILITY/NewObjectStrings.cs \ gen/COMMANDS_UTILITY/MeasureObjectStrings.cs \ + gen/COMMANDS_UTILITY/MatchStringStrings.cs \ gen/COMMANDS_UTILITY/SelectObjectStrings.cs \ gen/COMMANDS_UTILITY/SortObjectStrings.cs \ gen/COMMANDS_UTILITY/WriteErrorStrings.cs \ @@ -197,6 +216,7 @@ COMMANDS_UTILITY_RES_CS_SRCS=\ gen/COMMANDS_UTILITY/HostStrings.cs \ gen/COMMANDS_UTILITY/AddMember.cs \ gen/COMMANDS_UTILITY/ConvertFromStringData.cs \ + gen/COMMANDS_UTILITY/UpdateDataStrings.cs \ gen/COMMANDS_UTILITY/ImportLocalizedDataStrings.cs \ gen/COMMANDS_UTILITY/WriteProgressResourceStrings.cs \ gen/COMMANDS_UTILITY/AliasCommandStrings.cs \ @@ -208,6 +228,7 @@ COMMANDS_UTILITY_RES_REF=\ -resource:gen/COMMANDS_UTILITY/EventingStrings.resources \ -resource:gen/COMMANDS_UTILITY/NewObjectStrings.resources \ -resource:gen/COMMANDS_UTILITY/MeasureObjectStrings.resources \ + -resource:gen/COMMANDS_UTILITY/MatchStringStrings.resources \ -resource:gen/COMMANDS_UTILITY/SelectObjectStrings.resources \ -resource:gen/COMMANDS_UTILITY/SortObjectStrings.resources \ -resource:gen/COMMANDS_UTILITY/WriteErrorStrings.resources \ @@ -219,6 +240,7 @@ COMMANDS_UTILITY_RES_REF=\ -resource:gen/COMMANDS_UTILITY/HostStrings.resources \ -resource:gen/COMMANDS_UTILITY/AddMember.resources \ -resource:gen/COMMANDS_UTILITY/ConvertFromStringData.resources \ + -resource:gen/COMMANDS_UTILITY/UpdateDataStrings.resources \ -resource:gen/COMMANDS_UTILITY/ImportLocalizedDataStrings.resources \ -resource:gen/COMMANDS_UTILITY/WriteProgressResourceStrings.resources \ -resource:gen/COMMANDS_UTILITY/AliasCommandStrings.resources \ diff --git a/scripts/gen/COMMANDS_MANAGEMENT/ComputerResources.cs b/scripts/gen/COMMANDS_MANAGEMENT/ComputerResources.cs new file mode 100644 index 000000000..c2da0e73b --- /dev/null +++ b/scripts/gen/COMMANDS_MANAGEMENT/ComputerResources.cs @@ -0,0 +1,966 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.34209 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + + + +/// +/// A strongly-typed resource class, for looking up localized strings, etc. +/// +// This class was auto-generated by the StronglyTypedResourceBuilder +// class via a tool like ResGen or Visual Studio. +// To add or remove a member, edit your .ResX file then rerun ResGen +// with the /str option, or rebuild your VS project. +[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] +[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] +[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] +internal class ComputerResources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal ComputerResources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ComputerResources", typeof(ComputerResources).GetTypeInfo().Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Join in domain '{0}'. + /// + internal static string AddComputerActionDomain { + get { + return ResourceManager.GetString("AddComputerActionDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Join in workgroup '{0}'. + /// + internal static string AddComputerActionWorkgroup { + get { + return ResourceManager.GetString("AddComputerActionWorkgroup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot add computer '{0}' to domain '{1}' because it is already in that domain.. + /// + internal static string AddComputerToSameDomain { + get { + return ResourceManager.GetString("AddComputerToSameDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot add computer '{0}' to workgroup '{1}' because it is already in that workgroup.. + /// + internal static string AddComputerToSameWorkgroup { + get { + return ResourceManager.GetString("AddComputerToSameWorkgroup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to A new system restore point cannot be created because one has already been created within the past {0} minutes. The frequency of restore point creation can be changed by creating the DWORD value 'SystemRestorePointCreationFrequency' under the registry key 'HKLM\Software\Microsoft\Windows NT\CurrentVersion\SystemRestore'. The value of this registry key indicates the necessary time interval (in minutes) between two restore point creation. The default value is 1440 minutes (24 hours).. + /// + internal static string CannotCreateRestorePointWarning { + get { + return ResourceManager.GetString("CannotCreateRestorePointWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot find the computer account for the local computer in the domain {0}.. + /// + internal static string CannotFindMachineAccountFromDomain { + get { + return ResourceManager.GetString("CannotFindMachineAccountFromDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot find the computer account for the local computer from the domain controller {0}.. + /// + internal static string CannotFindMachineAccountFromServer { + get { + return ResourceManager.GetString("CannotFindMachineAccountFromServer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The Win32_OperatingSystem WMI object cannot be retrieved.. + /// + internal static string CannotGetOperatingSystemObject { + get { + return ResourceManager.GetString("CannotGetOperatingSystemObject", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot rename multiple computers. The NewName parameter is valid only if a single computer is specified.. + /// + internal static string CannotRenameMultipleComputers { + get { + return ResourceManager.GetString("CannotRenameMultipleComputers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Computer name {0} cannot be resolved with the exception: {1}.. + /// + internal static string CannotResolveComputerName { + get { + return ResourceManager.GetString("CannotResolveComputerName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The specified server name {0} cannot be resolved.. + /// + internal static string CannotResolveServerName { + get { + return ResourceManager.GetString("CannotResolveServerName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot wait for the local computer to restart. The local computer is ignored when the Wait parameter is specified.. + /// + internal static string CannotWaitLocalComputer { + get { + return ResourceManager.GetString("CannotWaitLocalComputer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The value specified for the NewComputerName parameter is the same as the value of the ComputerName parameter. Provide a different value for the NewComputerName parameter.. + /// + internal static string ComputerNamesAreEqual { + get { + return ResourceManager.GetString("ComputerNamesAreEqual", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot remove computer '{0}' because it is not in a domain.. + /// + internal static string ComputerNotInDomain { + get { + return ResourceManager.GetString("ComputerNotInDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} ({1}). + /// + internal static string DoubleComputerName { + get { + return ResourceManager.GetString("DoubleComputerName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot establish the WMI connection to the computer '{0}' with the following error message: {1}.. + /// + internal static string FailToConnectToComputer { + get { + return ResourceManager.GetString("FailToConnectToComputer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot get domain information about the local computer because of the following exception: {0}.. + /// + internal static string FailToGetDomainInformation { + get { + return ResourceManager.GetString("FailToGetDomainInformation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Computer '{0}' failed to join domain '{1}' from its current workgroup '{2}' with following error message: {3}.. + /// + internal static string FailToJoinDomainFromWorkgroup { + get { + return ResourceManager.GetString("FailToJoinDomainFromWorkgroup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Computer '{0}' was successfully unjoined from domain '{1}', but failed to join the new domain '{2}' with the following error message: {3}.. + /// + internal static string FailToJoinNewDomainAfterUnjoinOldDomain { + get { + return ResourceManager.GetString("FailToJoinNewDomainAfterUnjoinOldDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Failed to join computer '{0}' to workgroup '{1}' with the following error message: {2}. + /// + internal static string FailToJoinWorkGroup { + get { + return ResourceManager.GetString("FailToJoinWorkGroup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fail to rename computer '{0}' to '{1}' due to the following exception: {2}.. + /// + internal static string FailToRename { + get { + return ResourceManager.GetString("FailToRename", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Computer '{0}' was successfully joined to the new domain '{1}', but renaming it to '{2}' failed with the following error message: {3}.. + /// + internal static string FailToRenameAfterJoinDomain { + get { + return ResourceManager.GetString("FailToRenameAfterJoinDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Computer '{0}' successfully joined the workgroup '{1}', but could not be renamed to '{2}' with the following error message: {3}.. + /// + internal static string FailToRenameAfterJoinWorkgroup { + get { + return ResourceManager.GetString("FailToRenameAfterJoinWorkgroup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot reset the secure channel password for the computer account in the domain. Operation failed with the following exception: {0}.. + /// + internal static string FailToResetPasswordOnDomain { + get { + return ResourceManager.GetString("FailToResetPasswordOnDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Resetting the secure channel password for the local computer failed with the following error message: {0}.. + /// + internal static string FailToResetPasswordOnLocalMachine { + get { + return ResourceManager.GetString("FailToResetPasswordOnLocalMachine", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot validate the time interval for restore point creation. It failed to retrieve the last restore point with the following error message: {0}.. + /// + internal static string FailToRetrieveLastRestorePoint { + get { + return ResourceManager.GetString("FailToRetrieveLastRestorePoint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Computer '{0}' was successfully unjoined from the domain '{1}', but it failed to join the workgroup '{2}' with the following error message: {3}.. + /// + internal static string FailToSwitchFromDomainToWorkgroup { + get { + return ResourceManager.GetString("FailToSwitchFromDomainToWorkgroup", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot verify the secure channel for the local computer. Operation failed with the following exception: {0}.. + /// + internal static string FailToTestSecureChannel { + get { + return ResourceManager.GetString("FailToTestSecureChannel", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Failed to unjoin computer '{0}' from domain '{1}' with the following error message: {2}.. + /// + internal static string FailToUnjoinDomain { + get { + return ResourceManager.GetString("FailToUnjoinDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The number of new names is not equal to the number of target computers.. + /// + internal static string IncorrectNewNameNumber { + get { + return ResourceManager.GetString("IncorrectNewNameNumber", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The following computer name is not valid: {0}. Make sure that the computer name is not longer than 255 characters, that it does not contain two or more consecutive dots, that it does not begin with a dot, that it does not contain only numeric characters, and that it does not contain any of the following characters: + ///{{|}}~[\]^:;<=>?@!"#$%^`()+/,. + /// + internal static string InvalidComputerNameFormat { + get { + return ResourceManager.GetString("InvalidComputerNameFormat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The domain in computer name '{0}' is not valid. Make sure that the domain exists and that the name is a valid domain name.. + /// + internal static string InvalidDomainNameFormat { + get { + return ResourceManager.GetString("InvalidDomainNameFormat", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The command cannot turn on the restore computer infrastructure on the specified computer because the supplied drive is not valid. Enter a valid drive in the Drive parameter, and then try again.. + /// + internal static string InvalidDrive { + get { + return ResourceManager.GetString("InvalidDrive", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The flag '{0}' is valid only if flag '{1}' is specified.. + /// + internal static string InvalidJoinOptions { + get { + return ResourceManager.GetString("InvalidJoinOptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Skip computer '{0}' with new name '{1}' because the new name is not valid. The new computer name entered is not properly formatted. Standard names may contain letters (a-z, A-Z), numbers (0-9), and hyphens (-), but no spaces or periods (.). The name may not consist entirely of digits, and may not be longer than 63 characters.. + /// + internal static string InvalidNewName { + get { + return ResourceManager.GetString("InvalidNewName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to DcomAuthentication is not supported. Please use WsmanAuthentication instead.. + /// + internal static string InvalidParameterDCOMNotSupported { + get { + return ResourceManager.GetString("InvalidParameterDCOMNotSupported", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The {0} parameter is not supported for CoreCLR.. + /// + internal static string InvalidParameterForCoreClr { + get { + return ResourceManager.GetString("InvalidParameterForCoreClr", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Parameter WsmanAuthentication should not be specified when the DCOM protocol is in use. {0}. + /// + internal static string InvalidParameterForDCOM { + get { + return ResourceManager.GetString("InvalidParameterForDCOM", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Parameters DcomAuthentication and Impersonation should not be specified when the WSMan protocol is in use. {0}. + /// + internal static string InvalidParameterForWSMan { + get { + return ResourceManager.GetString("InvalidParameterForWSMan", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The AsJob Parameter Set is not supported.. + /// + internal static string InvalidParameterSetAsJob { + get { + return ResourceManager.GetString("InvalidParameterSetAsJob", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The command cannot restore the computer because "{0}" has not been set as valid restore point. Enter a valid restore point in the RestorePoint parameter, and then try again.. + /// + internal static string InvalidRestorePoint { + get { + return ResourceManager.GetString("InvalidRestorePoint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Local shutdown access rights. + /// + internal static string LocalShutdownPrivilege { + get { + return ResourceManager.GetString("LocalShutdownPrivilege", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Administrator rights are required to reset the secure channel password on the local computer. Access is denied.. + /// + internal static string NeedAdminPrivilegeToResetPassword { + get { + return ResourceManager.GetString("NeedAdminPrivilegeToResetPassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot remove computer(s) from the domain because the local network is down.. + /// + internal static string NetworkDown { + get { + return ResourceManager.GetString("NetworkDown", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Try below options and Run the command again. + ///1. Verify that the target computer('{0}') is running. + ///2. Specify full computer name of the target computer('{0}').. + /// + internal static string NetworkPathNotFound { + get { + return ResourceManager.GetString("NetworkPathNotFound", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Skip computer '{0}' with new name '{1}' because the new name is the same as the current name.. + /// + internal static string NewNameIsOldName { + get { + return ResourceManager.GetString("NewNameIsOldName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Testing connection to computer '{0}' failed: {1}. + /// + internal static string NoPingResult { + get { + return ResourceManager.GetString("NoPingResult", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The command cannot locate the "{0}" restore point. Verify the "{0}" sequence number, and then try the command again.. + /// + internal static string NoResorePoint { + get { + return ResourceManager.GetString("NoResorePoint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The combined service types are not supported for now.. + /// + internal static string NoSupportForCombinedServiceType { + get { + return ResourceManager.GetString("NoSupportForCombinedServiceType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Include System Drive in the list of Drives.. + /// + internal static string NoSystemDrive { + get { + return ResourceManager.GetString("NoSystemDrive", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The command cannot disable System Restore on the {0} drive. You may not have sufficient permissions to perform this operation.. + /// + internal static string NotDisabled { + get { + return ResourceManager.GetString("NotDisabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Could not enable drive {0}.. + /// + internal static string NotEnabled { + get { + return ResourceManager.GetString("NotEnabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This functionality is not supported on this operating system.. + /// + internal static string NotSupported { + get { + return ResourceManager.GetString("NotSupported", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The command cannot turn off the restore computer infrastructure because the supplied drive is not valid. Enter a valid drive in the Drive parameter, and then try again.. + /// + internal static string NotValidDrive { + get { + return ResourceManager.GetString("NotValidDrive", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This command cannot be run on target computer('{1}') due to following error: {0}.{2}. + /// + internal static string OperationFailed { + get { + return ResourceManager.GetString("OperationFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Parameter WsmanAuthentication should not be specified with DcomAuthentication and Impersonation at the same time. {0}. + /// + internal static string ParameterConfliction { + get { + return ResourceManager.GetString("ParameterConfliction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Parameter WsmanAuthentication is valid only if the WSMan protocol is used. Parameters DcomAuthentication (Authentication) and Impersonation are valid only if the DCOM protocol is used.. + /// + internal static string ParameterUsage { + get { + return ResourceManager.GetString("ParameterUsage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Failed to restart the computer {0}. Access rights {1} cannot be enabled for the calling process.. + /// + internal static string PrivilegeNotEnabled { + get { + return ResourceManager.GetString("PrivilegeNotEnabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Creating a system restore point .... + /// + internal static string ProgressActivity { + get { + return ResourceManager.GetString("ProgressActivity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Completed.. + /// + internal static string ProgressStatusCompleted { + get { + return ResourceManager.GetString("ProgressStatusCompleted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Creating a system restore point... {0}% Completed.. + /// + internal static string ProgressStatusCreatingRestorePoint { + get { + return ResourceManager.GetString("ProgressStatusCreatingRestorePoint", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote shutdown access rights. + /// + internal static string RemoteShutdownPrivilege { + get { + return ResourceManager.GetString("RemoteShutdownPrivilege", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to After you leave the domain, you will need to know the password of the local Administrator account to log onto this computer. Do you wish to continue?. + /// + internal static string RemoveComputerConfirm { + get { + return ResourceManager.GetString("RemoveComputerConfirm", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Parameter WsmanAuthentication cannot be specified with the DCOM protocol. Parameter WSManAuthentication is valid only when the WSMan protocol is used.. + /// + internal static string RenameCommandWsmanAuthParamConflict { + get { + return ResourceManager.GetString("RenameCommandWsmanAuthParamConflict", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The attempt to repair the secure channel between the local computer and the domain {0} has failed.. + /// + internal static string RepairSecureChannelFail { + get { + return ResourceManager.GetString("RepairSecureChannelFail", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The secure channel between the local computer and the domain {0} was successfully repaired.. + /// + internal static string RepairSecureChannelSucceed { + get { + return ResourceManager.GetString("RepairSecureChannelSucceed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to "The password of the secure channel between '{0}' and '{1}' has been reset.". + /// + internal static string ResetComputerMachinePassword { + get { + return ResourceManager.GetString("ResetComputerMachinePassword", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot reset the secure channel password for the account of the local computer. The local computer is not currently part of a domain.. + /// + internal static string ResetComputerNotInDomain { + get { + return ResourceManager.GetString("ResetComputerNotInDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Restart is complete. + /// + internal static string RestartComplete { + get { + return ResourceManager.GetString("RestartComplete", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enable the {0} and restart the computer.. + /// + internal static string RestartComputerAction { + get { + return ResourceManager.GetString("RestartComputerAction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Failed to restart the computer {0} with the following error message: {1}.. + /// + internal static string RestartcomputerFailed { + get { + return ResourceManager.GetString("RestartcomputerFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The parameters Timeout, For, and Delay are valid only when the parameter Wait is specified.. + /// + internal static string RestartComputerInvalidParameter { + get { + return ResourceManager.GetString("RestartComputerInvalidParameter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The computer {0} is skipped. Fail to retrieve its LastBootUpTime via the WMI service with the following error message: {1}.. + /// + internal static string RestartComputerSkipped { + get { + return ResourceManager.GetString("RestartComputerSkipped", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Restarting computers.... + /// + internal static string RestartMultipleComputersActivity { + get { + return ResourceManager.GetString("RestartMultipleComputersActivity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The changes will take effect after you restart the computer {1}.. + /// + internal static string RestartNeeded { + get { + return ResourceManager.GetString("RestartNeeded", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Restarting computer {0}. + /// + internal static string RestartSingleComputerActivity { + get { + return ResourceManager.GetString("RestartSingleComputerActivity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The last attempt to restore the computer failed.. + /// + internal static string RestoreFailed { + get { + return ResourceManager.GetString("RestoreFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The last attempt to restore the computer was interrupted.. + /// + internal static string RestoreInterrupted { + get { + return ResourceManager.GetString("RestoreInterrupted", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The system restore infrastructure cannot create a restore point.. + /// + internal static string RestorePointNotCreated { + get { + return ResourceManager.GetString("RestorePointNotCreated", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The computer has been restored to the specified restore point.. + /// + internal static string RestoreSuceess { + get { + return ResourceManager.GetString("RestoreSuceess", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The secure channel between the local computer and the domain {0} is in good condition.. + /// + internal static string SecureChannelAlive { + get { + return ResourceManager.GetString("SecureChannelAlive", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The secure channel between the local computer and the domain {0} is broken.. + /// + internal static string SecureChannelBroken { + get { + return ResourceManager.GetString("SecureChannelBroken", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SystemRestore service is disabled.. + /// + internal static string ServiceDisabled { + get { + return ResourceManager.GetString("ServiceDisabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Parameters DcomAuthentication and Impersonation cannot be specified with the WSMan protocol. {0}. + /// + internal static string StopCommandAuthProtcolConflict { + get { + return ResourceManager.GetString("StopCommandAuthProtcolConflict", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Parameter WsmanAuthentication is valid only when the WSMan protocol is used. Parameters DcomAuthentication and Impersonation are valid only when the DCOM protocol is used.. + /// + internal static string StopCommandParamMessage { + get { + return ResourceManager.GetString("StopCommandParamMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Parameter WsmanAuthentication cannot be specified with DcomAuthentication or Impersonation parameters. {0}. + /// + internal static string StopCommandParamWSManAuthConflict { + get { + return ResourceManager.GetString("StopCommandParamWSManAuthConflict", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Parameter WsmanAuthentication cannot be specified with the DCOM protocol. {0}. + /// + internal static string StopCommandWSManAuthProtcolConflict { + get { + return ResourceManager.GetString("StopCommandWSManAuthProtcolConflict", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Failed to stop the computer {0} with the following error message: {1}.. + /// + internal static string StopcomputerFailed { + get { + return ResourceManager.GetString("StopcomputerFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The operation cannot be performed because the system restore APIs are not supported on the Advanced RISC Machine (ARM) platform.. + /// + internal static string SystemRestoreNotSupported { + get { + return ResourceManager.GetString("SystemRestoreNotSupported", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to This command cannot be run due to the following error: the service cannot be started because it is disabled or does not have enabled devices associated with it.. + /// + internal static string SystemRestoreServiceDisabled { + get { + return ResourceManager.GetString("SystemRestoreServiceDisabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot verify the secure channel password for the local computer. The local computer is not currently part of a domain.. + /// + internal static string TestComputerNotInDomain { + get { + return ResourceManager.GetString("TestComputerNotInDomain", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The computer did not finish restarting within the specified time-out period.. + /// + internal static string TimeoutError { + get { + return ResourceManager.GetString("TimeoutError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The NetBIOS name of the computer is limited to 15 bytes, which is 15 characters in this case. The NetBIOS name will be shortened to "{0}", which may cause conflicts under NetBIOS name resolution. Do you wish to continue?. + /// + internal static string TruncateNetBIOSName { + get { + return ResourceManager.GetString("TruncateNetBIOSName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to NetBIOS name will be truncated.. + /// + internal static string TruncateNetBIOSNameCaption { + get { + return ResourceManager.GetString("TruncateNetBIOSNameCaption", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Verifying that the computer has been restarted.... + /// + internal static string VerifyRebootStage { + get { + return ResourceManager.GetString("VerifyRebootStage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Completed: {0}/{1}.. + /// + internal static string WaitForMultipleComputers { + get { + return ResourceManager.GetString("WaitForMultipleComputers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Waiting for Windows PowerShell connectivity.... + /// + internal static string WaitForPowerShell { + get { + return ResourceManager.GetString("WaitForPowerShell", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Waiting for the restart to begin.... + /// + internal static string WaitForRestartToBegin { + get { + return ResourceManager.GetString("WaitForRestartToBegin", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Waiting for WinRM connectivity.... + /// + internal static string WaitForWinRM { + get { + return ResourceManager.GetString("WaitForWinRM", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Waiting for WMI connectivity.... + /// + internal static string WaitForWMI { + get { + return ResourceManager.GetString("WaitForWMI", resourceCulture); + } + } +} diff --git a/scripts/gen/COMMANDS_MANAGEMENT/ComputerResources.resources b/scripts/gen/COMMANDS_MANAGEMENT/ComputerResources.resources new file mode 100644 index 0000000000000000000000000000000000000000..07dd43fdaa6adb7600dac3e2e7a2f022f5f40b67 GIT binary patch literal 15641 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 + /// Looks up a localized string similar to The user does not have access to the requested information.. + /// + internal static string AttachDebuggerReturnCode2 { + get { + return ResourceManager.GetString("AttachDebuggerReturnCode2", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The specified parameter is not valid.. + /// + internal static string AttachDebuggerReturnCode21 { + get { + return ResourceManager.GetString("AttachDebuggerReturnCode21", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The user does not have sufficient privilege.. + /// + internal static string AttachDebuggerReturnCode3 { + get { + return ResourceManager.GetString("AttachDebuggerReturnCode3", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unknown failure.. + /// + internal static string AttachDebuggerReturnCode8 { + get { + return ResourceManager.GetString("AttachDebuggerReturnCode8", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The path specified does not exist.. + /// + internal static string AttachDebuggerReturnCode9 { + get { + return ResourceManager.GetString("AttachDebuggerReturnCode9", resourceCulture); + } + } + /// /// Looks up a localized string similar to This command cannot be run completely because the system cannot find all the information required.. /// @@ -88,6 +133,15 @@ internal class ProcessResources { } } + /// + /// Looks up a localized string similar to Cannot debug process "{0} ({1})" because of the following error: {2}. + /// + internal static string CouldNotDebugProcess { + get { + return ResourceManager.GetString("CouldNotDebugProcess", resourceCulture); + } + } + /// /// Looks up a localized string similar to Cannot enumerate the file version information of the "{0}" process.. /// @@ -232,6 +286,15 @@ internal class ProcessResources { } } + /// + /// Looks up a localized string similar to The parameter '{0}' is not supported for the cmdlet '{1}' on this edition of Windows.. + /// + internal static string ParameterNotSupported { + get { + return ResourceManager.GetString("ParameterNotSupported", resourceCulture); + } + } + /// /// Looks up a localized string similar to This command stopped operation of "{0} ({1})" because of the following error: {2}.. /// diff --git a/scripts/gen/COMMANDS_MANAGEMENT/ProcessResources.resources b/scripts/gen/COMMANDS_MANAGEMENT/ProcessResources.resources index 103866a70ffdeca39f174704ebb56cc25ad74666..61576ce5e9b7c7224216a4990fe354e7f962d16f 100644 GIT binary patch delta 1172 zcmbVKTSyd982;zX%d@}YHW#fVEC`Aq zOwVJ!6h#kRe6V_mh=d+ODvTZ~j2YKC>3Zmxl&414SpYOk(+XW9|=PpQv z{TGWCwLH_ub^?2WeZbvqpPqdj+Wh?Ly1`fdV_Kvpf28`n^RT{uqN2AnL=;nrPAfz= zArAl_7||6XdJP0$255!-r9@PNeHwBIcPgNpk9{+6R3>^4ZZ+fx^w$C%?o8rb3%MWi zDePwf1!oy?pD^mBQ5Y@*6Cllt5Upw?4@;*6by72NYA2sMusAui3x5x1hb(F$n+%*+ z1u0VXztbwI0rCGmU=_mt2W<@v{7x(SdwsQZiNt_ZEI~oG0LLi2+LLXU zMP;!>Udje!v0iRsOc5vL7`vy4>vBHZsESd!gnd!PXStA-hQvZ8%Em*YQE6auSR7Xh zR5Og1A;y)m&{ib&H7s5zHI)^ZY-tOo>Hz56}BiOHW`C-%b;!?Yqh~$e?p|?5B zO}Z7-VeodpL(Iv^6MfYHOQv^fS#^PsOp=&tzRcld+wkMpXEt>O|T|aZii& eRN|IxL5I4yVFtx(c2e78T87>24!_HJ#J&U2WhxQ? delta 472 zcmWkoO-NKx6h8O7d*6MD4T=k+H!?pm>S&OlF)k8w@SA*LLBFcpup%y8TI9N%G=$m`^?sxvrx6`^2d%dK>^UE#XcK^wz zN}+Fe{##UPRp;EMCfaa_GC&&s5qM1z)q~#=(QRNH@lS?>cM<4;Ka1W9@;yKS@gL-U z@DTE0poI7h_$BHukRJu+u=9aS)SjkcdI*~!`N2^|a@J|%F_M(i%O#Q(C&^mL2dB$q zF@9M-I&sPC+PVzoDWJP_3z(u;)s_SbA^xi5iEiRXmIWQ*=Pa8#%_l7XbZcZCSI=c} z?J=$f*f2)bXp&~=5v8{TcYlT znrqlI4h3;5Tka)(X64vT@ny +// This code was generated by a tool. +// Runtime Version:4.0.30319.34209 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + + + +/// +/// A strongly-typed resource class, for looking up localized strings, etc. +/// +// This class was auto-generated by the StronglyTypedResourceBuilder +// class via a tool like ResGen or Visual Studio. +// To add or remove a member, edit your .ResX file then rerun ResGen +// with the /str option, or rebuild your VS project. +[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] +[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] +[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] +internal class ServiceResources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal ServiceResources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ServiceResources", typeof(ServiceResources).GetTypeInfo().Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to The command cannot be used to configure the service '{0}' because access to computer '{1}' is denied. Run Windows PowerShell as admin and run your command again.. + /// + internal static string ComputerAccessDenied { + get { + return ResourceManager.GetString("ComputerAccessDenied", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 'Cannot access dependent services of '{1} ({0})'. + /// + internal static string CouldNotAccessDependentServices { + get { + return ResourceManager.GetString("CouldNotAccessDependentServices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Service '{1} ({0})' cannot be created due to the following error: {2}. + /// + internal static string CouldNotNewService { + get { + return ResourceManager.GetString("CouldNotNewService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Service '{1} ({0})' was created, but its description cannot be configured due to the following error: {2}. + /// + internal static string CouldNotNewServiceDescription { + get { + return ResourceManager.GetString("CouldNotNewServiceDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Service '{1} ({0})' cannot be resumed due to the following error: {2}. + /// + internal static string CouldNotResumeService { + get { + return ResourceManager.GetString("CouldNotResumeService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Service '{1} ({0})' cannot be resumed because it is not currently running.. + /// + internal static string CouldNotResumeServiceNotRunning { + get { + return ResourceManager.GetString("CouldNotResumeServiceNotRunning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Service '{1} ({0})' cannot be resumed because the service does not support being suspended or resumed.. + /// + internal static string CouldNotResumeServiceNotSupported { + get { + return ResourceManager.GetString("CouldNotResumeServiceNotSupported", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Service '{1} ({0})' cannot be configured due to the following error: {2}. + /// + internal static string CouldNotSetService { + get { + return ResourceManager.GetString("CouldNotSetService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Service '{1} ({0})' description cannot be configured due to the following error: {2}. + /// + internal static string CouldNotSetServiceDescription { + get { + return ResourceManager.GetString("CouldNotSetServiceDescription", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Service '{1} ({0})' cannot be started due to the following error: {2}. + /// + internal static string CouldNotStartService { + get { + return ResourceManager.GetString("CouldNotStartService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Service '{1} ({0})' cannot be stopped due to the following error: {2}. + /// + internal static string CouldNotStopService { + get { + return ResourceManager.GetString("CouldNotStopService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Service '{1} ({0})' cannot be suspended due to the following error: {2}. + /// + internal static string CouldNotSuspendService { + get { + return ResourceManager.GetString("CouldNotSuspendService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Service '{1} ({0})' cannot be suspended because it is not currently running.. + /// + internal static string CouldNotSuspendServiceNotRunning { + get { + return ResourceManager.GetString("CouldNotSuspendServiceNotRunning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Service '{1} ({0})' cannot be suspended because the service does not support being suspended or resumed.. + /// + internal static string CouldNotSuspendServiceNotSupported { + get { + return ResourceManager.GetString("CouldNotSuspendServiceNotSupported", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot find any service with display name '{1}'.. + /// + internal static string NoServiceFoundForGivenDisplayName { + get { + return ResourceManager.GetString("NoServiceFoundForGivenDisplayName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot find any service with service name '{0}'.. + /// + internal static string NoServiceFoundForGivenName { + get { + return ResourceManager.GetString("NoServiceFoundForGivenName", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Service '{1} ({0})' resume failed.. + /// + internal static string ResumeServiceFailed { + get { + return ResourceManager.GetString("ResumeServiceFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Waiting for service '{1} ({0})' to resume.... + /// + internal static string ResumingService { + get { + return ResourceManager.GetString("ResumingService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot stop service '{1} ({0})' because it has dependent services. It can only be stopped if the Force flag is set.. + /// + internal static string ServiceHasDependentServices { + get { + return ResourceManager.GetString("ServiceHasDependentServices", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot stop service '{1} ({0})' because it has dependent services.. + /// + internal static string ServiceHasDependentServicesNoForce { + get { + return ResourceManager.GetString("ServiceHasDependentServicesNoForce", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot stop service '{1} ({0})' because it is dependent on other services.. + /// + internal static string ServiceIsDependentOnNoForce { + get { + return ResourceManager.GetString("ServiceIsDependentOnNoForce", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} ({1}). + /// + internal static string ServiceNameForConfirmation { + get { + return ResourceManager.GetString("ServiceNameForConfirmation", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Waiting for service '{1} ({0})' to start.... + /// + internal static string StartingService { + get { + return ResourceManager.GetString("StartingService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Failed to start service '{1} ({0})'.. + /// + internal static string StartServiceFailed { + get { + return ResourceManager.GetString("StartServiceFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Waiting for service '{1} ({0})' to stop.... + /// + internal static string StoppingService { + get { + return ResourceManager.GetString("StoppingService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Service '{1} ({0})' stop failed.. + /// + internal static string StopServiceFailed { + get { + return ResourceManager.GetString("StopServiceFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Waiting for service '{1} ({0})' to suspend.... + /// + internal static string SuspendingService { + get { + return ResourceManager.GetString("SuspendingService", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Service '{1} ({0})' suspend failed.. + /// + internal static string SuspendServiceFailed { + get { + return ResourceManager.GetString("SuspendServiceFailed", resourceCulture); + } + } +} diff --git a/scripts/gen/COMMANDS_MANAGEMENT/ServiceResources.resources b/scripts/gen/COMMANDS_MANAGEMENT/ServiceResources.resources new file mode 100644 index 0000000000000000000000000000000000000000..0ae58a744b643e6eaadcc6705473ab0585aa0e33 GIT binary patch literal 3777 zcmcInPiz!b7=MET(F=G`At-s$rY*QkTKOkUAVO=QMX_|7mUzHSXWnjKnSF13Z>H-8 z>p@M#1BpFw;2?>K@hn_StU*1fK>~P@-~mmPm>4xC#)Fce{@%<^yMLy1i*cv3Z+7PQ z{l4$}ec$_bd*#dDE?9(+S)6{pqC-})N0^q8a+#jL8exvdRF0OkE0xbDa&(L-&8670 z-R?F=j`l@<7%8?#uqafHpQFRkgwNeWtTHN(GqGo4*Dhy=yJKh1?rqyy_mjKZnw>== z~nR_x&7VTsXw<}c>dkGuR z7M~~XC1f1y9L|4m{VMLC!SnUF-iq})&P}jg4Z9OFS09n21V}_e!iXaKh>L>}jiVo{ARO-=Cms_20=pjE-2a?DGmcvZh&3`u(uVU2~dMw!AF32IHD5dQRKL#(R?I^M#z;lcsmJr zQ)Y|9lgvk;gNVfuq)4uUVt?x%6N)@20vr${LMGm0Nrco4u{lVkZdPM7+_(VD((o)Go3eYo zmg!Q;WVS?rIGU^RDN#^_1(bVxuTu|d(0aL-(`FuD|(c!|jx;y)lxT=mk7BB(gFpWo3 zS%_WIE(Er@(|S5TA85}^^=3_Su3}Dz{JaQh$vCru^nF?8qDYxiQuWdkPs~_6i>8d2 zs{}bZ5rve8CQa=s9)$RvQR^oaZ)sOcM68&ON-ab@lojzpRa2U@avafXYD(@#NXu7(9W==_r$8_Fc zvLq(9ZCkn;gDG<+x<=(mOqk{wXVXD!Q%6uKuuCzb(~jYVc!CW`{2xRMzEd=NTC>o$ z_WyUM*3dFI;(4FWW=ukfBF}51ZR +// This code was generated by a tool. +// Runtime Version:4.0.30319.34209 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + + + +/// +/// A strongly-typed resource class, for looking up localized strings, etc. +/// +// This class was auto-generated by the StronglyTypedResourceBuilder +// class via a tool like ResGen or Visual Studio. +// To add or remove a member, edit your .ResX file then rerun ResGen +// with the /str option, or rebuild your VS project. +[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] +[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] +[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] +internal class MatchStringStrings { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal MatchStringStrings() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("MatchStringStrings", typeof(MatchStringStrings).GetTypeInfo().Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Cannot open the file because the current provider ({0}) cannot open files.. + /// + internal static string FileOpenError { + get { + return ResourceManager.GetString("FileOpenError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The file {0} cannot be read: {1}. + /// + internal static string FileReadError { + get { + return ResourceManager.GetString("FileReadError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The option "Context" is not valid when searching results that are piped from Select-String output.. + /// + internal static string FilterContextWarning { + get { + return ResourceManager.GetString("FilterContextWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The string {0} is not a valid regular expression: {1}. + /// + internal static string InvalidRegex { + get { + return ResourceManager.GetString("InvalidRegex", resourceCulture); + } + } +} diff --git a/scripts/gen/COMMANDS_UTILITY/MatchStringStrings.resources b/scripts/gen/COMMANDS_UTILITY/MatchStringStrings.resources new file mode 100644 index 0000000000000000000000000000000000000000..fab1a71d3f9013087f47c18e078a2cda803da8f5 GIT binary patch literal 613 zcmZWn%}yIJ5cZ-z1mePoUO);_P)Yfbf`kH<`Xe<;Pm3pc$6k%cAr$cpRn-^Z z)@SIY55R##p8|2=%&p@<5EA1ZuXnz0X1?9o>#MuJg;MILxEq{B#&NTcF(fh=pH6+$ z6;cDn(FAg~Y`_!W1rha1JX>%7AYZND`QIraAfD|B?hB|@^$h+b@ajW03rMOfSzhJyRQ9hzCwaEwLvf`R z-^*#<%+`@`JaHrhpzTMFoYUC@Cf19I)oC9P7!ATlZenW)D$LGJ~6DGw=UMe zJj=^Dv01>;JYN`dLWw{!nq4^GxG2iZ2sO)CV5J*8(1cLi8Y?)aFopp-G`v1w%FK|sPTVZoxkr46WgU;z^<#a)VRD)Pr?u41 IKgdklf0Qb^K>z>% literal 0 HcmV?d00001 diff --git a/scripts/gen/COMMANDS_UTILITY/UpdateDataStrings.cs b/scripts/gen/COMMANDS_UTILITY/UpdateDataStrings.cs new file mode 100644 index 000000000..31d73c883 --- /dev/null +++ b/scripts/gen/COMMANDS_UTILITY/UpdateDataStrings.cs @@ -0,0 +1,270 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.34209 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + + + +/// +/// A strongly-typed resource class, for looking up localized strings, etc. +/// +// This class was auto-generated by the StronglyTypedResourceBuilder +// class via a tool like ResGen or Visual Studio. +// To add or remove a member, edit your .ResX file then rerun ResGen +// with the /str option, or rebuild your VS project. +[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] +[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] +[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] +internal class UpdateDataStrings { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal UpdateDataStrings() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("UpdateDataStrings", typeof(UpdateDataStrings).GetTypeInfo().Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Cannot update the format data with a FormatTable instance.. + /// + internal static string CannotUpdateFormatWithFormatTable { + get { + return ResourceManager.GetString("CannotUpdateFormatWithFormatTable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot update a member with type "{0}". Specify a different type for the MemberType parameter.. + /// + internal static string CannotUpdateMemberType { + get { + return ResourceManager.GetString("CannotUpdateMemberType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot update the type data with a TypeTable instance.. + /// + internal static string CannotUpdateTypeWithTypeTable { + get { + return ResourceManager.GetString("CannotUpdateTypeWithTypeTable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Updating format data is not allowed in this runspace. The 'DisableFormatUpdates' property is set to True when creating the runspace.. + /// + internal static string FormatUpdatesDisabled { + get { + return ResourceManager.GetString("FormatUpdatesDisabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The MemberName, Value, and SecondValue parameters cannot be specified without the MemberType parameter.. + /// + internal static string MemberTypeIsMissing { + get { + return ResourceManager.GetString("MemberTypeIsMissing", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remove TypeData. + /// + internal static string RemoveTypeDataAction { + get { + return ResourceManager.GetString("RemoveTypeDataAction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Name of the type that will be removed: {0}. + /// + internal static string RemoveTypeDataTarget { + get { + return ResourceManager.GetString("RemoveTypeDataTarget", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remove type file. + /// + internal static string RemoveTypeFileAction { + get { + return ResourceManager.GetString("RemoveTypeFileAction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The value of the SerializationDepth property should not be negative.. + /// + internal static string SerializationDepthNegative { + get { + return ResourceManager.GetString("SerializationDepthNegative", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The {0} parameter is required for the type "{1}". Please specify the {0} parameter.. + /// + internal static string ShouldBeSpecified { + get { + return ResourceManager.GetString("ShouldBeSpecified", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The {0} parameter should not be null or an empty string for a member of type "{1}". Specify a non-null value for the {0} parameter when updating this member type.. + /// + internal static string ShouldNotBeNull { + get { + return ResourceManager.GetString("ShouldNotBeNull", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The {0} parameter is not necessary for a member of type "{1}", and should not be specified. Do not specify the {0} parameter when updating this member type.. + /// + internal static string ShouldNotBeSpecified { + get { + return ResourceManager.GetString("ShouldNotBeSpecified", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The target type name should not be null, empty, or contain only white spaces.. + /// + internal static string TargetTypeNameEmpty { + get { + return ResourceManager.GetString("TargetTypeNameEmpty", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No member is specified for the update on type "{0}".. + /// + internal static string TypeDataEmpty { + get { + return ResourceManager.GetString("TypeDataEmpty", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The file {0} is not imported into the current session.. + /// + internal static string TypeFileNotExistsInCurrentSession { + get { + return ResourceManager.GetString("TypeFileNotExistsInCurrentSession", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot read the file "{0}" because it does not have the file name extension "{1}".. + /// + internal static string UpdateData_WrongExtension { + get { + return ResourceManager.GetString("UpdateData_WrongExtension", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot open the file because the current provider is "{0}", and this command requires a file.. + /// + internal static string UpdateData_WrongProviderError { + get { + return ResourceManager.GetString("UpdateData_WrongProviderError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Update FormatData. + /// + internal static string UpdateFormatDataAction { + get { + return ResourceManager.GetString("UpdateFormatDataAction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to FileName: {0}. + /// + internal static string UpdateTarget { + get { + return ResourceManager.GetString("UpdateTarget", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Update TypeData. + /// + internal static string UpdateTypeDataAction { + get { + return ResourceManager.GetString("UpdateTypeDataAction", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Type to update: {0}. + /// + internal static string UpdateTypeDataTarget { + get { + return ResourceManager.GetString("UpdateTypeDataTarget", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The Value and SecondValue parameters should not both be null for a member of type "{0}". Specify a non-null value for one of the two parameters.. + /// + internal static string Value1AndValue2AreNotBothNull { + get { + return ResourceManager.GetString("Value1AndValue2AreNotBothNull", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Only one member type can be specified. The member types specified are: "{0}". Update the type with only one member type.. + /// + internal static string WrongMemberCount { + get { + return ResourceManager.GetString("WrongMemberCount", resourceCulture); + } + } +} diff --git a/scripts/gen/COMMANDS_UTILITY/UpdateDataStrings.resources b/scripts/gen/COMMANDS_UTILITY/UpdateDataStrings.resources new file mode 100644 index 0000000000000000000000000000000000000000..eeb035a151759930df987e4e69ba99287ad79d07 GIT binary patch literal 3199 zcmai0Ux-vy7(X{PkO&nY3IjQ;q$1OxwywFhg1h6^7P~GxqqanU&fGaWbMxMF#&gfz z-O+*seW)iZ2q7i%sR)W73JQEFD20L`AB2j0iJ*s|pnUB2oqO-hopo$y=FUC$obT`N z`+eWc_t*ct>M_RNz!g?Iv6WGIPR2ShzKpx8IVl>_lz0^T+Jr&9#E(l82U?8{mv_^< z#3z!_CPt1anOGyj5}!@#VcD&5V@Gz20DN*JrL4jf4KI21!Mpddy(e%uXoW%}^YwqEMP8P;0PpY*roSK8!5j zlGvSx*w&)hjH^Bg&p5@9eFTx6gGKJNR|U7W7qiV_n?Y<5tRBHPMciS3L3B%goTJ)1 zJ`5(0=f^oTX>>=>0#sOwYYOmBAX0<3#M&ZBiG8Xgm1YTM_7+)@dwPMLfC`B;5!5mi zNj+El7;2-dsm(eAi}2KdvVj?jf_h~w+No4jFLE@Gpjc-g3J(?)iWn~9aA*Hv+C76T zonKA3X!&gjj~;i#N|3@Ha8Dtb-p*d^5U@EdXf(9C)c6qUya!{kvnGH;0%MjPx|cC; zbV4YlEl=7FVI{XM$rrSVgynb^d?~OkF8HL|s)>3id7xq|lrPKP^ZmMlM>48QlPcLx zTk@eZyI&b9^J-iA!9oXy8o|PXG*Vga&f&_roOX&eQfUh#B59>5dn5h!DK@87jEr=%Gl`1Z0{QS79PFqBF{PPi?Ci*R2X7nQmd18C z6k>_!HLsaO@}-tk+&41yMiF++c}=pHW;TPA@Y^TC1UI1?yefUI8g8SPam@X+7mO%ig5{L1x@j690~3VLC4V!SSR7>CdXm zhBB{chjqF$0HjsJn*${ONdjBL&s7ccv+>lAsfRH=iOe-2P zDSD~Y1+RwK(wXr;Go)BajZUSmBuZ031~6{LfF95RT6G73UDCaNM)8-A5+O*S&;c~X i$ZMAi>0~WP6nP>HK*)Y4G8hPPM;7<%<2bj%MfpGUZ=}uu literal 0 HcmV?d00001 diff --git a/scripts/gen/COMMANDS_UTILITY/UtilityCommonStrings.cs b/scripts/gen/COMMANDS_UTILITY/UtilityCommonStrings.cs index 5e3590673..d747551f8 100644 --- a/scripts/gen/COMMANDS_UTILITY/UtilityCommonStrings.cs +++ b/scripts/gen/COMMANDS_UTILITY/UtilityCommonStrings.cs @@ -61,6 +61,15 @@ internal class UtilityCommonStrings { } } + /// + /// Looks up a localized string similar to Algorithm '{0}' is not supported in this system.. + /// + internal static string AlgorithmTypeNotSupported { + get { + return ResourceManager.GetString("AlgorithmTypeNotSupported", resourceCulture); + } + } + /// /// Looks up a localized string similar to This command cannot be run because '{0}' is empty or blank. Please specify CSSUri and then run the command.. /// @@ -97,6 +106,33 @@ internal class UtilityCommonStrings { } } + /// + /// Looks up a localized string similar to Path: . + /// + internal static string FormatHexPathPrefix { + get { + return ResourceManager.GetString("FormatHexPathPrefix", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot display the context of {0} as hex. The path resolves to multiple files.. + /// + internal static string FormatHexResolvePathError { + get { + return ResourceManager.GetString("FormatHexResolvePathError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot convert input of type {0} to hexadecimal. To view the hexadecimal formatting of its string representation, pipe it to the Out-String cmdlet before piping it to Format-Hex.. + /// + internal static string FormatHexTypeNotSupported { + get { + return ResourceManager.GetString("FormatHexTypeNotSupported", resourceCulture); + } + } + /// /// Looks up a localized string similar to The command cannot be run because using the AsHashTable parameter with more than one property requires adding the AsString parameter.. /// diff --git a/scripts/gen/COMMANDS_UTILITY/UtilityCommonStrings.resources b/scripts/gen/COMMANDS_UTILITY/UtilityCommonStrings.resources index 9389b5e1f7101987a9b21f4e255f1e471fa327df..e0a0150a8e022d274f90a4b6f80f1b90af5a4317 100644 GIT binary patch delta 779 zcmZvXO-NKx6vxlK^GXUrr4NiKZb}V-PNIFvY-Dh<+UvzrpHIv_UH`hV!P^Qi+U~z?o*w+3AG*H(*M+g{%EkF_=H?P3 z8Y7}P| zbqYz6xyC!rLq`XO&Pt0X@gbQY7*x`nY z+m9!+2p}7}VK{0un$`|-gmW3B8Z{y9`&T*!K@5OPRaD!?AsC|+`|$s^t*7vnhF-Q49p0iAzAL5gixr)@ZOqCb-JIlP`U3}9rUwHqylRJo5 z@1Q#!L`plJ$lmIm%L)|>KhPqsgkcbASrW<@+Cew2$69(hcEjv$=~~Wb23TX~sI8p= z!A1(UpO{K24qdwry%bY{uVqb(pe(=@b}SrO%ZUk$LbyaE>zz@YZdt2B2+*to$QnBf2pE-#_QH0j_3Q^yZBuCb#3-1}cmu6o44 zz#t98Yk@e1k%3_$5ZePWI}nEh#gu?_8IV2(q(Q&}h{c&F7cxpRGEDAflwr)Byn<1V z=^ex56O6KqR+H + /// Looks up a localized string similar to The ShowCommandInfo and Syntax parameters cannot be specified together.. + /// + internal static string GetCommandShowCommandInfoParamError { + get { + return ResourceManager.GetString("GetCommandShowCommandInfoParamError", resourceCulture); + } + } + /// /// Looks up a localized string similar to Cannot process the cmdlet. A cmdlet name must consist of a verb and noun pair separated by '-'.. /// diff --git a/scripts/gen/SYS_AUTO/DiscoveryExceptions.resources b/scripts/gen/SYS_AUTO/DiscoveryExceptions.resources index 2e09392028966e58e8645af1d1e62f7ca112dedf..b0393d33f932b3c5d89a561339422b2b7bc520e7 100644 GIT binary patch delta 391 zcmZ9Cze_?<9L2x)rSCp0q@|!G?vfx$l(-Z@gOv$UkjsEk7*V2!=oEJlzN8b4;4VW~*jB+lg1&}^uVuTeO4O`sZV`5_!J_Fsa-y-EFNZCs>&0Z-ls143~Q-Z zzR2oo${5pPVYO*YvRvoP_~NP5nk7ZXa;r(#woRvyc8acmi_DJWo7KsGCoW@ckxPzAEL0ma#Y z>K*}AZU^FXtdsK?r8FM^r8e=*^}L$bv73RgU;l0>~fQL zv-2_PPCmtM!nBur5{Esb-(&|4A4bQ?y&QT>k9jBW<*;Ow-29#6JNssH!9I2XI&Uy^ diff --git a/scripts/gen/SYS_AUTO/FileSystemProviderStrings.cs b/scripts/gen/SYS_AUTO/FileSystemProviderStrings.cs index 7e7e8bc53..4572fb948 100644 --- a/scripts/gen/SYS_AUTO/FileSystemProviderStrings.cs +++ b/scripts/gen/SYS_AUTO/FileSystemProviderStrings.cs @@ -196,6 +196,105 @@ internal class FileSystemProviderStrings { } } + /// + /// Looks up a localized string similar to Destination path {0} is a file that already exists on the target destination.. + /// + internal static string CopyItemRemoteDestinationIsFile { + get { + return ResourceManager.GetString("CopyItemRemoteDestinationIsFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot copy a directory '{0}' to file {0}'. + /// + internal static string CopyItemRemotelyDestinationIsFile { + get { + return ResourceManager.GetString("CopyItemRemotelyDestinationIsFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Failed to copy file {0} to remote target destination.. + /// + internal static string CopyItemRemotelyFailed { + get { + return ResourceManager.GetString("CopyItemRemotelyFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Failed to create directory '{0}' on remote destination.. + /// + internal static string CopyItemRemotelyFailedToCreateDirectory { + get { + return ResourceManager.GetString("CopyItemRemotelyFailedToCreateDirectory", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Failed to get directory {0} child items.. + /// + internal static string CopyItemRemotelyFailedToGetDirectoryChildItems { + get { + return ResourceManager.GetString("CopyItemRemotelyFailedToGetDirectoryChildItems", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Failed to read remote file '{0}'.. + /// + internal static string CopyItemRemotelyFailedToReadFile { + get { + return ResourceManager.GetString("CopyItemRemotelyFailedToReadFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Failed to validate remote destination '{0}'.. + /// + internal static string CopyItemRemotelyFailedToValidateDestination { + get { + return ResourceManager.GetString("CopyItemRemotelyFailedToValidateDestination", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot validate if remote destination {0} is a file.. + /// + internal static string CopyItemRemotelyFailedToValidateIfDestinationIsFile { + get { + return ResourceManager.GetString("CopyItemRemotelyFailedToValidateIfDestinationIsFile", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Remote copy with {0} is not supported.. + /// + internal static string CopyItemRemotelyOperationNotSupported { + get { + return ResourceManager.GetString("CopyItemRemotelyOperationNotSupported", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Copying {0} to {1}. + /// + internal static string CopyItemRemotelyProgressActivity { + get { + return ResourceManager.GetString("CopyItemRemotelyProgressActivity", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to From {0} to {1}. + /// + internal static string CopyItemRemotelyStatusDescription { + get { + return ResourceManager.GetString("CopyItemRemotelyStatusDescription", resourceCulture); + } + } + /// /// Looks up a localized string similar to Item: {0} Destination: {1}. /// diff --git a/scripts/gen/SYS_AUTO/FileSystemProviderStrings.resources b/scripts/gen/SYS_AUTO/FileSystemProviderStrings.resources index 53220863f55a24680cceba003fd07c6348c9c094..4c9458ea8a0d9fdb6f4e496ffa6a4d47ae10e535 100644 GIT binary patch delta 2256 zcmbtUU2GIp6h3piv%9l9TWUiPWNQc7+Lmn>3N@gOEp=gWEiFGKG$ws;vOA@dZg-a5 zp-?NVX`}HcDC9yQQe*W26Y&Qm0i&@Y(FkdR6^X{EP+oWt?SlzXqJjF&Y=41JiJP6d z_nz~e?|k>1d#Atple&HH)J7=#+gQKG`rr7w?S;3_eA)Zni_iDXeePo4@7F(m<>j0F zHE;jiz414W?E9>)`oLFvh7O#++;`AeJ+gmzlVe?Xr*869g5Uq=KOTQ{ zQ*FWbBb~*KKjf6vj%ETwdyWM+Ejw4upB4N$C!*i+9-%T*>?2AEL>s(Bhee_fF|T!C z?IKFLiJIZh&mjuPM3*ogWkhWfk?JJc4cq&8x`5?)nmt5KxkSeiH;6qg0cSa|t%x}W zo?LLxfj2Dwj0}{lx5dULE1M=4y1IHsg3N6dx5_nro0e*;BPzuvYhDGGtut8u1IboU z#33j)xqZ8}R{f{@BGuDXv*p@=!>OS=lgE$O`xazAy`zwK zDZxgB8MF;=YpZFhw_B}K7X+B7^A(WHdUl%uwQ}zOLG~O+DK!TSNf>qTC+NC^Zx?Hr zDDscQLbgcc!{Umf1TL*Vd&Z`pinX*0QP!R65qXKTgdG?8dS@lOCh{IAn$MP6j!L#x;=>qP zBz{XOX9E&1_bg%#4`1&oXAuwI=_z6#czD03ij8>quqPyz;Ip}$H+dCX)7xI&;0-7z zV4P=N3hUr@VqA+BTdhvfpp8F2j?a_%kT<{<%lt2I9a}2%Rq{&KAoJ~VC5y^@Kz@vM z$^2(|A$wEiH()$1^HSdm*6ic0z9-mTA3x$-z%Khvp7IsuWE$6KX;V+ArfwvZq-wS+ zJX1i)CYCNT>v2I1%rKiob0;Jgvmzvt9nM!PmASf&esfmPPDp4cZ z4T_ka(xRr3>Q+iYTdJ5wmepDakA_t}6W3yv)yCTit@JRYv`)jkdybWen+St0pl(kC zf#dNr#Fb42+QK0&lT~LWjkfFYn4+6nXF4b>nu1zepP;i9+FJ<<6;qHdHLk}jA$MlY zZagSdj~8YVs<&C_4r`OsM9!>!PwhnfEcIs2@v5K7DkxUvXQ;P+K{16JRC$`z~ aC|^(2ZedP1Wpqw6@PWAnC;!L`NdE$+qAaZd delta 831 zcmX|8TSydP6h8a!%6n7i9*>yojpQC?Cqb-M^YENEp9>4RwsURuQ>D-0tM z>p{Gns33a?vP_B4r3(^K`Cu<*h!=WLUrRCwOw>U7Hlcs!%sJ;f-}%m&nbG|IjGjkn zd9;0sL&szH`ex0IhwsO4KJ932|FQbww${I+tD*Zr&scuOoyo=a-ldX+`Ki_A`DoY5 zz{1Cs_!6Ok2oDzH*mvP6^z+XB9!5|x4f4y(>WV+L_Kdd>j1LvIYe0kuxl znxS_W{lDOYunv{l=ox~S5L<&yK(HNyhG0_=iJf5x7Qkvz>j5VSq5Fuxg0qYPhrt;F zmV-gx5g$eE9{ff0*Molry+Lq8;Cg^nA}$C2jg2TP6x|Y&f|HaS;Wl!a;uYCOZdKAn zhml8+^%;3u@rwx~Zzw@wkT_NKin9_IseUmiag*v2ixPLK0pXH)O!bKpnU~K$IP(M!L+pmM*@T zxWc+$NM`P}`i0ZXVVj3%t-A1ShmuW~Gx0hHx!9J->9zz>7%K!txtUwxB4!@8?G>-h zJZDQ5E(>oUtFUm2-6zH^Tx35W)-2p=KPGY&{$S4(uM}Rl2RxtfpPVPDnj&7Xr%QWPLY(k>W+A%DeQSd<|e0KquGeN!~7G z38&~1 + /// Looks up a localized string similar to METHODS. + /// + internal static string Methods { + get { + return ResourceManager.GetString("Methods", resourceCulture); + } + } + /// /// Looks up a localized string similar to The ModuleBase directory cannot be found. Verify the directory and try again.. /// diff --git a/scripts/gen/SYS_AUTO/HelpDisplayStrings.resources b/scripts/gen/SYS_AUTO/HelpDisplayStrings.resources index c1b08cf0cfcf7656152ecff959e73086d3653e05..b1b581057201cf495b2dde2d2841904d05956406 100644 GIT binary patch delta 1176 zcmYjPe`u6-9DY9Mou1qK``&wR)wXV9jdN|+9Mfjg(0(bkX?Vv#EyA%=)7fly%2Y`9 z#~?6a_=%tlVKovZqg*I9aW;v5SjdpkPe|e{NVAzmU^IF*3p#k;@Avb3pU?9=-_LtT zIxln%4#}?f-gryqd}@5BD?`in9dv*J02iac827(%-x>oBgn%IdoDyK1`*ss3vcAl9 z!(8A5c}s2J$x>i}3pC6DstjQ3Jm6zu{aml{JWDLYwKyMG$bRL1I08&^-5JF`faJ>- z&`8k`o3_wQ_zbc!&$9vzAEfwW47iXYix}u93S3}Mi1;L*Ve%}74%oMYoDDqhBCmlV zcQM=*513;Abzbmp?vGR3r|u1l{s&0>i@^I_PqMjzAsU!&51+#{xx{)ClYc|b%V8i# z!y^<;)8sCS4pHb3v18;N<|S;J^s)YfTIaZaOWntbx#aJs`A5XBP-io-i%+q^VDU7K zI(T@7&v~Y9VI8IT_q@?Mo=0hZmVsJXM|d_(>}Q6U`Q5?WcX555oTC&UXJ3-s@sV}m z(x_v#BZmUEpogqH#&n}mC!gp`Mp_a&YP4CI8L!pYi0vf)sc|zI`J2#E-D{?_)AU1O zTl>sqvP4gsEfw3TOm+{RBYS{F$xKmTk;i^5wJN=X1dTP=NpQ#Pdq`WYJLRZ$ST%A& z_gZP0&|_9gru33kE4JR^JFQiAO{ASO@pWRZFWvf#y;%D66}wtK)6;fiDD3K0yGndD zo#j%YtDQ1gq??^4S)s2vMPtbN$PsHMHZ;KwX#(|aO)%Q@B=)cXWf)m1fGm)tyd#o>Jwg*{GcyzKdonbou=@yqojQ{jdL)Hu=?|kgpy768TC8 z{c<^^$Njpq?&;v zEA^N7L(-v*L35;#0Gjkhyj%x@K$KWg&jh}_OLk-AbDq}d7>D(v-kV6tP0c3ifm|pa= delta 1192 zcmYk5ZERC@6voe~bk?oCy>0K>Wf@~O+o;er6%Ee8a0Fu_8RB#wG^nv-Lvi95-OM1G zB8eY_Xw*Z9iZM*o1u+^nKKQ{1I*m(wA*e`}1x<{IQ9(iW!OXW`yC7@w@A*H^Ip;ag zxi|OIu92>1hjsAKt8b{a`<539uE>)j@?JpXE$$b%r(z;c`$UFS72R*0g2*-se}Wh$?x(p46V-Wb))8v+%{XSER?XV+Q1kq51gPqhN2q!XP+kNB zfV}LmMyIyvDahbj8HC(i`hNi;K9^WU$HOIweb(>P>jB&2WOTwlc2auA&N+>~GS_}{ zDs6Gt)dpK0uGgC_7p~Ivwk^C=`|MCSsUO(a;jC}QwKDf=t+15aR_(F4ce`vsdNYQ$ z;9z6PSlV{DOIn*rSIwp$CDC0fxwP8r~(Mfxe`?S3uZPS4L z8%-}<%*W*3DO(v;w47&bUT%U6&XNPXjUl<9 z4th2EyiItE*y|53ty5N4nbD7IZDos|ww;yjzL~h4jW4j;sOw*m;N!I4<29h9e+?*G zLcMWMdu@AssekAH+)20*`!$}`ahsn==_$K~|DUZdk=Fh8aw4f+V@DF>p|M>JM=SmV D!=n3i diff --git a/scripts/gen/SYS_AUTO/HelpErrors.cs b/scripts/gen/SYS_AUTO/HelpErrors.cs new file mode 100644 index 000000000..a641c23f2 --- /dev/null +++ b/scripts/gen/SYS_AUTO/HelpErrors.cs @@ -0,0 +1,270 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.34209 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + + + +/// +/// A strongly-typed resource class, for looking up localized strings, etc. +/// +// This class was auto-generated by the StronglyTypedResourceBuilder +// class via a tool like ResGen or Visual Studio. +// To add or remove a member, edit your .ResX file then rerun ResGen +// with the /str option, or rebuild your VS project. +[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] +[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] +[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] +internal class HelpErrors { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal HelpErrors() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("HelpErrors", typeof(HelpErrors).GetTypeInfo().Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to Starting a browser to display online Help failed. No program or browser is associated to open the URI {0}.. + /// + internal static string CannotLaunchURI { + get { + return ResourceManager.GetString("CannotLaunchURI", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to ForwardHelpTargetName cannot refer to the function itself.. + /// + internal static string CircularDependencyInHelpForwarding { + get { + return ResourceManager.GetString("CircularDependencyInHelpForwarding", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to To use the {0}, install Windows PowerShell ISE by using Server Manager, and then restart this application. ({1}). + /// + internal static string GraphicalHostAssemblyIsNotFound { + get { + return ResourceManager.GetString("GraphicalHostAssemblyIsNotFound", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot process the Help category because "{0}" is not a valid Help category.. + /// + internal static string HelpCategoryInvalid { + get { + return ResourceManager.GetString("HelpCategoryInvalid", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot load the Help file "{0}". Details: {1}.. + /// + internal static string HelpFileLoadFailure { + get { + return ResourceManager.GetString("HelpFileLoadFailure", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot access the Help file "{0}" because the current user does not have access rights to the file. Details: {1}.. + /// + internal static string HelpFileNotAccessible { + get { + return ResourceManager.GetString("HelpFileNotAccessible", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The Help file "{0}" is not a valid xml document. Details: {1}.. + /// + internal static string HelpFileNotValid { + get { + return ResourceManager.GetString("HelpFileNotValid", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot load the Help file. The following {1} errors occurred while loading the Help file "{0}".. + /// + internal static string HelpLoadError { + get { + return ResourceManager.GetString("HelpLoadError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Get-Help could not find {0} in a help file in this session. To download updated help topics type: "Update-Help". To get help online, search for the help topic in the TechNet library at http://go.microsoft.com/fwlink/?LinkID=107116.. + /// + internal static string HelpNotFound { + get { + return ResourceManager.GetString("HelpNotFound", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The specified URI {0} is not valid.. + /// + internal static string InvalidURI { + get { + return ResourceManager.GetString("InvalidURI", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to An error occurred while loading Help content for {0} from file {1}. Details: {2}. To download updated Help topics, run the Update-Help cmdlet. To get help online, search for the Help topic in the TechNet library at http://go.microsoft.com/fwlink/?LinkID=107116.. + /// + internal static string LoadHelpFileForTargetFailed { + get { + return ResourceManager.GetString("LoadHelpFileForTargetFailed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The node "{0}" can have a maximum of {2} child nodes of type "{1}". Node Path: {3}.. + /// + internal static string MamlInvalidChildNodeCountError { + get { + return ResourceManager.GetString("MamlInvalidChildNodeCountError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The node "{0}" cannot have "{1}" as a child node. Node Path: {2}.. + /// + internal static string MamlInvalidChildNodeError { + get { + return ResourceManager.GetString("MamlInvalidChildNodeError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Multiple Help topics were found. Use only one Help topic with the -{0} option.. + /// + internal static string MultipleOnlineTopicsNotSupported { + get { + return ResourceManager.GetString("MultipleOnlineTopicsNotSupported", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to No parameter matches criteria {0}.. + /// + internal static string NoParmsFound { + get { + return ResourceManager.GetString("NoParmsFound", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The online version of this Help topic cannot be displayed because the Internet address (URI) of the Help topic is not specified in the command code or in the help file for the command.. + /// + internal static string NoURIFound { + get { + return ResourceManager.GetString("NoURIFound", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} is not supported by the requested Help category.. + /// + internal static string ParamNotSupported { + get { + return ResourceManager.GetString("ParamNotSupported", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The protocol specified in the Uri "{0}" is not supported. Only "{1}" and "{2}" protocols are supported.. + /// + internal static string ProtocolNotSupported { + get { + return ResourceManager.GetString("ProtocolNotSupported", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The provider "{0}" cannot be loaded. Details: {1}.. + /// + internal static string ProviderLoadError { + get { + return ResourceManager.GetString("ProviderLoadError", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot find the registry key: "{0}{1}"; using "{2}" to load Help files.. + /// + internal static string RegistryPathNotFound { + get { + return ResourceManager.GetString("RegistryPathNotFound", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot get Help from a remote runspace, because the runspace has not been opened. Open the runspace by running an implicit remoting command, and then try running the command to get Help again.. + /// + internal static string RemoteRunspaceNotAvailable { + get { + return ResourceManager.GetString("RemoteRunspaceNotAvailable", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} does not work in a remote session.. + /// + internal static string RemotingNotSupportedForFeature { + get { + return ResourceManager.GetString("RemotingNotSupportedForFeature", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Access is denied. The command could not update Help topics for the Windows PowerShell core modules, or for any modules in the $pshome\Modules directory. To update these Help topics, start Windows PowerShell by using the "Run as Administrator" command, and try running Update-Help again.. + /// + internal static string UpdatableHelpRequiresElevation { + get { + return ResourceManager.GetString("UpdatableHelpRequiresElevation", resourceCulture); + } + } +} diff --git a/scripts/gen/SYS_AUTO/HelpErrors.resources b/scripts/gen/SYS_AUTO/HelpErrors.resources new file mode 100644 index 0000000000000000000000000000000000000000..3e792be25c86b5611ee79ac72cf646f4d30b799f GIT binary patch literal 3934 zcmb_fO^h5z6|Qy?Fya~s6CqTLqsWdX?Ol6glO+xr?|PlZ-kgHz4k(};_&FH9SJgkeYg@_z zuY0z;`qlT|``-6n&A#{UM{fm;v6peBo72*&EZk6~u8dS=d$*xPq)eY@rPL-(hJAif znKIG&>A7%*e)@c&N^ND->0DLTh_uhwt6`eR^J==KFRT3Y@YE^sxP1KN>=P&E)XbNk zIDDtGDz{0d8t%apI`aYs~>&sZ$JIP!S`RkdHB}v-}o;U zKK%1PZoGTxUoU?A&wu~@OW$Jizx?q2OV7Ud`Gep2%-roi+4PFF?j?@SDQrZ9LPz!?+&B+I@Kb z4XznnS7G;8T$gY^hu^Q@`T#ax$L~MF{taC3;91~$0BbiMVC;(vOt2h3npt)M_Z99X zi`h2YV9VIR*x~|9n89L&2n6mHnPLU5oJH2DLHut_KKG!h}LgTwsd*1m^ti<`-M{p9R4W zHAaowvv6lzwCC~qQ1g0!mapUGgT!W+jW5NksOrfEtl8ZJ>?z+u1O}8SP}5|oknyjv z^~n{y%#ik8>;+eh6h;&X)pG&AiEzuhh~K%NvE!cBfS=!j)kS*eRZJ z_}YT60{5~l_a>|h{E&jEz7hKdKn_uG>n^(trky58!Vl6*&r$c{eZ1)T9hA0b`A+bc zKE>FPbypV)6p1Unr}5h`1|}782SF2Ard3s!_0dlQa|18OFd}gq2%18%;Mxb$#rZsp z=g2q%DkZ$($S*;GaN_eD22Kv7T2Tw}HEevc+vvOOUTJ!HECHUP@WOxLAON=ECvuAo zZlf%Mz5-KfeQJTTu6QI$Dy2sGehh%%g-t7rP4Y1pd}#EfREAs4qogcSG37c>lU(s< zR9f(nNKzGrd{y(p=&=zQ*QVW+lw6dhmWi+`A_!fmoZDFO?TuxAZRUCy%r9v(5hfzE zEn&vWu8K@?De_!fZq&&8rahx7mlkIMPi(2uQ5Y0knpdTAfB@_BBrmNsj zzNjn+F6TMChryNFUdX-9N9~T*J@F+gV^nU5BEuuCd@QlpQM^Vl$vC#iLc2r=X1~j) zwgBWS-8tEp)zvHoysR=f+rR&t_e?S51U=GeswY$vWXP2<+LT;N7kb1eF*zlA$bxd( z7fKlXB{-+-W4;EuN+ZYj2=ymTW2A#lL6{we_o?`nlJP2b;Y*DX(1`$mwZ;6g zV`Cj=i8Q*@BO6Mc9UD#1Uzd-4^#VSZ7f;X5oSL0I83u=mud+}w871hZx`P^tIe~@2 z_YVwmPvgBGz+{uW9wo7)$@pLzm9EvBY&rMY~bw?AIS(GZs;S-S6 zVg3Ke+9a}a9W{+8Mb5qQc_ywVS%o<@;@6H}=Mowt)kNqIEK$YLeY4k5=vCUkE^Lhc zJAwWi+zCqE?Qq=|OgreUL);4iE`!w-e0@y{XtB$>pKi2on8_Tk{cW3M?|5#JL%v4L z*R@2XJt(BtLZP^*Q)e9F0NVu$~ zm^H|l)c2M8sPYk5?a;dMSBAlFgBpp3kz>Ghu>dcbwxFlV%R)%i-&4e96{_{L4i(Nl zI+rO_zSbPjtsTh5eeS*u;ONchOibuxh7($>YqjeTrCgdVlwebKB+-T{#v;kX;1Q~C zdo)e7xlE#HQ)uRN@UsI0f9642k;*au{PEF1%XakpDZWeAWjmDb@~r@WWh$QOs7h7Y zCrOe5MLuoT8i_t!l(Ej#b1U8y4PunEIPcwnt9>F@^lsNsK=j`x?&7%pDnbPHHZVX@ ajzN?qIcY%vy4UblGrNn_UB?mkME(z(?5I`% literal 0 HcmV?d00001 diff --git a/scripts/gen/SYS_AUTO/InternalHostUserInterfaceStrings.cs b/scripts/gen/SYS_AUTO/InternalHostUserInterfaceStrings.cs index 59b3d5b22..4f7308c03 100644 --- a/scripts/gen/SYS_AUTO/InternalHostUserInterfaceStrings.cs +++ b/scripts/gen/SYS_AUTO/InternalHostUserInterfaceStrings.cs @@ -280,6 +280,7 @@ internal class InternalHostUserInterfaceStrings { ///Machine: {3} ({4}) ///Host Application: {5} ///Process ID: {6} + ///{7} ///**********************. /// internal static string TranscriptPrologue { diff --git a/scripts/gen/SYS_AUTO/InternalHostUserInterfaceStrings.resources b/scripts/gen/SYS_AUTO/InternalHostUserInterfaceStrings.resources index 59c79c68bb50bb2eaa532d3812e1eb74752f6124..e798f2feb15635f07cdf2c834e04b913b624350d 100644 GIT binary patch delta 57 zcmeB?m?*KKk&Q8Qaub^tWB=r}KyvQn8*CPgt2Ya>H!(9^VVoSuEj)Pz*D}^>^IBdm JFfWmNH2@fy5*`2m delta 42 xcmbOz(Ic^;k&Q86aub^tW7p)hKyt?98*CPg%Qg$LH!(AwpFD+Y*W_UCeE=>#4!HmT diff --git a/scripts/gen/SYS_AUTO/Modules.resources b/scripts/gen/SYS_AUTO/Modules.resources deleted file mode 100644 index 071c0408fdf7f2726637f9df3679d28eeaaae2d7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 26209 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 diff --git a/scripts/gen/SYS_AUTO/MshSnapInCmdletResources.cs b/scripts/gen/SYS_AUTO/MshSnapinCmdletResources.cs similarity index 95% rename from scripts/gen/SYS_AUTO/MshSnapInCmdletResources.cs rename to scripts/gen/SYS_AUTO/MshSnapinCmdletResources.cs index bced63514..0f1f5afb1 100644 --- a/scripts/gen/SYS_AUTO/MshSnapInCmdletResources.cs +++ b/scripts/gen/SYS_AUTO/MshSnapinCmdletResources.cs @@ -23,14 +23,14 @@ using System.Reflection; [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] -internal class MshSnapInCmdletResources { +internal class MshSnapinCmdletResources { private static global::System.Resources.ResourceManager resourceMan; private static global::System.Globalization.CultureInfo resourceCulture; [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal MshSnapInCmdletResources() { + internal MshSnapinCmdletResources() { } /// @@ -40,7 +40,7 @@ internal class MshSnapInCmdletResources { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("MshSnapInCmdletResources", typeof(MshSnapInCmdletResources).GetTypeInfo().Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("MshSnapinCmdletResources", typeof(MshSnapinCmdletResources).GetTypeInfo().Assembly); resourceMan = temp; } return resourceMan; diff --git a/scripts/gen/SYS_AUTO/MshSnapInCmdletResources.resources b/scripts/gen/SYS_AUTO/MshSnapinCmdletResources.resources similarity index 100% rename from scripts/gen/SYS_AUTO/MshSnapInCmdletResources.resources rename to scripts/gen/SYS_AUTO/MshSnapinCmdletResources.resources diff --git a/scripts/gen/SYS_AUTO/ParserStrings.cs b/scripts/gen/SYS_AUTO/ParserStrings.cs index f4b12c53a..240a57115 100644 --- a/scripts/gen/SYS_AUTO/ParserStrings.cs +++ b/scripts/gen/SYS_AUTO/ParserStrings.cs @@ -369,6 +369,24 @@ internal class ParserStrings { } } + /// + /// Looks up a localized string similar to Cannot use assembly with an UNC path: '{0}'.. + /// + internal static string CannotLoadAssemblyFromUncPath { + get { + return ResourceManager.GetString("CannotLoadAssemblyFromUncPath", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot use assembly with uri schema '{0}'.. + /// + internal static string CannotLoadAssemblyWithUriSchema { + get { + return ResourceManager.GetString("CannotLoadAssemblyWithUriSchema", resourceCulture); + } + } + /// /// Looks up a localized string similar to Failed to load the PowerShell data file '{0}' with the following error: ///{1}. @@ -631,6 +649,15 @@ internal class ParserStrings { } } + /// + /// Looks up a localized string similar to DebugMode should only have one value.. + /// + internal static string DebugModeShouldHaveOneValue { + get { + return ResourceManager.GetString("DebugModeShouldHaveOneValue", resourceCulture); + } + } + /// /// Looks up a localized string similar to debug stream. /// @@ -785,7 +812,7 @@ internal class ParserStrings { } /// - /// Looks up a localized string similar to A second CIM class definition for '{0}' was found while processing the schema file '{1}'. This class was already defined in the file '{2}'. Remove the redundant definition, and then try again.. + /// Looks up a localized string similar to A second CIM class definition for '{0}' was found while processing the schema file '{1}'. This class was already defined in the file(s) '{2}'. Remove the redundant definition, and then try again.. /// internal static string DuplicateCimClassDefinition { get { @@ -1000,6 +1027,15 @@ internal class ParserStrings { } } + /// + /// Looks up a localized string similar to Cannot load assembly '{0}'.. + /// + internal static string ErrorLoadingAssembly { + get { + return ResourceManager.GetString("ErrorLoadingAssembly", resourceCulture); + } + } + /// /// Looks up a localized string similar to error stream. /// @@ -1272,7 +1308,13 @@ internal class ParserStrings { } /// - /// Looks up a localized string similar to The Import-DscResource dynamic keyword requires resource name(s) and/or name(s) of the module to import. The syntax of Import-DscResource dynamic keyword is: "Import-DscResource [-Name <ResourceName(s)>] [-ModuleName <ModuleName(s)>].. + /// Looks up a localized string similar to The syntax of the Import-DscResource dynamic keyword is: + /// + ///Import-DscResource [-Name <ResourceName(s)>] [-ModuleName <ModuleName(s)>] [-ModuleVersion <ModuleVersion>]. + /// + ///Name : Names of one or more resources to import. + ///ModuleName : Module names or ModuleSpecification objects of one or more modules to import. + ///ModuleVersion : Version of module to import. If used, ModuleName must represent only one module by name.. /// internal static string ImportDscResourceNeedParams { get { @@ -1281,7 +1323,7 @@ internal class ParserStrings { } /// - /// Looks up a localized string similar to Positional parameters are not supported for the Import-DscResource dynamic keyword. The syntax of Import-DscResource dynamic keyword is: "Import-DscResource [-Name <ResourceName(s)>] [-ModuleName <ModuleName(s)>]. + /// Looks up a localized string similar to Positional parameters are not supported for the Import-DscResource dynamic keyword. The syntax of Import-DscResource dynamic keyword is: "Import-DscResource [-Name <ResourceName(s)>] [-ModuleName <ModuleName(s)>] [-ModuleVersion <ModuleVersion>]. /// internal static string ImportDscResourcePositionalParamsNotSupported { get { @@ -1641,6 +1683,15 @@ internal class ParserStrings { } } + /// + /// Looks up a localized string similar to '{0}' is not a valid value for using name.. + /// + internal static string InvalidValueForUsingItemName { + get { + return ResourceManager.GetString("InvalidValueForUsingItemName", resourceCulture); + } + } + /// /// Looks up a localized string similar to Variable reference is not valid. '$' was not followed by a valid variable name character. Consider using ${} to delimit the name.. /// @@ -1695,6 +1746,15 @@ internal class ParserStrings { } } + /// + /// Looks up a localized string similar to Label '{0}' not found inside the method.. + /// + internal static string LabelNotFound { + get { + return ResourceManager.GetString("LabelNotFound", resourceCulture); + } + } + /// /// Looks up a localized string similar to The member '{0}' is already defined.. /// @@ -2262,6 +2322,15 @@ internal class ParserStrings { } } + /// + /// Looks up a localized string similar to Missing a newline or semicolon.. + /// + internal static string MissingStatementTerminator { + get { + return ResourceManager.GetString("MissingStatementTerminator", resourceCulture); + } + } + /// /// Looks up a localized string similar to Missing condition in switch statement clause.. /// @@ -2298,6 +2367,15 @@ internal class ParserStrings { } } + /// + /// Looks up a localized string similar to Cannot assign property, use '{0}{1}'.. + /// + internal static string MissingThis { + get { + return ResourceManager.GetString("MissingThis", resourceCulture); + } + } + /// /// Looks up a localized string similar to The ThrottleLimit parameter of the foreach statement is missing a value. Supply a throttle limit to the parameter.. /// @@ -2352,6 +2430,15 @@ internal class ParserStrings { } } + /// + /// Looks up a localized string similar to Cannot assign property, use '{0}{1}'.. + /// + internal static string MissingTypeInStaticPropertyAssignment { + get { + return ResourceManager.GetString("MissingTypeInStaticPropertyAssignment", resourceCulture); + } + } + /// /// Looks up a localized string similar to Missing type literal.. /// @@ -2434,7 +2521,7 @@ internal class ParserStrings { } /// - /// Looks up a localized string similar to Unable to load module '{0}': module not found.. + /// Looks up a localized string similar to The DSC engine could not load the module '{0}'. It was not found on the system.. /// internal static string ModuleNotFoundDuringParse { get { @@ -2452,7 +2539,16 @@ internal class ParserStrings { } /// - /// Looks up a localized string similar to Multiple modules named '{0}' were found. You can run 'Get-Module -ListAvailable -Name {1}' to get the version numbers of modules with the same name, and then run Import-DscResource again, specifying the version you want using a ModuleSpecification hash table.. + /// Looks up a localized string similar to The DSC engine could not load the module <{0}, {1}>. It was not found on the system.. + /// + internal static string ModuleWithVersionNotFoundDuringParse { + get { + return ResourceManager.GetString("ModuleWithVersionNotFoundDuringParse", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Multiple versions of the module '{0}' were found. You can run 'Get-DscResource -Module {0}' to see available versions on the system, and then use the fully qualified name in the following command to specify the desired version: 'Import-DscResource –ModuleName @{{ModuleName="{0}";ModuleVersion="Version"}}'.. /// internal static string MultipleModuleEntriesFoundDuringParse { get { @@ -2839,7 +2935,7 @@ internal class ParserStrings { } /// - /// Looks up a localized string similar to Property '{0}' cannot be found for attribute '{1}'.. + /// Looks up a localized string similar to Property '{0}' cannot be found for attribute '{1}'. Specify one of the following properties: {2}.. /// internal static string PropertyNotFoundForAttribute { get { diff --git a/scripts/gen/SYS_AUTO/ParserStrings.resources b/scripts/gen/SYS_AUTO/ParserStrings.resources index 15ed2bb8a533a9ba0b7625d42bd3843de3c3722b..eb73a6330f04d62b16d1731e39618ad8933d0baf 100644 GIT binary patch delta 7037 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 delta 5845 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 diff --git a/scripts/gen/SYS_AUTO/RemotingErrorIdStrings.resources b/scripts/gen/SYS_AUTO/RemotingErrorIdStrings.resources deleted file mode 100644 index fd902137cfb559280caeccd673fda856b99aadf3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 70035 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 + /// Looks up a localized string similar to ResetRunspaceState is not supported on the server. The server must be running Windows PowerShell 5.0 or greater.. + ///

+ internal static string ResetRunspaceStateNotSupportedOnServer { + get { + return ResourceManager.GetString("ResetRunspaceStateNotSupportedOnServer", resourceCulture); + } + } + /// /// Looks up a localized string similar to This runspace does not support disconnect and connect operations.. /// diff --git a/scripts/gen/SYS_AUTO/RunspacePoolStrings.resources b/scripts/gen/SYS_AUTO/RunspacePoolStrings.resources index d424e14404798a56fbfa3b233b54f17e4743f993..f006eb9a3958b773afe2d3ae3799713f0d2b200b 100644 GIT binary patch delta 191 zcmeAXy&*PXA*0~LMOrLd>#jVWc*eqT9}@!@M22LbNH9<=5r|VKS2Jlc7EPYV z?8o?Y@>^yTRt+`=29?Qgm?S3KvG6cX-t5g%#wuJGlv%R3T#%TY8eEcCk~;Yz YdjOxQo`FJskwSV=Do~_o@_x><0HC-r%>V!Z delta 93 zcmca1)+0J$A)~;=MOqUtSm@?5F@S*=kQ4;6-!L*T>;cl+K)x}M?Ez$e1mcxIw%=w; k#sa3vznHxlizd6Vm@sW+om|7B&Zw|?2}>F4 diff --git a/scripts/gen/SYS_AUTO/RunspaceStrings.cs b/scripts/gen/SYS_AUTO/RunspaceStrings.cs index 8131a4120..8b6154244 100644 --- a/scripts/gen/SYS_AUTO/RunspaceStrings.cs +++ b/scripts/gen/SYS_AUTO/RunspaceStrings.cs @@ -370,6 +370,15 @@ internal class RunspaceStrings { } } + /// + /// Looks up a localized string similar to DefaultRunspace must be a LocalRunspace. + /// + internal static string RunspaceNotLocal { + get { + return ResourceManager.GetString("RunspaceNotLocal", resourceCulture); + } + } + /// /// Looks up a localized string similar to Cannot invoke the pipeline because the runspace is not in the Opened state. Current state of the runspace is '{0}'.. /// diff --git a/scripts/gen/SYS_AUTO/RunspaceStrings.resources b/scripts/gen/SYS_AUTO/RunspaceStrings.resources index 2bb92ffd4e9c498362b73759665c68e0f934053d..8009b1aa95faf122b77717167e92b3e5de284903 100644 GIT binary patch delta 213 zcmdmF-eECeA*1HRMeA5Eyna@nI608fnCl@s1A`(X1A`RDEVg~=N^#dv%e@)?pD5*czB z68I*s<1}aO + /// Looks up a localized string similar to '-{0}' and '-{1}' are mutually exclusive and cannot be specified at the same time.. + ///
+ internal static string CopyItemFromSessionToSession { + get { + return ResourceManager.GetString("CopyItemFromSessionToSession", resourceCulture); + } + } + /// /// Looks up a localized string similar to Attempting to perform the CopyItem operation on the '{0}' provider failed for path '{1}'. {2}. /// @@ -358,6 +367,42 @@ internal class SessionStateStrings { } } + /// + /// Looks up a localized string similar to The path '{0}' is not valid. Only absolute paths are supported on remote copy operations.. + /// + internal static string CopyItemRemotelyPathIsNotAbsolute { + get { + return ResourceManager.GetString("CopyItemRemotelyPathIsNotAbsolute", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to The remote path '{0}' is not valid.. + /// + internal static string CopyItemRemotelyPathIsNotValid { + get { + return ResourceManager.GetString("CopyItemRemotelyPathIsNotValid", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to '{0}' parameter cannot be null or empty.. + /// + internal static string CopyItemRemotelyPathIsNullOrEmpty { + get { + return ResourceManager.GetString("CopyItemRemotelyPathIsNullOrEmpty", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Cannot perform operation because the session {0} is set to {1}.. + /// + internal static string CopyItemSessionProperties { + get { + return ResourceManager.GetString("CopyItemSessionProperties", resourceCulture); + } + } + /// /// Looks up a localized string similar to Source and destination path did not resolve to the same provider.. /// @@ -367,6 +412,15 @@ internal class SessionStateStrings { } } + /// + /// Looks up a localized string similar to Cannot validate remote path '{0}'.. + /// + internal static string CopyItemValidateRemotePath { + get { + return ResourceManager.GetString("CopyItemValidateRemotePath", resourceCulture); + } + } + /// /// Looks up a localized string similar to The dynamic parameters for the CopyProperty operation cannot be retrieved for the '{0}' provider for path '{1}'. {2}. /// diff --git a/scripts/gen/SYS_AUTO/SessionStateStrings.resources b/scripts/gen/SYS_AUTO/SessionStateStrings.resources index 09fc1366b52604accc929b812d1e84fe7116d088..3ae06c1d4e104ff84d651b8fd0cca58ed5f8e69b 100644 GIT binary patch delta 3175 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 @@ -40,7 +40,7 @@ internal class Modules { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Modules", typeof(Modules).GetTypeInfo().Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("modules", typeof(modules).GetTypeInfo().Assembly); resourceMan = temp; } return resourceMan; @@ -1007,6 +1007,15 @@ internal class Modules { } } + /// + /// Looks up a localized string similar to Populating RepositorySourceLocation property for module {0}.. + /// + internal static string PopulatingRepositorySourceLocation { + get { + return ResourceManager.GetString("PopulatingRepositorySourceLocation", resourceCulture); + } + } + /// /// Looks up a localized string similar to Name of the Windows PowerShell host required by this module. /// diff --git a/scripts/gen/SYS_AUTO/modules.resources b/scripts/gen/SYS_AUTO/modules.resources new file mode 100644 index 0000000000000000000000000000000000000000..41f1da8c5c8ce6489c462285494bb94f98754923 GIT binary patch literal 26352 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

M(=B_*oLhsN_Wz2t_mdFt!ed^$Mcu7M%W*5 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 v@Y>a)A @@ -40,7 +40,7 @@ internal class RemotingErrorIdStrings { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("RemotingErrorIdStrings", typeof(RemotingErrorIdStrings).GetTypeInfo().Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("remotingerroridstrings", typeof(remotingerroridstrings).GetTypeInfo().Assembly); resourceMan = temp; } return resourceMan; @@ -124,6 +124,24 @@ internal class RemotingErrorIdStrings { } } + ///

+ /// Looks up a localized string similar to Unable to open pipe connection for PowerShell IPC. Error code: {0}.. + /// + internal static string CannotConnectNamedPipe { + get { + return ResourceManager.GetString("CannotConnectNamedPipe", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Unable to create PowerShell IPC named pipe. Error code: {0}.. + /// + internal static string CannotCreateNamedPipe { + get { + return ResourceManager.GetString("CannotCreateNamedPipe", resourceCulture); + } + } + /// /// Looks up a localized string similar to Cannot create runspace. The language mode for this configuration is incompatible with the system-wide language mode.. /// @@ -484,6 +502,15 @@ internal class RemotingErrorIdStrings { } } + /// + /// Looks up a localized string similar to Timeout expired before connection could be made to named pipe.. + /// + internal static string ConnectNamedPipeTimeout { + get { + return ResourceManager.GetString("ConnectNamedPipeTimeout", resourceCulture); + } + } + /// /// Looks up a localized string similar to {0} is not a valid value for the parameter {1}. The value must be greater than or equal to 0.. /// @@ -1494,6 +1521,15 @@ internal class RemotingErrorIdStrings { } } + /// + /// Looks up a localized string similar to The credential is invalid.. + /// + internal static string InvalidCredential { + get { + return ResourceManager.GetString("InvalidCredential", resourceCulture); + } + } + /// /// Looks up a localized string similar to The specified IdleTimeout session option {0} (seconds) is not a valid period. Specify an IdleTimeout value that is greater than or equal to the minimum allowed {1} (seconds).. /// @@ -1566,6 +1602,15 @@ internal class RemotingErrorIdStrings { } } + /// + /// Looks up a localized string similar to The input username cannot be empty.. + /// + internal static string InvalidUsername { + get { + return ResourceManager.GetString("InvalidUsername", resourceCulture); + } + } + /// /// Looks up a localized string similar to The input VMGuid parameter does not resolve to a single virtual machine.. /// diff --git a/scripts/gen/SYS_AUTO/remotingerroridstrings.resources b/scripts/gen/SYS_AUTO/remotingerroridstrings.resources new file mode 100644 index 0000000000000000000000000000000000000000..fa225af82e9069df6f2346df6a2bf246e847fb7d GIT binary patch literal 70556 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