Update generate makefiles

Pulled gen and *.mk from \\win2012-ps-01\builds\makegenout\081853542dc16e4d5a354dbf648b0f6a918f0cca
This commit is contained in:
Andrew Schwartzmeyer 2015-06-26 11:03:54 -07:00
parent 1271569f52
commit 99de20d640
42 changed files with 2540 additions and 29 deletions

View file

@ -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 \

View file

@ -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 \

View file

@ -0,0 +1,966 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// 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() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[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;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Join in domain &apos;{0}&apos;.
/// </summary>
internal static string AddComputerActionDomain {
get {
return ResourceManager.GetString("AddComputerActionDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Join in workgroup &apos;{0}&apos;.
/// </summary>
internal static string AddComputerActionWorkgroup {
get {
return ResourceManager.GetString("AddComputerActionWorkgroup", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add computer &apos;{0}&apos; to domain &apos;{1}&apos; because it is already in that domain..
/// </summary>
internal static string AddComputerToSameDomain {
get {
return ResourceManager.GetString("AddComputerToSameDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot add computer &apos;{0}&apos; to workgroup &apos;{1}&apos; because it is already in that workgroup..
/// </summary>
internal static string AddComputerToSameWorkgroup {
get {
return ResourceManager.GetString("AddComputerToSameWorkgroup", resourceCulture);
}
}
/// <summary>
/// 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 &apos;SystemRestorePointCreationFrequency&apos; under the registry key &apos;HKLM\Software\Microsoft\Windows NT\CurrentVersion\SystemRestore&apos;. 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)..
/// </summary>
internal static string CannotCreateRestorePointWarning {
get {
return ResourceManager.GetString("CannotCreateRestorePointWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find the computer account for the local computer in the domain {0}..
/// </summary>
internal static string CannotFindMachineAccountFromDomain {
get {
return ResourceManager.GetString("CannotFindMachineAccountFromDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find the computer account for the local computer from the domain controller {0}..
/// </summary>
internal static string CannotFindMachineAccountFromServer {
get {
return ResourceManager.GetString("CannotFindMachineAccountFromServer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Win32_OperatingSystem WMI object cannot be retrieved..
/// </summary>
internal static string CannotGetOperatingSystemObject {
get {
return ResourceManager.GetString("CannotGetOperatingSystemObject", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot rename multiple computers. The NewName parameter is valid only if a single computer is specified..
/// </summary>
internal static string CannotRenameMultipleComputers {
get {
return ResourceManager.GetString("CannotRenameMultipleComputers", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Computer name {0} cannot be resolved with the exception: {1}..
/// </summary>
internal static string CannotResolveComputerName {
get {
return ResourceManager.GetString("CannotResolveComputerName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The specified server name {0} cannot be resolved..
/// </summary>
internal static string CannotResolveServerName {
get {
return ResourceManager.GetString("CannotResolveServerName", resourceCulture);
}
}
/// <summary>
/// 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..
/// </summary>
internal static string CannotWaitLocalComputer {
get {
return ResourceManager.GetString("CannotWaitLocalComputer", resourceCulture);
}
}
/// <summary>
/// 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..
/// </summary>
internal static string ComputerNamesAreEqual {
get {
return ResourceManager.GetString("ComputerNamesAreEqual", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot remove computer &apos;{0}&apos; because it is not in a domain..
/// </summary>
internal static string ComputerNotInDomain {
get {
return ResourceManager.GetString("ComputerNotInDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} ({1}).
/// </summary>
internal static string DoubleComputerName {
get {
return ResourceManager.GetString("DoubleComputerName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot establish the WMI connection to the computer &apos;{0}&apos; with the following error message: {1}..
/// </summary>
internal static string FailToConnectToComputer {
get {
return ResourceManager.GetString("FailToConnectToComputer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot get domain information about the local computer because of the following exception: {0}..
/// </summary>
internal static string FailToGetDomainInformation {
get {
return ResourceManager.GetString("FailToGetDomainInformation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Computer &apos;{0}&apos; failed to join domain &apos;{1}&apos; from its current workgroup &apos;{2}&apos; with following error message: {3}..
/// </summary>
internal static string FailToJoinDomainFromWorkgroup {
get {
return ResourceManager.GetString("FailToJoinDomainFromWorkgroup", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Computer &apos;{0}&apos; was successfully unjoined from domain &apos;{1}&apos;, but failed to join the new domain &apos;{2}&apos; with the following error message: {3}..
/// </summary>
internal static string FailToJoinNewDomainAfterUnjoinOldDomain {
get {
return ResourceManager.GetString("FailToJoinNewDomainAfterUnjoinOldDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to join computer &apos;{0}&apos; to workgroup &apos;{1}&apos; with the following error message: {2}.
/// </summary>
internal static string FailToJoinWorkGroup {
get {
return ResourceManager.GetString("FailToJoinWorkGroup", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Fail to rename computer &apos;{0}&apos; to &apos;{1}&apos; due to the following exception: {2}..
/// </summary>
internal static string FailToRename {
get {
return ResourceManager.GetString("FailToRename", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Computer &apos;{0}&apos; was successfully joined to the new domain &apos;{1}&apos;, but renaming it to &apos;{2}&apos; failed with the following error message: {3}..
/// </summary>
internal static string FailToRenameAfterJoinDomain {
get {
return ResourceManager.GetString("FailToRenameAfterJoinDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Computer &apos;{0}&apos; successfully joined the workgroup &apos;{1}&apos;, but could not be renamed to &apos;{2}&apos; with the following error message: {3}..
/// </summary>
internal static string FailToRenameAfterJoinWorkgroup {
get {
return ResourceManager.GetString("FailToRenameAfterJoinWorkgroup", resourceCulture);
}
}
/// <summary>
/// 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}..
/// </summary>
internal static string FailToResetPasswordOnDomain {
get {
return ResourceManager.GetString("FailToResetPasswordOnDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Resetting the secure channel password for the local computer failed with the following error message: {0}..
/// </summary>
internal static string FailToResetPasswordOnLocalMachine {
get {
return ResourceManager.GetString("FailToResetPasswordOnLocalMachine", resourceCulture);
}
}
/// <summary>
/// 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}..
/// </summary>
internal static string FailToRetrieveLastRestorePoint {
get {
return ResourceManager.GetString("FailToRetrieveLastRestorePoint", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Computer &apos;{0}&apos; was successfully unjoined from the domain &apos;{1}&apos;, but it failed to join the workgroup &apos;{2}&apos; with the following error message: {3}..
/// </summary>
internal static string FailToSwitchFromDomainToWorkgroup {
get {
return ResourceManager.GetString("FailToSwitchFromDomainToWorkgroup", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot verify the secure channel for the local computer. Operation failed with the following exception: {0}..
/// </summary>
internal static string FailToTestSecureChannel {
get {
return ResourceManager.GetString("FailToTestSecureChannel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to unjoin computer &apos;{0}&apos; from domain &apos;{1}&apos; with the following error message: {2}..
/// </summary>
internal static string FailToUnjoinDomain {
get {
return ResourceManager.GetString("FailToUnjoinDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The number of new names is not equal to the number of target computers..
/// </summary>
internal static string IncorrectNewNameNumber {
get {
return ResourceManager.GetString("IncorrectNewNameNumber", resourceCulture);
}
}
/// <summary>
/// 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:
///{{|}}~[\]^:;&lt;=&gt;?@!&quot;#$%^`()+/,.
/// </summary>
internal static string InvalidComputerNameFormat {
get {
return ResourceManager.GetString("InvalidComputerNameFormat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The domain in computer name &apos;{0}&apos; is not valid. Make sure that the domain exists and that the name is a valid domain name..
/// </summary>
internal static string InvalidDomainNameFormat {
get {
return ResourceManager.GetString("InvalidDomainNameFormat", resourceCulture);
}
}
/// <summary>
/// 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..
/// </summary>
internal static string InvalidDrive {
get {
return ResourceManager.GetString("InvalidDrive", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The flag &apos;{0}&apos; is valid only if flag &apos;{1}&apos; is specified..
/// </summary>
internal static string InvalidJoinOptions {
get {
return ResourceManager.GetString("InvalidJoinOptions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Skip computer &apos;{0}&apos; with new name &apos;{1}&apos; 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..
/// </summary>
internal static string InvalidNewName {
get {
return ResourceManager.GetString("InvalidNewName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DcomAuthentication is not supported. Please use WsmanAuthentication instead..
/// </summary>
internal static string InvalidParameterDCOMNotSupported {
get {
return ResourceManager.GetString("InvalidParameterDCOMNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The {0} parameter is not supported for CoreCLR..
/// </summary>
internal static string InvalidParameterForCoreClr {
get {
return ResourceManager.GetString("InvalidParameterForCoreClr", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter WsmanAuthentication should not be specified when the DCOM protocol is in use. {0}.
/// </summary>
internal static string InvalidParameterForDCOM {
get {
return ResourceManager.GetString("InvalidParameterForDCOM", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameters DcomAuthentication and Impersonation should not be specified when the WSMan protocol is in use. {0}.
/// </summary>
internal static string InvalidParameterForWSMan {
get {
return ResourceManager.GetString("InvalidParameterForWSMan", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The AsJob Parameter Set is not supported..
/// </summary>
internal static string InvalidParameterSetAsJob {
get {
return ResourceManager.GetString("InvalidParameterSetAsJob", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The command cannot restore the computer because &quot;{0}&quot; has not been set as valid restore point. Enter a valid restore point in the RestorePoint parameter, and then try again..
/// </summary>
internal static string InvalidRestorePoint {
get {
return ResourceManager.GetString("InvalidRestorePoint", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Local shutdown access rights.
/// </summary>
internal static string LocalShutdownPrivilege {
get {
return ResourceManager.GetString("LocalShutdownPrivilege", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Administrator rights are required to reset the secure channel password on the local computer. Access is denied..
/// </summary>
internal static string NeedAdminPrivilegeToResetPassword {
get {
return ResourceManager.GetString("NeedAdminPrivilegeToResetPassword", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot remove computer(s) from the domain because the local network is down..
/// </summary>
internal static string NetworkDown {
get {
return ResourceManager.GetString("NetworkDown", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Try below options and Run the command again.
///1. Verify that the target computer(&apos;{0}&apos;) is running.
///2. Specify full computer name of the target computer(&apos;{0}&apos;)..
/// </summary>
internal static string NetworkPathNotFound {
get {
return ResourceManager.GetString("NetworkPathNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Skip computer &apos;{0}&apos; with new name &apos;{1}&apos; because the new name is the same as the current name..
/// </summary>
internal static string NewNameIsOldName {
get {
return ResourceManager.GetString("NewNameIsOldName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Testing connection to computer &apos;{0}&apos; failed: {1}.
/// </summary>
internal static string NoPingResult {
get {
return ResourceManager.GetString("NoPingResult", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The command cannot locate the &quot;{0}&quot; restore point. Verify the &quot;{0}&quot; sequence number, and then try the command again..
/// </summary>
internal static string NoResorePoint {
get {
return ResourceManager.GetString("NoResorePoint", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The combined service types are not supported for now..
/// </summary>
internal static string NoSupportForCombinedServiceType {
get {
return ResourceManager.GetString("NoSupportForCombinedServiceType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Include System Drive in the list of Drives..
/// </summary>
internal static string NoSystemDrive {
get {
return ResourceManager.GetString("NoSystemDrive", resourceCulture);
}
}
/// <summary>
/// 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..
/// </summary>
internal static string NotDisabled {
get {
return ResourceManager.GetString("NotDisabled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not enable drive {0}..
/// </summary>
internal static string NotEnabled {
get {
return ResourceManager.GetString("NotEnabled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This functionality is not supported on this operating system..
/// </summary>
internal static string NotSupported {
get {
return ResourceManager.GetString("NotSupported", resourceCulture);
}
}
/// <summary>
/// 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..
/// </summary>
internal static string NotValidDrive {
get {
return ResourceManager.GetString("NotValidDrive", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command cannot be run on target computer(&apos;{1}&apos;) due to following error: {0}.{2}.
/// </summary>
internal static string OperationFailed {
get {
return ResourceManager.GetString("OperationFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter WsmanAuthentication should not be specified with DcomAuthentication and Impersonation at the same time. {0}.
/// </summary>
internal static string ParameterConfliction {
get {
return ResourceManager.GetString("ParameterConfliction", resourceCulture);
}
}
/// <summary>
/// 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..
/// </summary>
internal static string ParameterUsage {
get {
return ResourceManager.GetString("ParameterUsage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to restart the computer {0}. Access rights {1} cannot be enabled for the calling process..
/// </summary>
internal static string PrivilegeNotEnabled {
get {
return ResourceManager.GetString("PrivilegeNotEnabled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Creating a system restore point ....
/// </summary>
internal static string ProgressActivity {
get {
return ResourceManager.GetString("ProgressActivity", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Completed..
/// </summary>
internal static string ProgressStatusCompleted {
get {
return ResourceManager.GetString("ProgressStatusCompleted", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Creating a system restore point... {0}% Completed..
/// </summary>
internal static string ProgressStatusCreatingRestorePoint {
get {
return ResourceManager.GetString("ProgressStatusCreatingRestorePoint", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remote shutdown access rights.
/// </summary>
internal static string RemoteShutdownPrivilege {
get {
return ResourceManager.GetString("RemoteShutdownPrivilege", resourceCulture);
}
}
/// <summary>
/// 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?.
/// </summary>
internal static string RemoveComputerConfirm {
get {
return ResourceManager.GetString("RemoveComputerConfirm", resourceCulture);
}
}
/// <summary>
/// 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..
/// </summary>
internal static string RenameCommandWsmanAuthParamConflict {
get {
return ResourceManager.GetString("RenameCommandWsmanAuthParamConflict", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The attempt to repair the secure channel between the local computer and the domain {0} has failed..
/// </summary>
internal static string RepairSecureChannelFail {
get {
return ResourceManager.GetString("RepairSecureChannelFail", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The secure channel between the local computer and the domain {0} was successfully repaired..
/// </summary>
internal static string RepairSecureChannelSucceed {
get {
return ResourceManager.GetString("RepairSecureChannelSucceed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to &quot;The password of the secure channel between &apos;{0}&apos; and &apos;{1}&apos; has been reset.&quot;.
/// </summary>
internal static string ResetComputerMachinePassword {
get {
return ResourceManager.GetString("ResetComputerMachinePassword", resourceCulture);
}
}
/// <summary>
/// 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..
/// </summary>
internal static string ResetComputerNotInDomain {
get {
return ResourceManager.GetString("ResetComputerNotInDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Restart is complete.
/// </summary>
internal static string RestartComplete {
get {
return ResourceManager.GetString("RestartComplete", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enable the {0} and restart the computer..
/// </summary>
internal static string RestartComputerAction {
get {
return ResourceManager.GetString("RestartComputerAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to restart the computer {0} with the following error message: {1}..
/// </summary>
internal static string RestartcomputerFailed {
get {
return ResourceManager.GetString("RestartcomputerFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The parameters Timeout, For, and Delay are valid only when the parameter Wait is specified..
/// </summary>
internal static string RestartComputerInvalidParameter {
get {
return ResourceManager.GetString("RestartComputerInvalidParameter", resourceCulture);
}
}
/// <summary>
/// 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}..
/// </summary>
internal static string RestartComputerSkipped {
get {
return ResourceManager.GetString("RestartComputerSkipped", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Restarting computers....
/// </summary>
internal static string RestartMultipleComputersActivity {
get {
return ResourceManager.GetString("RestartMultipleComputersActivity", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The changes will take effect after you restart the computer {1}..
/// </summary>
internal static string RestartNeeded {
get {
return ResourceManager.GetString("RestartNeeded", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Restarting computer {0}.
/// </summary>
internal static string RestartSingleComputerActivity {
get {
return ResourceManager.GetString("RestartSingleComputerActivity", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The last attempt to restore the computer failed..
/// </summary>
internal static string RestoreFailed {
get {
return ResourceManager.GetString("RestoreFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The last attempt to restore the computer was interrupted..
/// </summary>
internal static string RestoreInterrupted {
get {
return ResourceManager.GetString("RestoreInterrupted", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The system restore infrastructure cannot create a restore point..
/// </summary>
internal static string RestorePointNotCreated {
get {
return ResourceManager.GetString("RestorePointNotCreated", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The computer has been restored to the specified restore point..
/// </summary>
internal static string RestoreSuceess {
get {
return ResourceManager.GetString("RestoreSuceess", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The secure channel between the local computer and the domain {0} is in good condition..
/// </summary>
internal static string SecureChannelAlive {
get {
return ResourceManager.GetString("SecureChannelAlive", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The secure channel between the local computer and the domain {0} is broken..
/// </summary>
internal static string SecureChannelBroken {
get {
return ResourceManager.GetString("SecureChannelBroken", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to SystemRestore service is disabled..
/// </summary>
internal static string ServiceDisabled {
get {
return ResourceManager.GetString("ServiceDisabled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameters DcomAuthentication and Impersonation cannot be specified with the WSMan protocol. {0}.
/// </summary>
internal static string StopCommandAuthProtcolConflict {
get {
return ResourceManager.GetString("StopCommandAuthProtcolConflict", resourceCulture);
}
}
/// <summary>
/// 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..
/// </summary>
internal static string StopCommandParamMessage {
get {
return ResourceManager.GetString("StopCommandParamMessage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter WsmanAuthentication cannot be specified with DcomAuthentication or Impersonation parameters. {0}.
/// </summary>
internal static string StopCommandParamWSManAuthConflict {
get {
return ResourceManager.GetString("StopCommandParamWSManAuthConflict", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Parameter WsmanAuthentication cannot be specified with the DCOM protocol. {0}.
/// </summary>
internal static string StopCommandWSManAuthProtcolConflict {
get {
return ResourceManager.GetString("StopCommandWSManAuthProtcolConflict", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to stop the computer {0} with the following error message: {1}..
/// </summary>
internal static string StopcomputerFailed {
get {
return ResourceManager.GetString("StopcomputerFailed", resourceCulture);
}
}
/// <summary>
/// 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..
/// </summary>
internal static string SystemRestoreNotSupported {
get {
return ResourceManager.GetString("SystemRestoreNotSupported", resourceCulture);
}
}
/// <summary>
/// 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..
/// </summary>
internal static string SystemRestoreServiceDisabled {
get {
return ResourceManager.GetString("SystemRestoreServiceDisabled", resourceCulture);
}
}
/// <summary>
/// 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..
/// </summary>
internal static string TestComputerNotInDomain {
get {
return ResourceManager.GetString("TestComputerNotInDomain", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The computer did not finish restarting within the specified time-out period..
/// </summary>
internal static string TimeoutError {
get {
return ResourceManager.GetString("TimeoutError", resourceCulture);
}
}
/// <summary>
/// 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 &quot;{0}&quot;, which may cause conflicts under NetBIOS name resolution. Do you wish to continue?.
/// </summary>
internal static string TruncateNetBIOSName {
get {
return ResourceManager.GetString("TruncateNetBIOSName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to NetBIOS name will be truncated..
/// </summary>
internal static string TruncateNetBIOSNameCaption {
get {
return ResourceManager.GetString("TruncateNetBIOSNameCaption", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Verifying that the computer has been restarted....
/// </summary>
internal static string VerifyRebootStage {
get {
return ResourceManager.GetString("VerifyRebootStage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Completed: {0}/{1}..
/// </summary>
internal static string WaitForMultipleComputers {
get {
return ResourceManager.GetString("WaitForMultipleComputers", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Waiting for Windows PowerShell connectivity....
/// </summary>
internal static string WaitForPowerShell {
get {
return ResourceManager.GetString("WaitForPowerShell", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Waiting for the restart to begin....
/// </summary>
internal static string WaitForRestartToBegin {
get {
return ResourceManager.GetString("WaitForRestartToBegin", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Waiting for WinRM connectivity....
/// </summary>
internal static string WaitForWinRM {
get {
return ResourceManager.GetString("WaitForWinRM", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Waiting for WMI connectivity....
/// </summary>
internal static string WaitForWMI {
get {
return ResourceManager.GetString("WaitForWMI", resourceCulture);
}
}
}

View file

@ -61,6 +61,51 @@ internal class ProcessResources {
}
}
/// <summary>
/// Looks up a localized string similar to The user does not have access to the requested information..
/// </summary>
internal static string AttachDebuggerReturnCode2 {
get {
return ResourceManager.GetString("AttachDebuggerReturnCode2", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The specified parameter is not valid..
/// </summary>
internal static string AttachDebuggerReturnCode21 {
get {
return ResourceManager.GetString("AttachDebuggerReturnCode21", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The user does not have sufficient privilege..
/// </summary>
internal static string AttachDebuggerReturnCode3 {
get {
return ResourceManager.GetString("AttachDebuggerReturnCode3", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unknown failure..
/// </summary>
internal static string AttachDebuggerReturnCode8 {
get {
return ResourceManager.GetString("AttachDebuggerReturnCode8", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The path specified does not exist..
/// </summary>
internal static string AttachDebuggerReturnCode9 {
get {
return ResourceManager.GetString("AttachDebuggerReturnCode9", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command cannot be run completely because the system cannot find all the information required..
/// </summary>
@ -88,6 +133,15 @@ internal class ProcessResources {
}
}
/// <summary>
/// Looks up a localized string similar to Cannot debug process &quot;{0} ({1})&quot; because of the following error: {2}.
/// </summary>
internal static string CouldNotDebugProcess {
get {
return ResourceManager.GetString("CouldNotDebugProcess", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot enumerate the file version information of the &quot;{0}&quot; process..
/// </summary>
@ -232,6 +286,15 @@ internal class ProcessResources {
}
}
/// <summary>
/// Looks up a localized string similar to The parameter &apos;{0}&apos; is not supported for the cmdlet &apos;{1}&apos; on this edition of Windows..
/// </summary>
internal static string ParameterNotSupported {
get {
return ResourceManager.GetString("ParameterNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command stopped operation of &quot;{0} ({1})&quot; because of the following error: {2}..
/// </summary>

View file

@ -0,0 +1,315 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// 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() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[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;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to The command cannot be used to configure the service &apos;{0}&apos; because access to computer &apos;{1}&apos; is denied. Run Windows PowerShell as admin and run your command again..
/// </summary>
internal static string ComputerAccessDenied {
get {
return ResourceManager.GetString("ComputerAccessDenied", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to &apos;Cannot access dependent services of &apos;{1} ({0})&apos;.
/// </summary>
internal static string CouldNotAccessDependentServices {
get {
return ResourceManager.GetString("CouldNotAccessDependentServices", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be created due to the following error: {2}.
/// </summary>
internal static string CouldNotNewService {
get {
return ResourceManager.GetString("CouldNotNewService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; was created, but its description cannot be configured due to the following error: {2}.
/// </summary>
internal static string CouldNotNewServiceDescription {
get {
return ResourceManager.GetString("CouldNotNewServiceDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be resumed due to the following error: {2}.
/// </summary>
internal static string CouldNotResumeService {
get {
return ResourceManager.GetString("CouldNotResumeService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be resumed because it is not currently running..
/// </summary>
internal static string CouldNotResumeServiceNotRunning {
get {
return ResourceManager.GetString("CouldNotResumeServiceNotRunning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be resumed because the service does not support being suspended or resumed..
/// </summary>
internal static string CouldNotResumeServiceNotSupported {
get {
return ResourceManager.GetString("CouldNotResumeServiceNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be configured due to the following error: {2}.
/// </summary>
internal static string CouldNotSetService {
get {
return ResourceManager.GetString("CouldNotSetService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; description cannot be configured due to the following error: {2}.
/// </summary>
internal static string CouldNotSetServiceDescription {
get {
return ResourceManager.GetString("CouldNotSetServiceDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be started due to the following error: {2}.
/// </summary>
internal static string CouldNotStartService {
get {
return ResourceManager.GetString("CouldNotStartService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be stopped due to the following error: {2}.
/// </summary>
internal static string CouldNotStopService {
get {
return ResourceManager.GetString("CouldNotStopService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be suspended due to the following error: {2}.
/// </summary>
internal static string CouldNotSuspendService {
get {
return ResourceManager.GetString("CouldNotSuspendService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be suspended because it is not currently running..
/// </summary>
internal static string CouldNotSuspendServiceNotRunning {
get {
return ResourceManager.GetString("CouldNotSuspendServiceNotRunning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; cannot be suspended because the service does not support being suspended or resumed..
/// </summary>
internal static string CouldNotSuspendServiceNotSupported {
get {
return ResourceManager.GetString("CouldNotSuspendServiceNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find any service with display name &apos;{1}&apos;..
/// </summary>
internal static string NoServiceFoundForGivenDisplayName {
get {
return ResourceManager.GetString("NoServiceFoundForGivenDisplayName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find any service with service name &apos;{0}&apos;..
/// </summary>
internal static string NoServiceFoundForGivenName {
get {
return ResourceManager.GetString("NoServiceFoundForGivenName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; resume failed..
/// </summary>
internal static string ResumeServiceFailed {
get {
return ResourceManager.GetString("ResumeServiceFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Waiting for service &apos;{1} ({0})&apos; to resume....
/// </summary>
internal static string ResumingService {
get {
return ResourceManager.GetString("ResumingService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot stop service &apos;{1} ({0})&apos; because it has dependent services. It can only be stopped if the Force flag is set..
/// </summary>
internal static string ServiceHasDependentServices {
get {
return ResourceManager.GetString("ServiceHasDependentServices", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot stop service &apos;{1} ({0})&apos; because it has dependent services..
/// </summary>
internal static string ServiceHasDependentServicesNoForce {
get {
return ResourceManager.GetString("ServiceHasDependentServicesNoForce", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot stop service &apos;{1} ({0})&apos; because it is dependent on other services..
/// </summary>
internal static string ServiceIsDependentOnNoForce {
get {
return ResourceManager.GetString("ServiceIsDependentOnNoForce", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} ({1}).
/// </summary>
internal static string ServiceNameForConfirmation {
get {
return ResourceManager.GetString("ServiceNameForConfirmation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Waiting for service &apos;{1} ({0})&apos; to start....
/// </summary>
internal static string StartingService {
get {
return ResourceManager.GetString("StartingService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to start service &apos;{1} ({0})&apos;..
/// </summary>
internal static string StartServiceFailed {
get {
return ResourceManager.GetString("StartServiceFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Waiting for service &apos;{1} ({0})&apos; to stop....
/// </summary>
internal static string StoppingService {
get {
return ResourceManager.GetString("StoppingService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; stop failed..
/// </summary>
internal static string StopServiceFailed {
get {
return ResourceManager.GetString("StopServiceFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Waiting for service &apos;{1} ({0})&apos; to suspend....
/// </summary>
internal static string SuspendingService {
get {
return ResourceManager.GetString("SuspendingService", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Service &apos;{1} ({0})&apos; suspend failed..
/// </summary>
internal static string SuspendServiceFailed {
get {
return ResourceManager.GetString("SuspendServiceFailed", resourceCulture);
}
}
}

View file

@ -0,0 +1,99 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// 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() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[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;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Cannot open the file because the current provider ({0}) cannot open files..
/// </summary>
internal static string FileOpenError {
get {
return ResourceManager.GetString("FileOpenError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The file {0} cannot be read: {1}.
/// </summary>
internal static string FileReadError {
get {
return ResourceManager.GetString("FileReadError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The option &quot;Context&quot; is not valid when searching results that are piped from Select-String output..
/// </summary>
internal static string FilterContextWarning {
get {
return ResourceManager.GetString("FilterContextWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The string {0} is not a valid regular expression: {1}.
/// </summary>
internal static string InvalidRegex {
get {
return ResourceManager.GetString("InvalidRegex", resourceCulture);
}
}
}

View file

@ -0,0 +1,270 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// 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() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[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;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to Cannot update the format data with a FormatTable instance..
/// </summary>
internal static string CannotUpdateFormatWithFormatTable {
get {
return ResourceManager.GetString("CannotUpdateFormatWithFormatTable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot update a member with type &quot;{0}&quot;. Specify a different type for the MemberType parameter..
/// </summary>
internal static string CannotUpdateMemberType {
get {
return ResourceManager.GetString("CannotUpdateMemberType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot update the type data with a TypeTable instance..
/// </summary>
internal static string CannotUpdateTypeWithTypeTable {
get {
return ResourceManager.GetString("CannotUpdateTypeWithTypeTable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Updating format data is not allowed in this runspace. The &apos;DisableFormatUpdates&apos; property is set to True when creating the runspace..
/// </summary>
internal static string FormatUpdatesDisabled {
get {
return ResourceManager.GetString("FormatUpdatesDisabled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The MemberName, Value, and SecondValue parameters cannot be specified without the MemberType parameter..
/// </summary>
internal static string MemberTypeIsMissing {
get {
return ResourceManager.GetString("MemberTypeIsMissing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove TypeData.
/// </summary>
internal static string RemoveTypeDataAction {
get {
return ResourceManager.GetString("RemoveTypeDataAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Name of the type that will be removed: {0}.
/// </summary>
internal static string RemoveTypeDataTarget {
get {
return ResourceManager.GetString("RemoveTypeDataTarget", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remove type file.
/// </summary>
internal static string RemoveTypeFileAction {
get {
return ResourceManager.GetString("RemoveTypeFileAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The value of the SerializationDepth property should not be negative..
/// </summary>
internal static string SerializationDepthNegative {
get {
return ResourceManager.GetString("SerializationDepthNegative", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The {0} parameter is required for the type &quot;{1}&quot;. Please specify the {0} parameter..
/// </summary>
internal static string ShouldBeSpecified {
get {
return ResourceManager.GetString("ShouldBeSpecified", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The {0} parameter should not be null or an empty string for a member of type &quot;{1}&quot;. Specify a non-null value for the {0} parameter when updating this member type..
/// </summary>
internal static string ShouldNotBeNull {
get {
return ResourceManager.GetString("ShouldNotBeNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The {0} parameter is not necessary for a member of type &quot;{1}&quot;, and should not be specified. Do not specify the {0} parameter when updating this member type..
/// </summary>
internal static string ShouldNotBeSpecified {
get {
return ResourceManager.GetString("ShouldNotBeSpecified", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The target type name should not be null, empty, or contain only white spaces..
/// </summary>
internal static string TargetTypeNameEmpty {
get {
return ResourceManager.GetString("TargetTypeNameEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No member is specified for the update on type &quot;{0}&quot;..
/// </summary>
internal static string TypeDataEmpty {
get {
return ResourceManager.GetString("TypeDataEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The file {0} is not imported into the current session..
/// </summary>
internal static string TypeFileNotExistsInCurrentSession {
get {
return ResourceManager.GetString("TypeFileNotExistsInCurrentSession", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot read the file &quot;{0}&quot; because it does not have the file name extension &quot;{1}&quot;..
/// </summary>
internal static string UpdateData_WrongExtension {
get {
return ResourceManager.GetString("UpdateData_WrongExtension", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot open the file because the current provider is &quot;{0}&quot;, and this command requires a file..
/// </summary>
internal static string UpdateData_WrongProviderError {
get {
return ResourceManager.GetString("UpdateData_WrongProviderError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Update FormatData.
/// </summary>
internal static string UpdateFormatDataAction {
get {
return ResourceManager.GetString("UpdateFormatDataAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to FileName: {0}.
/// </summary>
internal static string UpdateTarget {
get {
return ResourceManager.GetString("UpdateTarget", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Update TypeData.
/// </summary>
internal static string UpdateTypeDataAction {
get {
return ResourceManager.GetString("UpdateTypeDataAction", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Type to update: {0}.
/// </summary>
internal static string UpdateTypeDataTarget {
get {
return ResourceManager.GetString("UpdateTypeDataTarget", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Value and SecondValue parameters should not both be null for a member of type &quot;{0}&quot;. Specify a non-null value for one of the two parameters..
/// </summary>
internal static string Value1AndValue2AreNotBothNull {
get {
return ResourceManager.GetString("Value1AndValue2AreNotBothNull", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Only one member type can be specified. The member types specified are: &quot;{0}&quot;. Update the type with only one member type..
/// </summary>
internal static string WrongMemberCount {
get {
return ResourceManager.GetString("WrongMemberCount", resourceCulture);
}
}
}

View file

@ -61,6 +61,15 @@ internal class UtilityCommonStrings {
}
}
/// <summary>
/// Looks up a localized string similar to Algorithm &apos;{0}&apos; is not supported in this system..
/// </summary>
internal static string AlgorithmTypeNotSupported {
get {
return ResourceManager.GetString("AlgorithmTypeNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This command cannot be run because &apos;{0}&apos; is empty or blank. Please specify CSSUri and then run the command..
/// </summary>
@ -97,6 +106,33 @@ internal class UtilityCommonStrings {
}
}
/// <summary>
/// Looks up a localized string similar to Path: .
/// </summary>
internal static string FormatHexPathPrefix {
get {
return ResourceManager.GetString("FormatHexPathPrefix", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot display the context of {0} as hex. The path resolves to multiple files..
/// </summary>
internal static string FormatHexResolvePathError {
get {
return ResourceManager.GetString("FormatHexResolvePathError", resourceCulture);
}
}
/// <summary>
/// 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..
/// </summary>
internal static string FormatHexTypeNotSupported {
get {
return ResourceManager.GetString("FormatHexTypeNotSupported", resourceCulture);
}
}
/// <summary>
/// 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..
/// </summary>

View file

@ -232,6 +232,15 @@ internal class DiscoveryExceptions {
}
}
/// <summary>
/// Looks up a localized string similar to The ShowCommandInfo and Syntax parameters cannot be specified together..
/// </summary>
internal static string GetCommandShowCommandInfoParamError {
get {
return ResourceManager.GetString("GetCommandShowCommandInfoParamError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot process the cmdlet. A cmdlet name must consist of a verb and noun pair separated by &apos;-&apos;..
/// </summary>

View file

@ -196,6 +196,105 @@ internal class FileSystemProviderStrings {
}
}
/// <summary>
/// Looks up a localized string similar to Destination path {0} is a file that already exists on the target destination..
/// </summary>
internal static string CopyItemRemoteDestinationIsFile {
get {
return ResourceManager.GetString("CopyItemRemoteDestinationIsFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot copy a directory &apos;{0}&apos; to file {0}&apos;.
/// </summary>
internal static string CopyItemRemotelyDestinationIsFile {
get {
return ResourceManager.GetString("CopyItemRemotelyDestinationIsFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to copy file {0} to remote target destination..
/// </summary>
internal static string CopyItemRemotelyFailed {
get {
return ResourceManager.GetString("CopyItemRemotelyFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to create directory &apos;{0}&apos; on remote destination..
/// </summary>
internal static string CopyItemRemotelyFailedToCreateDirectory {
get {
return ResourceManager.GetString("CopyItemRemotelyFailedToCreateDirectory", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to get directory {0} child items..
/// </summary>
internal static string CopyItemRemotelyFailedToGetDirectoryChildItems {
get {
return ResourceManager.GetString("CopyItemRemotelyFailedToGetDirectoryChildItems", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to read remote file &apos;{0}&apos;..
/// </summary>
internal static string CopyItemRemotelyFailedToReadFile {
get {
return ResourceManager.GetString("CopyItemRemotelyFailedToReadFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to validate remote destination &apos;{0}&apos;..
/// </summary>
internal static string CopyItemRemotelyFailedToValidateDestination {
get {
return ResourceManager.GetString("CopyItemRemotelyFailedToValidateDestination", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot validate if remote destination {0} is a file..
/// </summary>
internal static string CopyItemRemotelyFailedToValidateIfDestinationIsFile {
get {
return ResourceManager.GetString("CopyItemRemotelyFailedToValidateIfDestinationIsFile", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Remote copy with {0} is not supported..
/// </summary>
internal static string CopyItemRemotelyOperationNotSupported {
get {
return ResourceManager.GetString("CopyItemRemotelyOperationNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Copying {0} to {1}.
/// </summary>
internal static string CopyItemRemotelyProgressActivity {
get {
return ResourceManager.GetString("CopyItemRemotelyProgressActivity", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to From {0} to {1}.
/// </summary>
internal static string CopyItemRemotelyStatusDescription {
get {
return ResourceManager.GetString("CopyItemRemotelyStatusDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Item: {0} Destination: {1}.
/// </summary>

View file

@ -493,6 +493,15 @@ internal class HelpDisplayStrings {
}
}
/// <summary>
/// Looks up a localized string similar to METHODS.
/// </summary>
internal static string Methods {
get {
return ResourceManager.GetString("Methods", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The ModuleBase directory cannot be found. Verify the directory and try again..
/// </summary>

View file

@ -0,0 +1,270 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// 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() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[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;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// 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}..
/// </summary>
internal static string CannotLaunchURI {
get {
return ResourceManager.GetString("CannotLaunchURI", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ForwardHelpTargetName cannot refer to the function itself..
/// </summary>
internal static string CircularDependencyInHelpForwarding {
get {
return ResourceManager.GetString("CircularDependencyInHelpForwarding", resourceCulture);
}
}
/// <summary>
/// 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}).
/// </summary>
internal static string GraphicalHostAssemblyIsNotFound {
get {
return ResourceManager.GetString("GraphicalHostAssemblyIsNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot process the Help category because &quot;{0}&quot; is not a valid Help category..
/// </summary>
internal static string HelpCategoryInvalid {
get {
return ResourceManager.GetString("HelpCategoryInvalid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot load the Help file &quot;{0}&quot;. Details: {1}..
/// </summary>
internal static string HelpFileLoadFailure {
get {
return ResourceManager.GetString("HelpFileLoadFailure", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot access the Help file &quot;{0}&quot; because the current user does not have access rights to the file. Details: {1}..
/// </summary>
internal static string HelpFileNotAccessible {
get {
return ResourceManager.GetString("HelpFileNotAccessible", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The Help file &quot;{0}&quot; is not a valid xml document. Details: {1}..
/// </summary>
internal static string HelpFileNotValid {
get {
return ResourceManager.GetString("HelpFileNotValid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot load the Help file. The following {1} errors occurred while loading the Help file &quot;{0}&quot;..
/// </summary>
internal static string HelpLoadError {
get {
return ResourceManager.GetString("HelpLoadError", resourceCulture);
}
}
/// <summary>
/// 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: &quot;Update-Help&quot;. To get help online, search for the help topic in the TechNet library at http://go.microsoft.com/fwlink/?LinkID=107116..
/// </summary>
internal static string HelpNotFound {
get {
return ResourceManager.GetString("HelpNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The specified URI {0} is not valid..
/// </summary>
internal static string InvalidURI {
get {
return ResourceManager.GetString("InvalidURI", resourceCulture);
}
}
/// <summary>
/// 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..
/// </summary>
internal static string LoadHelpFileForTargetFailed {
get {
return ResourceManager.GetString("LoadHelpFileForTargetFailed", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The node &quot;{0}&quot; can have a maximum of {2} child nodes of type &quot;{1}&quot;. Node Path: {3}..
/// </summary>
internal static string MamlInvalidChildNodeCountError {
get {
return ResourceManager.GetString("MamlInvalidChildNodeCountError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The node &quot;{0}&quot; cannot have &quot;{1}&quot; as a child node. Node Path: {2}..
/// </summary>
internal static string MamlInvalidChildNodeError {
get {
return ResourceManager.GetString("MamlInvalidChildNodeError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Multiple Help topics were found. Use only one Help topic with the -{0} option..
/// </summary>
internal static string MultipleOnlineTopicsNotSupported {
get {
return ResourceManager.GetString("MultipleOnlineTopicsNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to No parameter matches criteria {0}..
/// </summary>
internal static string NoParmsFound {
get {
return ResourceManager.GetString("NoParmsFound", resourceCulture);
}
}
/// <summary>
/// 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..
/// </summary>
internal static string NoURIFound {
get {
return ResourceManager.GetString("NoURIFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} is not supported by the requested Help category..
/// </summary>
internal static string ParamNotSupported {
get {
return ResourceManager.GetString("ParamNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The protocol specified in the Uri &quot;{0}&quot; is not supported. Only &quot;{1}&quot; and &quot;{2}&quot; protocols are supported..
/// </summary>
internal static string ProtocolNotSupported {
get {
return ResourceManager.GetString("ProtocolNotSupported", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The provider &quot;{0}&quot; cannot be loaded. Details: {1}..
/// </summary>
internal static string ProviderLoadError {
get {
return ResourceManager.GetString("ProviderLoadError", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot find the registry key: &quot;{0}{1}&quot;; using &quot;{2}&quot; to load Help files..
/// </summary>
internal static string RegistryPathNotFound {
get {
return ResourceManager.GetString("RegistryPathNotFound", resourceCulture);
}
}
/// <summary>
/// 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..
/// </summary>
internal static string RemoteRunspaceNotAvailable {
get {
return ResourceManager.GetString("RemoteRunspaceNotAvailable", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to {0} does not work in a remote session..
/// </summary>
internal static string RemotingNotSupportedForFeature {
get {
return ResourceManager.GetString("RemotingNotSupportedForFeature", resourceCulture);
}
}
/// <summary>
/// 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 &quot;Run as Administrator&quot; command, and try running Update-Help again..
/// </summary>
internal static string UpdatableHelpRequiresElevation {
get {
return ResourceManager.GetString("UpdatableHelpRequiresElevation", resourceCulture);
}
}
}

Binary file not shown.

View file

@ -280,6 +280,7 @@ internal class InternalHostUserInterfaceStrings {
///Machine: {3} ({4})
///Host Application: {5}
///Process ID: {6}
///{7}
///**********************.
/// </summary>
internal static string TranscriptPrologue {

View file

@ -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() {
}
/// <summary>
@ -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;

View file

@ -369,6 +369,24 @@ internal class ParserStrings {
}
}
/// <summary>
/// Looks up a localized string similar to Cannot use assembly with an UNC path: &apos;{0}&apos;..
/// </summary>
internal static string CannotLoadAssemblyFromUncPath {
get {
return ResourceManager.GetString("CannotLoadAssemblyFromUncPath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot use assembly with uri schema &apos;{0}&apos;..
/// </summary>
internal static string CannotLoadAssemblyWithUriSchema {
get {
return ResourceManager.GetString("CannotLoadAssemblyWithUriSchema", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Failed to load the PowerShell data file &apos;{0}&apos; with the following error:
///{1}.
@ -631,6 +649,15 @@ internal class ParserStrings {
}
}
/// <summary>
/// Looks up a localized string similar to DebugMode should only have one value..
/// </summary>
internal static string DebugModeShouldHaveOneValue {
get {
return ResourceManager.GetString("DebugModeShouldHaveOneValue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to debug stream.
/// </summary>
@ -785,7 +812,7 @@ internal class ParserStrings {
}
/// <summary>
/// Looks up a localized string similar to A second CIM class definition for &apos;{0}&apos; was found while processing the schema file &apos;{1}&apos;. This class was already defined in the file &apos;{2}&apos;. Remove the redundant definition, and then try again..
/// Looks up a localized string similar to A second CIM class definition for &apos;{0}&apos; was found while processing the schema file &apos;{1}&apos;. This class was already defined in the file(s) &apos;{2}&apos;. Remove the redundant definition, and then try again..
/// </summary>
internal static string DuplicateCimClassDefinition {
get {
@ -1000,6 +1027,15 @@ internal class ParserStrings {
}
}
/// <summary>
/// Looks up a localized string similar to Cannot load assembly &apos;{0}&apos;..
/// </summary>
internal static string ErrorLoadingAssembly {
get {
return ResourceManager.GetString("ErrorLoadingAssembly", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to error stream.
/// </summary>
@ -1272,7 +1308,13 @@ internal class ParserStrings {
}
/// <summary>
/// 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: &quot;Import-DscResource [-Name &lt;ResourceName(s)&gt;] [-ModuleName &lt;ModuleName(s)&gt;]..
/// Looks up a localized string similar to The syntax of the Import-DscResource dynamic keyword is:
///
///Import-DscResource [-Name &lt;ResourceName(s)&gt;] [-ModuleName &lt;ModuleName(s)&gt;] [-ModuleVersion &lt;ModuleVersion&gt;].
///
///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..
/// </summary>
internal static string ImportDscResourceNeedParams {
get {
@ -1281,7 +1323,7 @@ internal class ParserStrings {
}
/// <summary>
/// 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: &quot;Import-DscResource [-Name &lt;ResourceName(s)&gt;] [-ModuleName &lt;ModuleName(s)&gt;].
/// 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: &quot;Import-DscResource [-Name &lt;ResourceName(s)&gt;] [-ModuleName &lt;ModuleName(s)&gt;] [-ModuleVersion &lt;ModuleVersion&gt;].
/// </summary>
internal static string ImportDscResourcePositionalParamsNotSupported {
get {
@ -1641,6 +1683,15 @@ internal class ParserStrings {
}
}
/// <summary>
/// Looks up a localized string similar to &apos;{0}&apos; is not a valid value for using name..
/// </summary>
internal static string InvalidValueForUsingItemName {
get {
return ResourceManager.GetString("InvalidValueForUsingItemName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Variable reference is not valid. &apos;$&apos; was not followed by a valid variable name character. Consider using ${} to delimit the name..
/// </summary>
@ -1695,6 +1746,15 @@ internal class ParserStrings {
}
}
/// <summary>
/// Looks up a localized string similar to Label &apos;{0}&apos; not found inside the method..
/// </summary>
internal static string LabelNotFound {
get {
return ResourceManager.GetString("LabelNotFound", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The member &apos;{0}&apos; is already defined..
/// </summary>
@ -2262,6 +2322,15 @@ internal class ParserStrings {
}
}
/// <summary>
/// Looks up a localized string similar to Missing a newline or semicolon..
/// </summary>
internal static string MissingStatementTerminator {
get {
return ResourceManager.GetString("MissingStatementTerminator", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Missing condition in switch statement clause..
/// </summary>
@ -2298,6 +2367,15 @@ internal class ParserStrings {
}
}
/// <summary>
/// Looks up a localized string similar to Cannot assign property, use &apos;{0}{1}&apos;..
/// </summary>
internal static string MissingThis {
get {
return ResourceManager.GetString("MissingThis", resourceCulture);
}
}
/// <summary>
/// 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..
/// </summary>
@ -2352,6 +2430,15 @@ internal class ParserStrings {
}
}
/// <summary>
/// Looks up a localized string similar to Cannot assign property, use &apos;{0}{1}&apos;..
/// </summary>
internal static string MissingTypeInStaticPropertyAssignment {
get {
return ResourceManager.GetString("MissingTypeInStaticPropertyAssignment", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Missing type literal..
/// </summary>
@ -2434,7 +2521,7 @@ internal class ParserStrings {
}
/// <summary>
/// Looks up a localized string similar to Unable to load module &apos;{0}&apos;: module not found..
/// Looks up a localized string similar to The DSC engine could not load the module &apos;{0}&apos;. It was not found on the system..
/// </summary>
internal static string ModuleNotFoundDuringParse {
get {
@ -2452,7 +2539,16 @@ internal class ParserStrings {
}
/// <summary>
/// Looks up a localized string similar to Multiple modules named &apos;{0}&apos; were found. You can run &apos;Get-Module -ListAvailable -Name {1}&apos; 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 &lt;{0}, {1}&gt;. It was not found on the system..
/// </summary>
internal static string ModuleWithVersionNotFoundDuringParse {
get {
return ResourceManager.GetString("ModuleWithVersionNotFoundDuringParse", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Multiple versions of the module &apos;{0}&apos; were found. You can run &apos;Get-DscResource -Module {0}&apos; to see available versions on the system, and then use the fully qualified name in the following command to specify the desired version: &apos;Import-DscResource ModuleName @{{ModuleName=&quot;{0}&quot;;ModuleVersion=&quot;Version&quot;}}&apos;..
/// </summary>
internal static string MultipleModuleEntriesFoundDuringParse {
get {
@ -2839,7 +2935,7 @@ internal class ParserStrings {
}
/// <summary>
/// Looks up a localized string similar to Property &apos;{0}&apos; cannot be found for attribute &apos;{1}&apos;..
/// Looks up a localized string similar to Property &apos;{0}&apos; cannot be found for attribute &apos;{1}&apos;. Specify one of the following properties: {2}..
/// </summary>
internal static string PropertyNotFoundForAttribute {
get {

View file

@ -178,6 +178,15 @@ internal class RunspacePoolStrings {
}
}
/// <summary>
/// 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..
/// </summary>
internal static string ResetRunspaceStateNotSupportedOnServer {
get {
return ResourceManager.GetString("ResetRunspaceStateNotSupportedOnServer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This runspace does not support disconnect and connect operations..
/// </summary>

View file

@ -370,6 +370,15 @@ internal class RunspaceStrings {
}
}
/// <summary>
/// Looks up a localized string similar to DefaultRunspace must be a LocalRunspace.
/// </summary>
internal static string RunspaceNotLocal {
get {
return ResourceManager.GetString("RunspaceNotLocal", resourceCulture);
}
}
/// <summary>
/// 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 &apos;{0}&apos;..
/// </summary>

View file

@ -349,6 +349,15 @@ internal class SessionStateStrings {
}
}
/// <summary>
/// Looks up a localized string similar to &apos;-{0}&apos; and &apos;-{1}&apos; are mutually exclusive and cannot be specified at the same time..
/// </summary>
internal static string CopyItemFromSessionToSession {
get {
return ResourceManager.GetString("CopyItemFromSessionToSession", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Attempting to perform the CopyItem operation on the &apos;{0}&apos; provider failed for path &apos;{1}&apos;. {2}.
/// </summary>
@ -358,6 +367,42 @@ internal class SessionStateStrings {
}
}
/// <summary>
/// Looks up a localized string similar to The path &apos;{0}&apos; is not valid. Only absolute paths are supported on remote copy operations..
/// </summary>
internal static string CopyItemRemotelyPathIsNotAbsolute {
get {
return ResourceManager.GetString("CopyItemRemotelyPathIsNotAbsolute", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The remote path &apos;{0}&apos; is not valid..
/// </summary>
internal static string CopyItemRemotelyPathIsNotValid {
get {
return ResourceManager.GetString("CopyItemRemotelyPathIsNotValid", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to &apos;{0}&apos; parameter cannot be null or empty..
/// </summary>
internal static string CopyItemRemotelyPathIsNullOrEmpty {
get {
return ResourceManager.GetString("CopyItemRemotelyPathIsNullOrEmpty", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot perform operation because the session {0} is set to {1}..
/// </summary>
internal static string CopyItemSessionProperties {
get {
return ResourceManager.GetString("CopyItemSessionProperties", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Source and destination path did not resolve to the same provider..
/// </summary>
@ -367,6 +412,15 @@ internal class SessionStateStrings {
}
}
/// <summary>
/// Looks up a localized string similar to Cannot validate remote path &apos;{0}&apos;..
/// </summary>
internal static string CopyItemValidateRemotePath {
get {
return ResourceManager.GetString("CopyItemValidateRemotePath", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The dynamic parameters for the CopyProperty operation cannot be retrieved for the &apos;{0}&apos; provider for path &apos;{1}&apos;. {2}.
/// </summary>

View file

@ -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 Modules {
internal class modules {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Modules() {
internal modules() {
}
/// <summary>
@ -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 {
}
}
/// <summary>
/// Looks up a localized string similar to Populating RepositorySourceLocation property for module {0}..
/// </summary>
internal static string PopulatingRepositorySourceLocation {
get {
return ResourceManager.GetString("PopulatingRepositorySourceLocation", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Name of the Windows PowerShell host required by this module.
/// </summary>

Binary file not shown.

View file

@ -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 RemotingErrorIdStrings {
internal class remotingerroridstrings {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal RemotingErrorIdStrings() {
internal remotingerroridstrings() {
}
/// <summary>
@ -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 {
}
}
/// <summary>
/// Looks up a localized string similar to Unable to open pipe connection for PowerShell IPC. Error code: {0}..
/// </summary>
internal static string CannotConnectNamedPipe {
get {
return ResourceManager.GetString("CannotConnectNamedPipe", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Unable to create PowerShell IPC named pipe. Error code: {0}..
/// </summary>
internal static string CannotCreateNamedPipe {
get {
return ResourceManager.GetString("CannotCreateNamedPipe", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cannot create runspace. The language mode for this configuration is incompatible with the system-wide language mode..
/// </summary>
@ -484,6 +502,15 @@ internal class RemotingErrorIdStrings {
}
}
/// <summary>
/// Looks up a localized string similar to Timeout expired before connection could be made to named pipe..
/// </summary>
internal static string ConnectNamedPipeTimeout {
get {
return ResourceManager.GetString("ConnectNamedPipeTimeout", resourceCulture);
}
}
/// <summary>
/// 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..
/// </summary>
@ -1494,6 +1521,15 @@ internal class RemotingErrorIdStrings {
}
}
/// <summary>
/// Looks up a localized string similar to The credential is invalid..
/// </summary>
internal static string InvalidCredential {
get {
return ResourceManager.GetString("InvalidCredential", resourceCulture);
}
}
/// <summary>
/// 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)..
/// </summary>
@ -1566,6 +1602,15 @@ internal class RemotingErrorIdStrings {
}
}
/// <summary>
/// Looks up a localized string similar to The input username cannot be empty..
/// </summary>
internal static string InvalidUsername {
get {
return ResourceManager.GetString("InvalidUsername", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The input VMGuid parameter does not resolve to a single virtual machine..
/// </summary>

Binary file not shown.

View file

@ -87,6 +87,8 @@ MAN_INFRA_SRCS_WIN=\
../../../jws/pswin/admin/wmi/WMIv2/Client/DotNetAPI/cs/SharedInstanceHandle.cs \
../../../jws/pswin/admin/wmi/WMIv2/Client/DotNetAPI/cs/WSManSessionOptions.cs \
../../../jws/pswin/admin/wmi/WMIv2/Client/DotNetAPI/cs/Strings.Designer.cs \
../../../jws/pswin/admin/wmi/WMIv2/Client/DotNetAPI/cs/CimMofSerializer.cs \
../../../jws/pswin/admin/wmi/WMIv2/Client/DotNetAPI/cs/CimMofDeserializer.cs \
MAN_INFRA_SRCS=\
@ -176,6 +178,8 @@ MAN_INFRA_SRCS=\
$(ADMIN_GIT_ROOT)/wmi/WMIv2/Client/DotNetAPI/cs/SharedInstanceHandle.cs \
$(ADMIN_GIT_ROOT)/wmi/WMIv2/Client/DotNetAPI/cs/WSManSessionOptions.cs \
$(ADMIN_GIT_ROOT)/wmi/WMIv2/Client/DotNetAPI/cs/Strings.Designer.cs \
$(ADMIN_GIT_ROOT)/wmi/WMIv2/Client/DotNetAPI/cs/CimMofSerializer.cs \
$(ADMIN_GIT_ROOT)/wmi/WMIv2/Client/DotNetAPI/cs/CimMofDeserializer.cs \
MAN_INFRA_RES_BASE_PATH=.

View file

@ -70,6 +70,8 @@ SYS_AUTO_SRCS_WIN=\
../../../jws/pswin/admin/monad/src/engine/NativeCommandParameterBinderController.cs \
../../../jws/pswin/admin/monad/src/engine/NativeCommandProcessor.cs \
../../../jws/pswin/admin/monad/src/engine/DscResourceSearcher.cs \
../../../jws/pswin/admin/monad/src/engine/PSClassSearcher.cs \
../../../jws/pswin/admin/monad/src/engine/PSClassInfo.cs \
../../../jws/pswin/admin/monad/src/engine/Modules/AnalysisCache.cs \
../../../jws/pswin/admin/monad/src/engine/Modules/ExportModuleMemberCommand.cs \
../../../jws/pswin/admin/monad/src/engine/Modules/GetModuleCommand.cs \
@ -105,6 +107,52 @@ SYS_AUTO_SRCS_WIN=\
../../../jws/pswin/admin/monad/src/engine/WinRT/IInspectable.cs \
../../../jws/pswin/admin/monad/src/help/CabinetAPI.cs \
../../../jws/pswin/admin/monad/src/help/CabinetNativeApi.cs \
../../../jws/pswin/admin/monad/src/help/MamlUtil.cs \
../../../jws/pswin/admin/monad/src/help/ProviderCommandHelpInfo.cs \
../../../jws/pswin/admin/monad/src/help/ProviderContext.cs \
../../../jws/pswin/admin/monad/src/help/HelpCommands.cs \
../../../jws/pswin/admin/monad/src/help/HelpSystem.cs \
../../../jws/pswin/admin/monad/src/help/HelpInfo.cs \
../../../jws/pswin/admin/monad/src/help/HelpProvider.cs \
../../../jws/pswin/admin/monad/src/help/HelpProviderWithCache.cs \
../../../jws/pswin/admin/monad/src/help/MamlCommandHelpInfo.cs \
../../../jws/pswin/admin/monad/src/help/CommandHelpProvider.cs \
../../../jws/pswin/admin/monad/src/help/AliasHelpInfo.cs \
../../../jws/pswin/admin/monad/src/help/AliasHelpProvider.cs \
../../../jws/pswin/admin/monad/src/help/HelpFileHelpInfo.cs \
../../../jws/pswin/admin/monad/src/help/HelpFileHelpProvider.cs \
../../../jws/pswin/admin/monad/src/help/DefaultHelpProvider.cs \
../../../jws/pswin/admin/monad/src/help/ProviderHelpInfo.cs \
../../../jws/pswin/admin/monad/src/help/ProviderHelpProvider.cs \
../../../jws/pswin/admin/monad/src/help/MamlNode.cs \
../../../jws/pswin/admin/monad/src/help/HelpCategoryInvalidException.cs \
../../../jws/pswin/admin/monad/src/help/HelpNotFoundException.cs \
../../../jws/pswin/admin/monad/src/help/HelpProviderWithFullCache.cs \
../../../jws/pswin/admin/monad/src/help/FaqHelpProvider.cs \
../../../jws/pswin/admin/monad/src/help/FaqHelpInfo.cs \
../../../jws/pswin/admin/monad/src/help/GlossaryHelpProvider.cs \
../../../jws/pswin/admin/monad/src/help/GlossaryHelpInfo.cs \
../../../jws/pswin/admin/monad/src/help/GeneralHelpProvider.cs \
../../../jws/pswin/admin/monad/src/help/GeneralHelpInfo.cs \
../../../jws/pswin/admin/monad/src/help/HelpErrorTracer.cs \
../../../jws/pswin/admin/monad/src/help/HelpRequest.cs \
../../../jws/pswin/admin/monad/src/help/MUIFileSearcher.cs \
../../../jws/pswin/admin/monad/src/help/HelpCommentsParser.cs \
../../../jws/pswin/admin/monad/src/help/BaseCommandHelpInfo.cs \
../../../jws/pswin/admin/monad/src/help/RemoteHelpInfo.cs \
../../../jws/pswin/admin/monad/src/help/ScriptCommandHelpProvider.cs \
../../../jws/pswin/admin/monad/src/help/SyntaxHelpInfo.cs \
../../../jws/pswin/admin/monad/src/help/DefaultCommandHelpObjectBuilder.cs \
../../../jws/pswin/admin/monad/src/help/UpdatableHelpCommandBase.cs \
../../../jws/pswin/admin/monad/src/help/UpdatableHelpInfo.cs \
../../../jws/pswin/admin/monad/src/help/UpdatableHelpModuleInfo.cs \
../../../jws/pswin/admin/monad/src/help/UpdatableHelpSystem.cs \
../../../jws/pswin/admin/monad/src/help/UpdatableHelpUri.cs \
../../../jws/pswin/admin/monad/src/help/UpdateHelpCommand.cs \
../../../jws/pswin/admin/monad/src/help/SaveHelpCommand.cs \
../../../jws/pswin/admin/monad/src/help/DscResourceHelpProvider.cs \
../../../jws/pswin/admin/monad/src/help/PSClassHelpProvider.cs \
../../../jws/pswin/admin/monad/src/help/MamlClassHelpInfo.cs \
../../../jws/pswin/admin/monad/src/engine/hostifaces/AsyncResult.cs \
../../../jws/pswin/admin/monad/src/engine/hostifaces/ChoiceDescription.cs \
../../../jws/pswin/admin/monad/src/engine/hostifaces/Command.cs \
@ -135,6 +183,7 @@ SYS_AUTO_SRCS_WIN=\
../../../jws/pswin/admin/monad/src/engine/hostifaces/RunspacePool.cs \
../../../jws/pswin/admin/monad/src/engine/hostifaces/RunspacePoolInternal.cs \
../../../jws/pswin/admin/monad/src/engine/hostifaces/PowerShellProcessInstance.cs \
../../../jws/pswin/admin/monad/src/engine/hostifaces/HostUtilities.cs \
../../../jws/pswin/admin/monad/src/engine/remoting/common/ObjectRef.cs \
../../../jws/pswin/admin/monad/src/engine/remoting/common/RunspacePoolStateInfo.cs \
../../../jws/pswin/admin/monad/src/engine/remoting/common/PSETWTracer.cs \
@ -177,6 +226,7 @@ SYS_AUTO_SRCS_WIN=\
../../../jws/pswin/admin/monad/src/engine/remoting/common/WireDataFormat/RemoteSessionCapability.cs \
../../../jws/pswin/admin/monad/src/engine/remoting/common/WireDataFormat/RemotingDataObject.cs \
../../../jws/pswin/admin/monad/src/engine/remoting/common/RemoteSessionNamedPipe.cs \
../../../jws/pswin/admin/monad/src/engine/remoting/common/RemoteSessionHyperVSocket.cs \
../../../jws/pswin/admin/monad/src/engine/remoting/server/OutOfProcServerMediator.cs \
../../../jws/pswin/admin/monad/src/engine/remoting/server/ServerMethodExecutor.cs \
../../../jws/pswin/admin/monad/src/engine/remoting/server/serverremotesession.cs \
@ -336,6 +386,8 @@ SYS_AUTO_SRCS_WIN=\
../../../jws/pswin/admin/monad/src/engine/runtime/Operations/StringOps.cs \
../../../jws/pswin/admin/monad/src/engine/runtime/Operations/VariableOps.cs \
../../../jws/pswin/admin/monad/src/engine/parser/PSType.cs \
../../../jws/pswin/admin/monad/src/engine/parser/GlobalAssemblyCache.cs \
../../../jws/pswin/admin/monad/src/engine/parser/FusionAssemblyIdentity.cs \
../../../jws/pswin/admin/monad/src/engine/interpreter/AddInstruction.cs \
../../../jws/pswin/admin/monad/src/engine/interpreter/ArrayOperations.cs \
../../../jws/pswin/admin/monad/src/engine/interpreter/BranchLabel.cs \
@ -397,6 +449,7 @@ SYS_AUTO_SRCS_WIN=\
../../../jws/pswin/admin/monad/src/security/MshSignature.cs \
../../../jws/pswin/admin/monad/src/security/SecuritySupport.cs \
../../../jws/pswin/admin/monad/src/security/SecurityManager.cs \
../../../jws/pswin/admin/monad/src/security/SecureStringHelper.cs \
../../../jws/pswin/admin/monad/src/engine/ArgumentTypeConverterAttribute.cs \
../../../jws/pswin/admin/monad/src/engine/DriveNames.cs \
../../../jws/pswin/admin/monad/src/engine/ProviderNames.cs \
@ -491,12 +544,13 @@ SYS_AUTO_SRCS_WIN=\
../../../jws/pswin/admin/monad/src/commands/utility/FormatAndOutput/common/DisplayDatabase/typeDataXmlLoader_Table.cs \
../../../jws/pswin/admin/monad/src/commands/utility/FormatAndOutput/common/DisplayDatabase/typeDataXmlLoader_Views.cs \
../../../jws/pswin/admin/monad/src/commands/utility/FormatAndOutput/common/DisplayDatabase/typeDataXmlLoader_Wide.cs \
../../../jws/pswin/admin/monad/src/engine/CommandCompletion/PseudoParameterBinder.cs \
../../../jws/pswin/admin/monad/src/engine/CommandCompletion/CommandCompletion.cs \
../../../jws/pswin/admin/monad/src/engine/CommandCompletion/CompletionAnalysis.cs \
../../../jws/pswin/admin/monad/src/engine/CommandCompletion/CompletionCompleters.cs \
../../../jws/pswin/admin/monad/src/engine/CommandCompletion/CompletionExecutionHelper.cs \
../../../jws/pswin/admin/monad/src/engine/CommandCompletion/CompletionResult.cs \
../../../jws/pswin/admin/monad/src/engine/CommandCompletion/ExtensibleCompletion.cs \
../../../jws/pswin/admin/monad/src/engine/CommandCompletion/PseudoParameterBinder.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/MethodInvocationInfo.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/MethodParameter.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/MethodParametersCollection.cs \
@ -508,6 +562,7 @@ SYS_AUTO_SRCS_WIN=\
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/xml/CoreCLR/cmdlets-over-objects.objectModel.autogen.cs \
../../../jws/pswin/admin/monad/src/cimSupport/cmdletization/xml/CoreCLR/cmdlets-over-objects.xmlSerializer.autogen.cs \
../../../jws/pswin/admin/monad/src/cimSupport/other/ciminstancetypeadapter.cs \
../../../jws/pswin/admin/monad/src/DscSupport/CimDSCParser.cs \
SYS_AUTO_SRCS=\
@ -580,6 +635,8 @@ SYS_AUTO_SRCS=\
$(ADMIN_GIT_ROOT)/monad/src/engine/NativeCommandParameterBinderController.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/NativeCommandProcessor.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/DscResourceSearcher.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/PSClassSearcher.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/PSClassInfo.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/Modules/AnalysisCache.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/Modules/ExportModuleMemberCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/Modules/GetModuleCommand.cs \
@ -615,6 +672,52 @@ SYS_AUTO_SRCS=\
$(ADMIN_GIT_ROOT)/monad/src/engine/WinRT/IInspectable.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/CabinetAPI.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/CabinetNativeApi.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/MamlUtil.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/ProviderCommandHelpInfo.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/ProviderContext.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/HelpCommands.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/HelpSystem.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/HelpInfo.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/HelpProvider.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/HelpProviderWithCache.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/MamlCommandHelpInfo.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/CommandHelpProvider.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/AliasHelpInfo.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/AliasHelpProvider.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/HelpFileHelpInfo.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/HelpFileHelpProvider.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/DefaultHelpProvider.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/ProviderHelpInfo.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/ProviderHelpProvider.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/MamlNode.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/HelpCategoryInvalidException.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/HelpNotFoundException.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/HelpProviderWithFullCache.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/FaqHelpProvider.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/FaqHelpInfo.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/GlossaryHelpProvider.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/GlossaryHelpInfo.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/GeneralHelpProvider.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/GeneralHelpInfo.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/HelpErrorTracer.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/HelpRequest.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/MUIFileSearcher.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/HelpCommentsParser.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/BaseCommandHelpInfo.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/RemoteHelpInfo.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/ScriptCommandHelpProvider.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/SyntaxHelpInfo.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/DefaultCommandHelpObjectBuilder.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/UpdatableHelpCommandBase.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/UpdatableHelpInfo.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/UpdatableHelpModuleInfo.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/UpdatableHelpSystem.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/UpdatableHelpUri.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/UpdateHelpCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/SaveHelpCommand.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/DscResourceHelpProvider.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/PSClassHelpProvider.cs \
$(ADMIN_GIT_ROOT)/monad/src/help/MamlClassHelpInfo.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/hostifaces/AsyncResult.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/hostifaces/ChoiceDescription.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/hostifaces/Command.cs \
@ -645,6 +748,7 @@ SYS_AUTO_SRCS=\
$(ADMIN_GIT_ROOT)/monad/src/engine/hostifaces/RunspacePool.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/hostifaces/RunspacePoolInternal.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/hostifaces/PowerShellProcessInstance.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/hostifaces/HostUtilities.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/remoting/common/ObjectRef.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/remoting/common/RunspacePoolStateInfo.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/remoting/common/PSETWTracer.cs \
@ -687,6 +791,7 @@ SYS_AUTO_SRCS=\
$(ADMIN_GIT_ROOT)/monad/src/engine/remoting/common/WireDataFormat/RemoteSessionCapability.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/remoting/common/WireDataFormat/RemotingDataObject.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/remoting/common/RemoteSessionNamedPipe.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/remoting/common/RemoteSessionHyperVSocket.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/remoting/server/OutOfProcServerMediator.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/remoting/server/ServerMethodExecutor.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/remoting/server/serverremotesession.cs \
@ -846,6 +951,8 @@ SYS_AUTO_SRCS=\
$(ADMIN_GIT_ROOT)/monad/src/engine/runtime/Operations/StringOps.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/runtime/Operations/VariableOps.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/parser/PSType.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/parser/GlobalAssemblyCache.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/parser/FusionAssemblyIdentity.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/interpreter/AddInstruction.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/interpreter/ArrayOperations.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/interpreter/BranchLabel.cs \
@ -907,6 +1014,7 @@ SYS_AUTO_SRCS=\
$(ADMIN_GIT_ROOT)/monad/src/security/MshSignature.cs \
$(ADMIN_GIT_ROOT)/monad/src/security/SecuritySupport.cs \
$(ADMIN_GIT_ROOT)/monad/src/security/SecurityManager.cs \
$(ADMIN_GIT_ROOT)/monad/src/security/SecureStringHelper.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/ArgumentTypeConverterAttribute.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/DriveNames.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/ProviderNames.cs \
@ -1001,12 +1109,13 @@ SYS_AUTO_SRCS=\
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/FormatAndOutput/common/DisplayDatabase/typeDataXmlLoader_Table.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/FormatAndOutput/common/DisplayDatabase/typeDataXmlLoader_Views.cs \
$(ADMIN_GIT_ROOT)/monad/src/commands/utility/FormatAndOutput/common/DisplayDatabase/typeDataXmlLoader_Wide.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/CommandCompletion/PseudoParameterBinder.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/CommandCompletion/CommandCompletion.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/CommandCompletion/CompletionAnalysis.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/CommandCompletion/CompletionCompleters.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/CommandCompletion/CompletionExecutionHelper.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/CommandCompletion/CompletionResult.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/CommandCompletion/ExtensibleCompletion.cs \
$(ADMIN_GIT_ROOT)/monad/src/engine/CommandCompletion/PseudoParameterBinder.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/MethodInvocationInfo.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/MethodParameter.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/MethodParametersCollection.cs \
@ -1018,6 +1127,7 @@ SYS_AUTO_SRCS=\
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/xml/CoreCLR/cmdlets-over-objects.objectModel.autogen.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/cmdletization/xml/CoreCLR/cmdlets-over-objects.xmlSerializer.autogen.cs \
$(ADMIN_GIT_ROOT)/monad/src/cimSupport/other/ciminstancetypeadapter.cs \
$(ADMIN_GIT_ROOT)/monad/src/DscSupport/CimDSCParser.cs \
SYS_AUTO_RES_BASE_PATH=../../../jws/pswin/admin/monad/src/engine/resources
@ -1077,12 +1187,12 @@ SYS_AUTO_RESX_SRCS=\
../../../jws/pswin/admin/monad/src/engine/resources/SuggestionStrings.resx \
../../../jws/pswin/admin/monad/src/engine/resources/MiniShellErrors.resx \
../../../jws/pswin/admin/monad/src/engine/resources/MshHostRawUserInterfaceStrings.resx \
../../../jws/pswin/admin/monad/src/engine/resources/MshSnapInCmdletResources.resx \
../../../jws/pswin/admin/monad/src/engine/resources/MshSnapinCmdletResources.resx \
../../../jws/pswin/admin/monad/src/engine/resources/MshSnapinInfo.resx \
../../../jws/pswin/admin/monad/src/engine/resources/TypesXmlStrings.resx \
../../../jws/pswin/admin/monad/src/engine/resources/TransactionStrings.resx \
../../../jws/pswin/admin/monad/src/engine/resources/WildcardPatternStrings.resx \
../../../jws/pswin/admin/monad/src/engine/resources/RemotingErrorIdStrings.resx \
../../../jws/pswin/admin/monad/src/engine/resources/remotingerroridstrings.resx \
../../../jws/pswin/admin/monad/src/engine/resources/DebuggerStrings.resx \
../../../jws/pswin/admin/monad/src/engine/resources/FormatAndOut_MshParameter.resx \
../../../jws/pswin/admin/monad/src/engine/resources/FormatAndOut_format_xxx.resx \
@ -1090,8 +1200,9 @@ SYS_AUTO_RESX_SRCS=\
../../../jws/pswin/admin/monad/src/engine/resources/NativeCP.resx \
../../../jws/pswin/admin/monad/src/engine/resources/RegistryProviderStrings.resx \
../../../jws/pswin/admin/monad/src/engine/resources/TabCompletionStrings.resx \
../../../jws/pswin/admin/monad/src/engine/resources/HelpErrors.resx \
../../../jws/pswin/admin/monad/src/engine/resources/CoreClrStubResources.resx \
../../../jws/pswin/admin/monad/src/engine/resources/Modules.resx \
../../../jws/pswin/admin/monad/src/engine/resources/modules.resx \
SYS_AUTO_RES_SRCS=\
@ -1145,12 +1256,12 @@ SYS_AUTO_RES_SRCS=\
gen/SYS_AUTO/SuggestionStrings.resources \
gen/SYS_AUTO/MiniShellErrors.resources \
gen/SYS_AUTO/MshHostRawUserInterfaceStrings.resources \
gen/SYS_AUTO/MshSnapInCmdletResources.resources \
gen/SYS_AUTO/MshSnapinCmdletResources.resources \
gen/SYS_AUTO/MshSnapinInfo.resources \
gen/SYS_AUTO/TypesXmlStrings.resources \
gen/SYS_AUTO/TransactionStrings.resources \
gen/SYS_AUTO/WildcardPatternStrings.resources \
gen/SYS_AUTO/RemotingErrorIdStrings.resources \
gen/SYS_AUTO/remotingerroridstrings.resources \
gen/SYS_AUTO/DebuggerStrings.resources \
gen/SYS_AUTO/FormatAndOut_MshParameter.resources \
gen/SYS_AUTO/FormatAndOut_format_xxx.resources \
@ -1158,8 +1269,9 @@ SYS_AUTO_RES_SRCS=\
gen/SYS_AUTO/NativeCP.resources \
gen/SYS_AUTO/RegistryProviderStrings.resources \
gen/SYS_AUTO/TabCompletionStrings.resources \
gen/SYS_AUTO/HelpErrors.resources \
gen/SYS_AUTO/CoreClrStubResources.resources \
gen/SYS_AUTO/Modules.resources \
gen/SYS_AUTO/modules.resources \
SYS_AUTO_RES_CS_SRCS=\
@ -1213,12 +1325,12 @@ SYS_AUTO_RES_CS_SRCS=\
gen/SYS_AUTO/SuggestionStrings.cs \
gen/SYS_AUTO/MiniShellErrors.cs \
gen/SYS_AUTO/MshHostRawUserInterfaceStrings.cs \
gen/SYS_AUTO/MshSnapInCmdletResources.cs \
gen/SYS_AUTO/MshSnapinCmdletResources.cs \
gen/SYS_AUTO/MshSnapinInfo.cs \
gen/SYS_AUTO/TypesXmlStrings.cs \
gen/SYS_AUTO/TransactionStrings.cs \
gen/SYS_AUTO/WildcardPatternStrings.cs \
gen/SYS_AUTO/RemotingErrorIdStrings.cs \
gen/SYS_AUTO/remotingerroridstrings.cs \
gen/SYS_AUTO/DebuggerStrings.cs \
gen/SYS_AUTO/FormatAndOut_MshParameter.cs \
gen/SYS_AUTO/FormatAndOut_format_xxx.cs \
@ -1226,8 +1338,9 @@ SYS_AUTO_RES_CS_SRCS=\
gen/SYS_AUTO/NativeCP.cs \
gen/SYS_AUTO/RegistryProviderStrings.cs \
gen/SYS_AUTO/TabCompletionStrings.cs \
gen/SYS_AUTO/HelpErrors.cs \
gen/SYS_AUTO/CoreClrStubResources.cs \
gen/SYS_AUTO/Modules.cs \
gen/SYS_AUTO/modules.cs \
SYS_AUTO_RES_REF=\
@ -1281,12 +1394,12 @@ SYS_AUTO_RES_REF=\
-resource:gen/SYS_AUTO/SuggestionStrings.resources \
-resource:gen/SYS_AUTO/MiniShellErrors.resources \
-resource:gen/SYS_AUTO/MshHostRawUserInterfaceStrings.resources \
-resource:gen/SYS_AUTO/MshSnapInCmdletResources.resources \
-resource:gen/SYS_AUTO/MshSnapinCmdletResources.resources \
-resource:gen/SYS_AUTO/MshSnapinInfo.resources \
-resource:gen/SYS_AUTO/TypesXmlStrings.resources \
-resource:gen/SYS_AUTO/TransactionStrings.resources \
-resource:gen/SYS_AUTO/WildcardPatternStrings.resources \
-resource:gen/SYS_AUTO/RemotingErrorIdStrings.resources \
-resource:gen/SYS_AUTO/remotingerroridstrings.resources \
-resource:gen/SYS_AUTO/DebuggerStrings.resources \
-resource:gen/SYS_AUTO/FormatAndOut_MshParameter.resources \
-resource:gen/SYS_AUTO/FormatAndOut_format_xxx.resources \
@ -1294,8 +1407,9 @@ SYS_AUTO_RES_REF=\
-resource:gen/SYS_AUTO/NativeCP.resources \
-resource:gen/SYS_AUTO/RegistryProviderStrings.resources \
-resource:gen/SYS_AUTO/TabCompletionStrings.resources \
-resource:gen/SYS_AUTO/HelpErrors.resources \
-resource:gen/SYS_AUTO/CoreClrStubResources.resources \
-resource:gen/SYS_AUTO/Modules.resources \
-resource:gen/SYS_AUTO/modules.resources \
SYS_AUTO_make_rule_RES_SRCS: $(SYS_AUTO_RES_SRCS)