2024-06-03
This commit is contained in:
commit
01bcb56ab7
255
.editorconfig
Normal file
255
.editorconfig
Normal file
@ -0,0 +1,255 @@
|
||||
[*.md]
|
||||
end_of_line = crlf
|
||||
file_header_template = unset
|
||||
indent_size = 2
|
||||
indent_style = space
|
||||
insert_final_newline = false
|
||||
root = true
|
||||
tab_width = 2
|
||||
[*.cs]
|
||||
csharp_indent_block_contents = true
|
||||
csharp_indent_braces = false
|
||||
csharp_indent_case_contents = true
|
||||
csharp_indent_case_contents_when_block = true
|
||||
csharp_indent_labels = one_less_than_current
|
||||
csharp_indent_switch_labels = true
|
||||
csharp_new_line_before_catch = true
|
||||
csharp_new_line_before_else = true
|
||||
csharp_new_line_before_finally = true
|
||||
csharp_new_line_before_members_in_anonymous_types = true
|
||||
csharp_new_line_before_members_in_object_initializers = true
|
||||
csharp_new_line_before_open_brace = all
|
||||
csharp_new_line_between_query_expression_clauses = true
|
||||
csharp_prefer_braces = false
|
||||
csharp_prefer_qualified_reference = true:error
|
||||
csharp_prefer_simple_default_expression = true:warning
|
||||
csharp_prefer_simple_using_statement = true:warning
|
||||
csharp_prefer_static_local_function = true:warning
|
||||
csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async
|
||||
csharp_preserve_single_line_blocks = true
|
||||
csharp_preserve_single_line_statements = false
|
||||
csharp_space_after_cast = false
|
||||
csharp_space_after_colon_in_inheritance_clause = true
|
||||
csharp_space_after_comma = true
|
||||
csharp_space_after_dot = false
|
||||
csharp_space_after_keywords_in_control_flow_statements = true
|
||||
csharp_space_after_semicolon_in_for_statement = true
|
||||
csharp_space_around_binary_operators = before_and_after
|
||||
csharp_space_around_declaration_statements = false
|
||||
csharp_space_before_colon_in_inheritance_clause = true
|
||||
csharp_space_before_comma = false
|
||||
csharp_space_before_dot = false
|
||||
csharp_space_before_open_square_brackets = false
|
||||
csharp_space_before_semicolon_in_for_statement = false
|
||||
csharp_space_between_empty_square_brackets = false
|
||||
csharp_space_between_method_call_empty_parameter_list_parentheses = false
|
||||
csharp_space_between_method_call_name_and_opening_parenthesis = false
|
||||
csharp_space_between_method_call_parameter_list_parentheses = false
|
||||
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
|
||||
csharp_space_between_method_declaration_name_and_open_parenthesis = false
|
||||
csharp_space_between_method_declaration_parameter_list_parentheses = false
|
||||
csharp_space_between_parentheses = false
|
||||
csharp_space_between_square_brackets = false
|
||||
csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true
|
||||
csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true
|
||||
csharp_style_allow_embedded_statements_on_same_line_experimental = true
|
||||
csharp_style_conditional_delegate_call = true
|
||||
csharp_style_deconstructed_variable_declaration = false
|
||||
csharp_style_expression_bodied_accessors = when_on_single_line:warning
|
||||
csharp_style_expression_bodied_constructors = when_on_single_line:warning
|
||||
csharp_style_expression_bodied_indexers = when_on_single_line:warning
|
||||
csharp_style_expression_bodied_lambdas = when_on_single_line:warning
|
||||
csharp_style_expression_bodied_local_functions = when_on_single_line:warning
|
||||
csharp_style_expression_bodied_methods = when_on_single_line:warning
|
||||
csharp_style_expression_bodied_operators = when_on_single_line:warning
|
||||
csharp_style_expression_bodied_properties = when_on_single_line:warning
|
||||
csharp_style_implicit_object_creation_when_type_is_apparent = true:warning
|
||||
csharp_style_inlined_variable_declaration = false
|
||||
csharp_style_namespace_declarations = file_scoped:warning
|
||||
csharp_style_pattern_local_over_anonymous_function = true:warning
|
||||
csharp_style_pattern_matching_over_as_with_null_check = true:warning
|
||||
csharp_style_pattern_matching_over_is_with_cast_check = true:warning
|
||||
csharp_style_prefer_index_operator = true:warning
|
||||
csharp_style_prefer_not_pattern = true:warning
|
||||
csharp_style_prefer_null_check_over_type_check = true
|
||||
csharp_style_prefer_pattern_matching = true:warning
|
||||
csharp_style_prefer_range_operator = true:warning
|
||||
csharp_style_prefer_switch_expression = true:warning
|
||||
csharp_style_throw_expression = true
|
||||
csharp_style_unused_value_assignment_preference = discard_variable:warning
|
||||
csharp_style_unused_value_expression_statement_preference = discard_variable:warning
|
||||
csharp_style_var_elsewhere = false:warning
|
||||
csharp_style_var_for_built_in_types = false:warning
|
||||
csharp_style_var_when_type_is_apparent = false:warning
|
||||
csharp_using_directive_placement = outside_namespace
|
||||
dotnet_code_quality_unused_parameters = all
|
||||
dotnet_code_quality_unused_parameters = non_public # IDE0060: Remove unused parameter
|
||||
dotnet_code_quality.CAXXXX.api_surface = private, internal
|
||||
dotnet_diagnostic.CA1825.severity = warning # CA1823: Avoid zero-length array allocations
|
||||
dotnet_diagnostic.CA1829.severity = warning # CA1829: Use Length/Count property instead of Count() when available
|
||||
dotnet_diagnostic.CA1834.severity = warning # CA1834: Consider using 'StringBuilder.Append(char)' when applicable
|
||||
dotnet_diagnostic.IDE0001.severity = warning # IDE0001: Simplify name
|
||||
dotnet_diagnostic.IDE0004.severity = warning # IDE0004: Cast is redundant.
|
||||
dotnet_diagnostic.IDE0002.severity = warning # Simplify (member access) - System.Version.Equals("1", "2"); Version.Equals("1", "2");
|
||||
dotnet_diagnostic.IDE0005.severity = warning # Using directive is unnecessary
|
||||
dotnet_diagnostic.IDE0031.severity = warning # Use null propagation (IDE0031)
|
||||
dotnet_diagnostic.IDE0047.severity = warning # IDE0047: Parentheses can be removed
|
||||
dotnet_diagnostic.IDE0049.severity = warning # Use language keywords instead of framework type names for type references (IDE0049)
|
||||
dotnet_diagnostic.IDE0060.severity = warning # IDE0060: Remove unused parameter
|
||||
dotnet_naming_rule.abstract_method_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.abstract_method_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.abstract_method_should_be_pascal_case.symbols = abstract_method
|
||||
dotnet_naming_rule.class_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.class_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.class_should_be_pascal_case.symbols = class
|
||||
dotnet_naming_rule.delegate_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.delegate_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.delegate_should_be_pascal_case.symbols = delegate
|
||||
dotnet_naming_rule.enum_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.enum_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.enum_should_be_pascal_case.symbols = enum
|
||||
dotnet_naming_rule.event_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.event_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.event_should_be_pascal_case.symbols = event
|
||||
dotnet_naming_rule.interface_should_be_begins_with_i.severity = warning
|
||||
dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i
|
||||
dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
|
||||
dotnet_naming_rule.method_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.method_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.method_should_be_pascal_case.symbols = method
|
||||
dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
|
||||
dotnet_naming_rule.private_method_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.private_method_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.private_method_should_be_pascal_case.symbols = private_method
|
||||
dotnet_naming_rule.private_or_internal_field_should_be_private_of_internal_field.severity = warning
|
||||
dotnet_naming_rule.private_or_internal_field_should_be_private_of_internal_field.style = private_of_internal_field
|
||||
dotnet_naming_rule.private_or_internal_field_should_be_private_of_internal_field.symbols = private_or_internal_field
|
||||
dotnet_naming_rule.private_or_internal_static_field_should_be_private_of_internal_field.severity = warning
|
||||
dotnet_naming_rule.private_or_internal_static_field_should_be_private_of_internal_field.style = private_of_internal_field
|
||||
dotnet_naming_rule.private_or_internal_static_field_should_be_private_of_internal_field.symbols = private_or_internal_static_field
|
||||
dotnet_naming_rule.property_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.property_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.property_should_be_pascal_case.symbols = property
|
||||
dotnet_naming_rule.public_or_protected_field_should_be_private_of_internal_field.severity = warning
|
||||
dotnet_naming_rule.public_or_protected_field_should_be_private_of_internal_field.style = private_of_internal_field
|
||||
dotnet_naming_rule.public_or_protected_field_should_be_private_of_internal_field.symbols = public_or_protected_field
|
||||
dotnet_naming_rule.static_field_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.static_field_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.static_field_should_be_pascal_case.symbols = static_field
|
||||
dotnet_naming_rule.static_method_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.static_method_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.static_method_should_be_pascal_case.symbols = static_method
|
||||
dotnet_naming_rule.struct_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.struct_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.struct_should_be_pascal_case.symbols = struct
|
||||
dotnet_naming_rule.types_should_be_pascal_case.severity = warning
|
||||
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case
|
||||
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
|
||||
dotnet_naming_style.begins_with_i.capitalization = pascal_case
|
||||
dotnet_naming_style.begins_with_i.required_prefix = I
|
||||
dotnet_naming_style.begins_with_i.required_suffix =
|
||||
dotnet_naming_style.begins_with_i.word_separator =
|
||||
dotnet_naming_style.pascal_case.capitalization = pascal_case
|
||||
dotnet_naming_style.pascal_case.required_prefix =
|
||||
dotnet_naming_style.pascal_case.required_suffix =
|
||||
dotnet_naming_style.pascal_case.word_separator =
|
||||
dotnet_naming_style.private_of_internal_field.capitalization = pascal_case
|
||||
dotnet_naming_style.private_of_internal_field.required_prefix = _
|
||||
dotnet_naming_style.private_of_internal_field.required_suffix =
|
||||
dotnet_naming_style.private_of_internal_field.word_separator =
|
||||
dotnet_naming_symbols.abstract_method.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.abstract_method.applicable_kinds = method
|
||||
dotnet_naming_symbols.abstract_method.required_modifiers = abstract
|
||||
dotnet_naming_symbols.class.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.class.applicable_kinds = class
|
||||
dotnet_naming_symbols.class.required_modifiers =
|
||||
dotnet_naming_symbols.delegate.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.delegate.applicable_kinds = delegate
|
||||
dotnet_naming_symbols.delegate.required_modifiers =
|
||||
dotnet_naming_symbols.enum.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.enum.applicable_kinds = enum
|
||||
dotnet_naming_symbols.enum.required_modifiers =
|
||||
dotnet_naming_symbols.event.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.event.applicable_kinds = event
|
||||
dotnet_naming_symbols.event.required_modifiers =
|
||||
dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.interface.applicable_kinds = interface
|
||||
dotnet_naming_symbols.interface.required_modifiers =
|
||||
dotnet_naming_symbols.method.applicable_accessibilities = public
|
||||
dotnet_naming_symbols.method.applicable_kinds = method
|
||||
dotnet_naming_symbols.method.required_modifiers =
|
||||
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
|
||||
dotnet_naming_symbols.non_field_members.required_modifiers =
|
||||
dotnet_naming_symbols.private_method.applicable_accessibilities = private
|
||||
dotnet_naming_symbols.private_method.applicable_kinds = method
|
||||
dotnet_naming_symbols.private_method.required_modifiers =
|
||||
dotnet_naming_symbols.private_or_internal_field.applicable_accessibilities = internal, private, private_protected
|
||||
dotnet_naming_symbols.private_or_internal_field.applicable_kinds = field
|
||||
dotnet_naming_symbols.private_or_internal_field.required_modifiers =
|
||||
dotnet_naming_symbols.private_or_internal_static_field.applicable_accessibilities = internal, private, private_protected
|
||||
dotnet_naming_symbols.private_or_internal_static_field.applicable_kinds = field
|
||||
dotnet_naming_symbols.private_or_internal_static_field.required_modifiers = static
|
||||
dotnet_naming_symbols.property.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.property.applicable_kinds = property
|
||||
dotnet_naming_symbols.property.required_modifiers =
|
||||
dotnet_naming_symbols.public_or_protected_field.applicable_accessibilities = public, protected
|
||||
dotnet_naming_symbols.public_or_protected_field.applicable_kinds = field
|
||||
dotnet_naming_symbols.public_or_protected_field.required_modifiers =
|
||||
dotnet_naming_symbols.static_field.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.static_field.applicable_kinds = field
|
||||
dotnet_naming_symbols.static_field.required_modifiers = static
|
||||
dotnet_naming_symbols.static_method.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.static_method.applicable_kinds = method
|
||||
dotnet_naming_symbols.static_method.required_modifiers = static
|
||||
dotnet_naming_symbols.struct.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.struct.applicable_kinds = struct
|
||||
dotnet_naming_symbols.struct.required_modifiers =
|
||||
dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
|
||||
dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
|
||||
dotnet_naming_symbols.types.required_modifiers =
|
||||
dotnet_remove_unnecessary_suppression_exclusions = 0
|
||||
dotnet_separate_import_directive_groups = false
|
||||
dotnet_sort_system_directives_first = false
|
||||
dotnet_style_allow_multiple_blank_lines_experimental = false:warning
|
||||
dotnet_style_allow_statement_immediately_after_block_experimental = true
|
||||
dotnet_style_coalesce_expression = true
|
||||
dotnet_style_collection_initializer = true:warning
|
||||
dotnet_style_explicit_tuple_names = true:warning
|
||||
dotnet_style_namespace_match_folder = true
|
||||
dotnet_style_null_propagation = true:warning
|
||||
dotnet_style_object_initializer = true:warning
|
||||
dotnet_style_operator_placement_when_wrapping = beginning_of_line
|
||||
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity
|
||||
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity
|
||||
dotnet_style_parentheses_in_other_operators = never_if_unnecessary
|
||||
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity
|
||||
dotnet_style_predefined_type_for_locals_parameters_members = true
|
||||
dotnet_style_predefined_type_for_member_access = true:warning
|
||||
dotnet_style_prefer_auto_properties = true:warning
|
||||
dotnet_style_prefer_compound_assignment = true:warning
|
||||
dotnet_style_prefer_conditional_expression_over_assignment = false
|
||||
dotnet_style_prefer_conditional_expression_over_return = false
|
||||
dotnet_style_prefer_inferred_anonymous_type_member_names = true:warning
|
||||
dotnet_style_prefer_inferred_tuple_names = true:warning
|
||||
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:warning
|
||||
dotnet_style_prefer_simplified_boolean_expressions = true:warning
|
||||
dotnet_style_prefer_simplified_interpolation = true
|
||||
dotnet_style_qualification_for_event = false:error
|
||||
dotnet_style_qualification_for_field = false
|
||||
dotnet_style_qualification_for_method = false:error
|
||||
dotnet_style_qualification_for_property = false:error
|
||||
dotnet_style_readonly_field = true:warning
|
||||
dotnet_style_require_accessibility_modifiers = for_non_interface_members
|
||||
end_of_line = crlf
|
||||
file_header_template = unset
|
||||
indent_size = 4
|
||||
indent_style = space
|
||||
insert_final_newline = false
|
||||
root = true
|
||||
tab_width = 4
|
||||
# https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca1822
|
||||
# https://github.com/dotnet/aspnetcore/blob/main/.editorconfig
|
||||
# https://github.com/dotnet/project-system/blob/main/.editorconfig
|
19
.gitignore
vendored
Normal file
19
.gitignore
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
.eva
|
||||
.Fab
|
||||
.iteraplan
|
||||
.kanbn
|
||||
.stfolder
|
||||
.stignore
|
||||
.vscode/Helper/**
|
||||
|
||||
node_modules
|
||||
|
||||
incoming
|
||||
outgoing
|
||||
|
||||
*.xls
|
||||
*.xlsx
|
||||
|
||||
*sync-con-flict-2023*
|
||||
|
||||
sync.ffs_db
|
14
.prettierignore
Normal file
14
.prettierignore
Normal file
@ -0,0 +1,14 @@
|
||||
# to exclude Obsidian workspace settings (including plugin and hotkey configurations)
|
||||
.obsidian/*
|
||||
!.obsidian/hotkeys.json
|
||||
!.obsidian/app.json
|
||||
!.obsidian/community-plugins.json
|
||||
!.obsidian/core-plugins.json
|
||||
!.obsidian/graph.json
|
||||
!.obsidian/appearance.json
|
||||
|
||||
**/.vscode/*
|
||||
|
||||
*.json
|
||||
|
||||
*.zip
|
1408
.vscode/638245815760743870.json
vendored
Normal file
1408
.vscode/638245815760743870.json
vendored
Normal file
File diff suppressed because it is too large
Load Diff
260
.vscode/a.md
vendored
Normal file
260
.vscode/a.md
vendored
Normal file
@ -0,0 +1,260 @@
|
||||
---
|
||||
type: "note"
|
||||
created: "2023-09-25T16:09:52.211Z"
|
||||
updated: "2023-09-25T16:09:52.211Z"
|
||||
---
|
||||
|
||||
# a
|
||||
|
||||
- [x] [IteraPlan-Application-SPS](https://iteraplan.icp.infineon.com/client/#/list/InformationSystem?columns=fieldK%2FidP%2FwidthK%2F100B%2FfieldK%2FnameP%2FsortK%2FascP%2FwidthK%2F210P%2FsortedAtK%2F0B%2FfieldK%2FApplication%20OwnerP%2FfieldIdK%2F36376P%2FwidthK%2F234P%2FresizedK%2FtrueB%2FfieldK%2FPersonal%20Data%20Protection%20ClassP%2FfieldIdK%2F781P%2FwidthK%2F130B%2FfieldK%2FDevelopment%20modelP%2FfieldIdK%2F19P%2FwidthK%2F130B%2FfieldK%2FLocation%20of%20InstancesP%2FfieldIdK%2F11821P%2FwidthK%2F130B%2FfieldK%2FEVA%20InstancesP%2FfieldIdK%2F36901P%2FwidthK%2F300B%2FfieldK%2FdescriptionP%2FwidthK%2F536&filter=enumS%2FApplication%20OwnerS%2FcontainsS%2F(mjarsey1)S%2F36376O%2FenumS%2FApplication%20OwnerS%2Fends_withS%2F(buuck)S%2F36376O%2FenumS%2FApplication%20OwnerS%2Fends_withS%2F(belasco)S%2F36376O%2FenumS%2FApplication%20OwnerS%2Fends_withS%2F(phares)S%2F36376O%2FenumS%2FApplication%20OwnerS%2Fends_withS%2F(ouellette)S%2F36376O%2FenumS%2FApplication%20OwnerS%2Fends_withS%2F(tuckerc)S%2F36376O%2FtextS%2FEVA%20InstancesS%2FcontainsS%2F(MES-OP%2520FE)S%2F36901O%2FtextS%2FEVA%20InstancesS%2FcontainsS%2F(MES)S%2F36901O%2FtextS%2FEVA%20InstancesS%2FcontainsS%2FBE%2520(LEO)S%2F36901C%2FC%2FC%2F&treeViewMode=list&squuid=a1ec05c0-e06c-4b1b-83c2-63557693aa74)
|
||||
|
||||
- [x] [IteraPlan-ItService-SPS](https://iteraplan.icp.infineon.com/client/#/list/ItService?columns=fieldK%2FnameP%2FsortK%2FascP%2FwidthK%2F210B%2FfieldK%2FResponsibleP%2FfieldIdK%2F52400P%2FwidthK%2F210B%2FfieldK%2FbusinessMappingsP%2FwidthK%2F340C%2FfieldK%2FBusinessMapping.informationSystemP%2FgroupNameK%2FbusinessMappingsP%2FwidthK%2F340B%2FfieldK%2FdescriptionP%2FwidthK%2F670B%2FfieldK%2FinformationSystemDomainAssociationsP%2FwidthK%2F340C%2FfieldK%2FIsd2ItsAssociation.informationSystemDomainP%2FgroupNameK%2FinformationSystemDomainAssociationsP%2FwidthK%2F340&treeViewMode=list&squuid=a1ec05c0-e06c-4b1b-83c2-63557693aa74&filter=textS%2FResponsibleS%2Fstarts_withS%2FJarseyS%2F52400O%2FtextS%2FResponsibleS%2Fstarts_withS%2FBuuckS%2F52400O%2FtextS%2FResponsibleS%2Fstarts_withS%2FBelascoS%2F52400O%2FtextS%2FResponsibleS%2Fstarts_withS%2FPharesS%2F52400O%2FtextS%2FResponsibleS%2Fstarts_withS%2FOuelletteS%2F52400O%2FtextS%2FResponsibleS%2Fstarts_withS%2FTuckerS%2F52400C%2FC%2FC%2F)
|
||||
|
||||
```json
|
||||
[
|
||||
{
|
||||
"AssetId": "CMDB50000472120",
|
||||
"Name": "Camstar BE (LEO)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000538323",
|
||||
"Name": "Camstar BE (LEO) - DEV"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000538322",
|
||||
"Name": "Camstar BE (LEO) - STAGE"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000407673",
|
||||
"Name": "Camstar BE (LEO) - TEST"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000538324",
|
||||
"Name": "Camstar BE (LEO) - TRAIN"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000471547",
|
||||
"Name": "Camstar BE Testing (LEO) - TEST"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000742506",
|
||||
"Name": "CEP ISIG (LEO-IT)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000404289",
|
||||
"Name": "DHCP Service (LEO)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000517431",
|
||||
"Name": "DNS (LEO)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000486060",
|
||||
"Name": "FileBeat Service (LEO)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000396995",
|
||||
"Name": "Foreman Smart-Proxy (LEO)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000408309",
|
||||
"Name": "Lenel (LEO)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000520249",
|
||||
"Name": "MySQL System (LEO)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000581041",
|
||||
"Name": "PLATO e1ns HiRel (LEO)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000396998",
|
||||
"Name": "Puppetmaster (LEO)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000616359",
|
||||
"Name": "Tableau Tableau - LEO (LEO)"
|
||||
}
|
||||
]
|
||||
```
|
||||
|
||||
```json
|
||||
[
|
||||
{
|
||||
"AssetId": "CMDB50000543577",
|
||||
"Name": "APC Trend (MES-OP FE)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000543575",
|
||||
"Name": "APC Trend (MES-OP FE) - DEV"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000543576",
|
||||
"Name": "APC Trend (MES-OP FE) - STAGE"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000668512",
|
||||
"Name": "CEP ISIG (MES-IT)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000404290",
|
||||
"Name": "DHCP Service (MES)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000517430",
|
||||
"Name": "DNS (MES)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000546134",
|
||||
"Name": "EA Data Framework (MES-OP FE)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000546133",
|
||||
"Name": "EA Data Framework (MES-OP FE) - STAGE"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000546132",
|
||||
"Name": "EA Data Framework (MES-OP FE) - TEST"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000476423",
|
||||
"Name": "EAF (MES-OP FE)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000476218",
|
||||
"Name": "EAF (MES-OP FE) - DEV"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000476422",
|
||||
"Name": "EAF (MES-OP FE) - STAGE"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000476421",
|
||||
"Name": "EAF GaN (MES-OP FE)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000476418",
|
||||
"Name": "EAF GaN (MES-OP FE) - STAGE"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000635197",
|
||||
"Name": "Fab Approval System (MES-OP FE)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000586793",
|
||||
"Name": "FabTime (MES-OP FE)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000486062",
|
||||
"Name": "FileBeat Service (MES)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000523179",
|
||||
"Name": "Foreman Smart-Proxy (MES)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000540745",
|
||||
"Name": "HA Remote Daemon (MES)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000550133",
|
||||
"Name": "HA Remote Daemon (MES) - DEV"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000550134",
|
||||
"Name": "HA Remote Daemon (MES) - STAGE"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000558927",
|
||||
"Name": "InfinityQS GaN (MES-OP FE)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000558926",
|
||||
"Name": "InfinityQS Si (MES-OP FE)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000390440",
|
||||
"Name": "Lenel (MES)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000465401",
|
||||
"Name": "OpenInsight (MES-OP FE)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000558634",
|
||||
"Name": "OpenInsight (MES-OP FE) - DEV"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000595513",
|
||||
"Name": "OpenLDAP Service (MES)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000523181",
|
||||
"Name": "Puppetmaster (MES)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000540746",
|
||||
"Name": "YODA (MES)"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000543579",
|
||||
"Name": "YODA (MES-OP FE) - DEV"
|
||||
},
|
||||
{
|
||||
"AssetId": "CMDB50000543578",
|
||||
"Name": "YODA (MES-OP FE) - STAGE"
|
||||
}
|
||||
]
|
||||
```
|
||||
|
||||
```bash
|
||||
apc-trend-mes-op-fe
|
||||
apc-trend-mes-op-fe-dev
|
||||
apc-trend-mes-op-fe-stage
|
||||
camstar-be-leo
|
||||
camstar-be-leo-dev
|
||||
camstar-be-leo-stage
|
||||
camstar-be-leo-test
|
||||
camstar-be-leo-train
|
||||
camstar-be-testing-leo-test
|
||||
cep-isig-leo-it
|
||||
cep-isig-mes-it
|
||||
dhcp-service-leo
|
||||
dhcp-service-mes
|
||||
dns-leo
|
||||
dns-mes
|
||||
ea-data-framework-mes-op-fe
|
||||
ea-data-framework-mes-op-fe-stage
|
||||
ea-data-framework-mes-op-fe-test
|
||||
eaf-ga-n-mes-op-fe
|
||||
eaf-ga-n-mes-op-fe-stage
|
||||
eaf-mes-op-fe
|
||||
eaf-mes-op-fe-dev
|
||||
eaf-mes-op-fe-stage
|
||||
fab-approval-system-mes-op-fe
|
||||
fab-time-mes-op-fe
|
||||
file-beat-service-leo
|
||||
file-beat-service-mes
|
||||
foreman-smart-proxy-leo
|
||||
foreman-smart-proxy-mes
|
||||
ha-remote-daemon-mes
|
||||
ha-remote-daemon-mes-dev
|
||||
ha-remote-daemon-mes-stage
|
||||
infinity-qs-ga-n-mes-op-fe
|
||||
infinity-qs-si-mes-op-fe
|
||||
lenel-leo
|
||||
lenel-mes
|
||||
my-sql-system-leo
|
||||
open-insight-mes-op-fe
|
||||
open-insight-mes-op-fe-dev
|
||||
open-insight-metrology-viewer-na-op-fe
|
||||
open-ldap-service-mes
|
||||
plato-e1ns-hi-rel-leo
|
||||
puppetmaster-leo
|
||||
puppetmaster-mes
|
||||
tableau-tableau-leo-leo
|
||||
yoda-mes
|
||||
yoda-mes-op-fe-dev
|
||||
yoda-mes-op-fe-stage
|
||||
```
|
123
.vscode/after.ini
vendored
Normal file
123
.vscode/after.ini
vendored
Normal file
@ -0,0 +1,123 @@
|
||||
[Summary]
|
||||
Total_Server=11
|
||||
|
||||
[Server1]
|
||||
APID=0x80005110
|
||||
HWID=0x5110
|
||||
IP=10.95.154.36
|
||||
Port1=1,36,0,0,0,0,0,12,0,3,0,0,5000
|
||||
Grouping_Status1=0,0,3
|
||||
Alias=TENCOR1
|
||||
|
||||
[Server2]
|
||||
APID=0x80005110
|
||||
HWID=0x5110
|
||||
IP=10.95.154.37
|
||||
Port1=1,37,0,0,0,0,0,12,0,3,0,0,5000
|
||||
Grouping_Status1=0,0,3
|
||||
Alias=TENCOR2
|
||||
|
||||
[Server3]
|
||||
APID=0x80005110
|
||||
HWID=0x5110
|
||||
IP=10.95.154.38
|
||||
Port1=1,38,0,0,0,0,0,12,0,3,0,0,5000
|
||||
Grouping_Status1=0,0,3
|
||||
Alias=TENCOR3
|
||||
|
||||
[Server4]
|
||||
APID=0x80005110
|
||||
HWID=0x5110
|
||||
IP=10.95.154.39
|
||||
Port1=1,39,0,0,0,0,0,12,0,3,0,0,5000
|
||||
Grouping_Status1=0,0,3
|
||||
Alias=HGCV1
|
||||
|
||||
[Server5]
|
||||
APID=0x80005110
|
||||
HWID=0x5110
|
||||
IP=10.95.154.17
|
||||
Port1=1,17,0,0,0,0,0,12,0,3,0,0,5000
|
||||
Grouping_Status1=0,0,3
|
||||
Alias=HGCV2
|
||||
|
||||
[Server6]
|
||||
APID=0x80005110
|
||||
HWID=0x5110
|
||||
IP=10.95.154.40
|
||||
Port1=1,40,0,0,0,0,0,12,0,3,0,0,5000
|
||||
Grouping_Status1=0,0,3
|
||||
Alias=HGCV3
|
||||
|
||||
[Server7]
|
||||
APID=0x80005110
|
||||
HWID=0x5110
|
||||
IP=10.95.154.41
|
||||
Port1=1,41,0,0,0,0,0,12,0,3,0,0,5000
|
||||
Grouping_Status1=0,0,3
|
||||
Alias=BIORAD2
|
||||
|
||||
[Server8]
|
||||
APID=0x80005110
|
||||
HWID=0x5110
|
||||
IP=10.95.154.42
|
||||
Port1=1,42,0,0,0,0,0,12,0,3,0,0,5000
|
||||
Grouping_Status1=0,0,3
|
||||
Alias=BIORAD3
|
||||
|
||||
[Server9]
|
||||
APID=0x80005110
|
||||
HWID=0x5110
|
||||
IP=10.95.154.43
|
||||
Port1=1,43,0,0,0,0,0,12,0,3,0,0,5000
|
||||
Grouping_Status1=0,0,3
|
||||
Alias=CDE2
|
||||
|
||||
[Server10]
|
||||
APID=0x80005110
|
||||
HWID=0x5110
|
||||
IP=10.95.154.44
|
||||
Port1=1,44,0,0,0,0,0,12,0,3,0,0,5000
|
||||
Grouping_Status1=0,0,3
|
||||
Alias=Spare
|
||||
|
||||
[Server11]
|
||||
APID=0x80005110
|
||||
HWID=0x5110
|
||||
IP=10.95.154.45
|
||||
Port1=1,45,0,0,0,0,0,12,0,3,0,0,5000
|
||||
Grouping_Status1=0,0,3
|
||||
Alias=Spare
|
||||
|
||||
[Server12]
|
||||
APID=0x80005110
|
||||
HWID=0x5110
|
||||
IP=10.95.154.46
|
||||
Port1=1,46,0,0,0,0,0,12,0,3,0,0,5000
|
||||
Grouping_Status1=0,0,3
|
||||
Alias=Spare
|
||||
|
||||
[Server13]
|
||||
APID=0x80005110
|
||||
HWID=0x5110
|
||||
IP=10.95.154.47
|
||||
Port1=1,47,0,0,0,0,0,12,0,3,0,0,5000
|
||||
Grouping_Status1=0,0,3
|
||||
Alias=Spare
|
||||
|
||||
[Server14]
|
||||
APID=0x80005110
|
||||
HWID=0x5110
|
||||
IP=10.95.154.48
|
||||
Port1=1,48,0,0,0,0,0,12,0,3,0,0,5000
|
||||
Grouping_Status1=0,0,3
|
||||
Alias=Spare
|
||||
|
||||
[Server15]
|
||||
APID=0x80005110
|
||||
HWID=0x5110
|
||||
IP=10.95.154.49
|
||||
Port1=1,49,0,0,0,0,0,12,0,3,0,0,5000
|
||||
Grouping_Status1=0,0,3
|
||||
Alias=Spare
|
||||
|
48
.vscode/c-pfree.md
vendored
Normal file
48
.vscode/c-pfree.md
vendored
Normal file
@ -0,0 +1,48 @@
|
||||
---
|
||||
type: "note"
|
||||
created: "2024-04-09T15:33:17.107Z"
|
||||
updated: "2024-04-09T15:33:31.888Z"
|
||||
---
|
||||
|
||||
# c-pfree
|
||||
|
||||
| Percentage | Julian | PMon | Name |
|
||||
|------------|---------------|--------------|-------------|
|
||||
| 09 | 1712588400000 | FREE_PERCENT | mestsa05ec |
|
||||
| 12 | 1712588400000 | FREE_PERCENT | messa012 |
|
||||
| 16 | 1712588400000 | FREE_PERCENT | messa005 |
|
||||
| 16 | 1712588400000 | FREE_PERCENT | messa022ec |
|
||||
| 16 | 1712588400000 | FREE_PERCENT | messa023ec |
|
||||
| 17 | 1712588400000 | FREE_PERCENT | messa004 |
|
||||
| 19 | 1712588400000 | FREE_PERCENT | messa016ec |
|
||||
| 21 | 1712588400000 | FREE_PERCENT | messa019ec |
|
||||
| 24 | 1712588400000 | FREE_PERCENT | leosatec04 |
|
||||
| 25 | 1712588400000 | FREE_PERCENT | messa010ec |
|
||||
| 25 | 1712588400000 | FREE_PERCENT | messa011ec |
|
||||
| 28 | 1712588400000 | FREE_PERCENT | mestsa006 |
|
||||
| 28 | 1712588400000 | FREE_PERCENT | mestsa03ec |
|
||||
| 31 | 1712588400000 | FREE_PERCENT | messa014ec |
|
||||
| 31 | 1712588400000 | FREE_PERCENT | messa015ec |
|
||||
| 31 | 1712588400000 | FREE_PERCENT | messa09ec |
|
||||
| 36 | 1712588400000 | FREE_PERCENT | mestsa07ec |
|
||||
| 37 | 1712588400000 | FREE_PERCENT | mestsa003 |
|
||||
| 38 | 1712588400000 | FREE_PERCENT | mestsa02ec |
|
||||
| 42 | 1712588400000 | FREE_PERCENT | mestsa06ec |
|
||||
| 43 | 1712588400000 | FREE_PERCENT | messa013ec |
|
||||
| 43 | 1712588400000 | FREE_PERCENT | messa020ec |
|
||||
| 43 | 1712588400000 | FREE_PERCENT | mestsa08ec |
|
||||
| 44 | 1712588400000 | FREE_PERCENT | messa04ec |
|
||||
| 45 | 1712588400000 | FREE_PERCENT | messbpec01 |
|
||||
| 46 | 1712588400000 | FREE_PERCENT | messa012ec |
|
||||
| 46 | 1712588400000 | FREE_PERCENT | messa014 |
|
||||
| 46 | 1712588400000 | FREE_PERCENT | mestsa004 |
|
||||
| 52 | 1712588400000 | FREE_PERCENT | messa06ec |
|
||||
| 54 | 1712588400000 | FREE_PERCENT | messa01ec |
|
||||
| 55 | 1712588400000 | FREE_PERCENT | messa017 |
|
||||
| 56 | 1712588400000 | FREE_PERCENT | mestsa005 |
|
||||
| 57 | 1712588400000 | FREE_PERCENT | leosaec04 |
|
||||
| 62 | 1712588400000 | FREE_PERCENT | messa010 |
|
||||
| 63 | 1712588400000 | FREE_PERCENT | mestsa007 |
|
||||
| 66 | 1712588400000 | FREE_PERCENT | messv03ech1 |
|
||||
| 66 | 1712588400000 | FREE_PERCENT | mestsv02ec |
|
||||
| 69 | 1712588400000 | FREE_PERCENT | messv03ech2 |
|
48
.vscode/c-total.md
vendored
Normal file
48
.vscode/c-total.md
vendored
Normal file
@ -0,0 +1,48 @@
|
||||
---
|
||||
type: "note"
|
||||
created: "2024-04-09T15:13:47.159Z"
|
||||
updated: "2024-04-09T15:16:19.071Z"
|
||||
---
|
||||
|
||||
# c-total
|
||||
|
||||
| Size | Julian | Name |
|
||||
|--------------|---------------|-------------|
|
||||
| 059053699072 | 1712588400000 | messa005 |
|
||||
| 059053699072 | 1712588400000 | messa012 |
|
||||
| 063347617792 | 1712588400000 | messa011ec |
|
||||
| 064422408192 | 1712588400000 | messa004 |
|
||||
| 064422408192 | 1712588400000 | messa014ec |
|
||||
| 064422408192 | 1712588400000 | messa015ec |
|
||||
| 064422408192 | 1712588400000 | messa09ec |
|
||||
| 064422408192 | 1712588400000 | mestsa006 |
|
||||
| 064422408192 | 1712588400000 | mestsa02ec |
|
||||
| 064422408192 | 1712588400000 | mestsa03ec |
|
||||
| 085250273280 | 1712588400000 | leosatec04 |
|
||||
| 085251321856 | 1712588400000 | messa019ec |
|
||||
| 085251321856 | 1712588400000 | mestsa05ec |
|
||||
| 085251321856 | 1712588400000 | mestsa08ec |
|
||||
| 085896196096 | 1712588400000 | leosaec04 |
|
||||
| 085896196096 | 1712588400000 | messa010ec |
|
||||
| 085896196096 | 1712588400000 | messa04ec |
|
||||
| 085896196096 | 1712588400000 | messa06ec |
|
||||
| 091264905216 | 1712588400000 | mestsa07ec |
|
||||
| 103426289664 | 1712588400000 | messa017 |
|
||||
| 106726158336 | 1712588400000 | messa010 |
|
||||
| 106726158336 | 1712588400000 | messa014 |
|
||||
| 106726158336 | 1712588400000 | messa016ec |
|
||||
| 106726158336 | 1712588400000 | messa020ec |
|
||||
| 106726158336 | 1712588400000 | messv03ech1 |
|
||||
| 106726158336 | 1712588400000 | messv03ech2 |
|
||||
| 106726158336 | 1712588400000 | mestsa007 |
|
||||
| 106726158336 | 1712588400000 | mestsa06ec |
|
||||
| 106726158336 | 1712588400000 | mestsv02ec |
|
||||
| 107371032576 | 1712588400000 | messa01ec |
|
||||
| 107371032576 | 1712588400000 | messbpec01 |
|
||||
| 107371032576 | 1712588400000 | mestsa003 |
|
||||
| 107371032576 | 1712588400000 | mestsa004 |
|
||||
| 117463576576 | 1712588400000 | messa022ec |
|
||||
| 117463576576 | 1712588400000 | messa023ec |
|
||||
| 128200994816 | 1712588400000 | messa012ec |
|
||||
| 128200994816 | 1712588400000 | messa013ec |
|
||||
| 128200994816 | 1712588400000 | mestsa005 |
|
48
.vscode/d-pfree.md
vendored
Normal file
48
.vscode/d-pfree.md
vendored
Normal file
@ -0,0 +1,48 @@
|
||||
---
|
||||
type: "note"
|
||||
created: "2024-04-09T15:33:24.653Z"
|
||||
updated: "2024-04-09T15:33:31.889Z"
|
||||
---
|
||||
|
||||
# d-pfree
|
||||
|
||||
| Percentage | Julian | PMon | Name |
|
||||
|------------|---------------|--------------|-------------|
|
||||
| 04 | 1712588400000 | FREE_PERCENT | messa017 |
|
||||
| 08 | 1712588400000 | FREE_PERCENT | mestsa07ec |
|
||||
| 13 | 1712588400000 | FREE_PERCENT | messa01ec |
|
||||
| 13 | 1712588400000 | FREE_PERCENT | mestsa004 |
|
||||
| 16 | 1712588400000 | FREE_PERCENT | mestsa003 |
|
||||
| 20 | 1712588400000 | FREE_PERCENT | messa005 |
|
||||
| 24 | 1712588400000 | FREE_PERCENT | messa010ec |
|
||||
| 24 | 1712588400000 | FREE_PERCENT | messa012 |
|
||||
| 34 | 1712588400000 | FREE_PERCENT | mestsa05ec |
|
||||
| 39 | 1712588400000 | FREE_PERCENT | messa09ec |
|
||||
| 41 | 1712588400000 | FREE_PERCENT | messa019ec |
|
||||
| 47 | 1712588400000 | FREE_PERCENT | mestsa08ec |
|
||||
| 48 | 1712588400000 | FREE_PERCENT | messa011ec |
|
||||
| 58 | 1712588400000 | FREE_PERCENT | messa06ec |
|
||||
| 59 | 1712588400000 | FREE_PERCENT | messa04ec |
|
||||
| 60 | 1712588400000 | FREE_PERCENT | messa010 |
|
||||
| 65 | 1712588400000 | FREE_PERCENT | messa022ec |
|
||||
| 68 | 1712588400000 | FREE_PERCENT | mestsa06ec |
|
||||
| 73 | 1712588400000 | FREE_PERCENT | messv03ech1 |
|
||||
| 77 | 1712588400000 | FREE_PERCENT | messa016ec |
|
||||
| 78 | 1712588400000 | FREE_PERCENT | messa004 |
|
||||
| 80 | 1712588400000 | FREE_PERCENT | mestsa02ec |
|
||||
| 81 | 1712588400000 | FREE_PERCENT | mestsa006 |
|
||||
| 83 | 1712588400000 | FREE_PERCENT | mestsa03ec |
|
||||
| 85 | 1712588400000 | FREE_PERCENT | mestsv02ec |
|
||||
| 86 | 1712588400000 | FREE_PERCENT | messa014 |
|
||||
| 90 | 1712588400000 | FREE_PERCENT | messa012ec |
|
||||
| 91 | 1712588400000 | FREE_PERCENT | messa013ec |
|
||||
| 91 | 1712588400000 | FREE_PERCENT | mestsa005 |
|
||||
| 92 | 1712588400000 | FREE_PERCENT | leosaec04 |
|
||||
| 92 | 1712588400000 | FREE_PERCENT | messa020ec |
|
||||
| 93 | 1712588400000 | FREE_PERCENT | messa014ec |
|
||||
| 93 | 1712588400000 | FREE_PERCENT | messa015ec |
|
||||
| 97 | 1712588400000 | FREE_PERCENT | messbpec01 |
|
||||
| 98 | 1712588400000 | FREE_PERCENT | leosatec04 |
|
||||
| 98 | 1712588400000 | FREE_PERCENT | messa023ec |
|
||||
| 99 | 1712588400000 | FREE_PERCENT | messv03ech2 |
|
||||
| 99 | 1712588400000 | FREE_PERCENT | mestsa007 |
|
48
.vscode/d-total.md
vendored
Normal file
48
.vscode/d-total.md
vendored
Normal file
@ -0,0 +1,48 @@
|
||||
---
|
||||
type: "note"
|
||||
created: "2024-04-09T15:13:47.159Z"
|
||||
updated: "2024-04-09T15:16:19.071Z"
|
||||
---
|
||||
|
||||
# d-total
|
||||
|
||||
| Size | Julian | Name |
|
||||
|--------------|---------------|--------------------------|
|
||||
| 018172866560 | 1712588400000 | mestsa003.infineon.com |
|
||||
| 021472735232 | 1712588400000 | messa011ec.infineon.com |
|
||||
| 021472735232 | 1712588400000 | messa017.infineon.com |
|
||||
| 021472735232 | 1712588400000 | mestsa004.infineon.com |
|
||||
| 032209104896 | 1712588400000 | leosaec04.infineon.com |
|
||||
| 039647703040 | 1712588400000 | messa010ec.infineon.com |
|
||||
| 040749756416 | 1712588400000 | mestsa07ec.infineon.com |
|
||||
| 040796942336 | 1712588400000 | messa09ec.infineon.com |
|
||||
| 052334424064 | 1712588400000 | messa013ec.infineon.com |
|
||||
| 052610199552 | 1712588400000 | messa022ec.infineon.com |
|
||||
| 052610199552 | 1712588400000 | messa023ec.infineon.com |
|
||||
| 052610199552 | 1712588400000 | mestsa02ec.infineon.com |
|
||||
| 063347617792 | 1712588400000 | messa012ec.infineon.com |
|
||||
| 063347617792 | 1712588400000 | mestsa005.infineon.com |
|
||||
| 075096911872 | 1712588400000 | mestsa06ec.infineon.com |
|
||||
| 080528535552 | 1712588400000 | messa005.infineon.com |
|
||||
| 080528535552 | 1712588400000 | messa012.infineon.com |
|
||||
| 085897244672 | 1712588400000 | messa004.infineon.com |
|
||||
| 096634662912 | 1712588400000 | messa06ec.infineon.com |
|
||||
| 106297290752 | 1712588400000 | messa014.infineon.com |
|
||||
| 106297290752 | 1712588400000 | mestsa05ec.infineon.com |
|
||||
| 107371032576 | 1712588400000 | messa01ec.infineon.com |
|
||||
| 107372081152 | 1712588400000 | leosatec04.infineon.com |
|
||||
| 107372081152 | 1712588400000 | messa04ec.infineon.com |
|
||||
| 161059110912 | 1712588400000 | messv03ech1.infineon.com |
|
||||
| 161059110912 | 1712588400000 | messv03ech2.infineon.com |
|
||||
| 161059172352 | 1712588400000 | mestsv02ec.infineon.com |
|
||||
| 171795542016 | 1712588400000 | messa019ec.infineon.com |
|
||||
| 187902717952 | 1712588400000 | mestsa08ec.infineon.com |
|
||||
| 212597731328 | 1712588400000 | messa015ec.infineon.com |
|
||||
| 213671473152 | 1712588400000 | messa014ec.infineon.com |
|
||||
| 213671473152 | 1712588400000 | mestsa006.infineon.com |
|
||||
| 213671473152 | 1712588400000 | mestsa03ec.infineon.com |
|
||||
| 214746263552 | 1712588400000 | messa010.infineon.com |
|
||||
| 214746263552 | 1712588400000 | mestsa007.infineon.com |
|
||||
| 265208983552 | 1712588400000 | messa020ec.infineon.com |
|
||||
| 483180670976 | 1712588400000 | messbpec01.infineon.com |
|
||||
| 526120906752 | 1712588400000 | messa016ec.infineon.com |
|
57
.vscode/ignore.md
vendored
Normal file
57
.vscode/ignore.md
vendored
Normal file
@ -0,0 +1,57 @@
|
||||
---
|
||||
type: "note"
|
||||
created: "2024-04-09T15:27:13.186Z"
|
||||
updated: "2024-04-09T15:27:28.314Z"
|
||||
---
|
||||
|
||||
# ignore
|
||||
|
||||
```EC Mapped
|
||||
messa02ec | IT OS - Utility
|
||||
messa05ec | EC Utility server
|
||||
messa08ec | EAF Application Server
|
||||
messa017ec | EC Web Server
|
||||
messa018ec | EC Tableau Prod
|
||||
```
|
||||
|
||||
```Permissions
|
||||
mestsa01ec | OpenInisght Dev
|
||||
```
|
||||
|
||||
```EC Offline
|
||||
messa03ec | Sharepoint
|
||||
messv01ec | MES SQL Prod
|
||||
mestsv01ec | MES SQL Dev
|
||||
messd01ec | EC File Server
|
||||
mestsa04ec | EC Tableau Dev
|
||||
```
|
||||
|
||||
```Other
|
||||
messa009
|
||||
mesxs015
|
||||
messa1005
|
||||
messcec01
|
||||
messnec01
|
||||
messpec01
|
||||
messt6501
|
||||
messt6502
|
||||
mestsa008
|
||||
elsstec101
|
||||
leosatec01
|
||||
messtec101
|
||||
messtec102
|
||||
mesxsec011
|
||||
mesxsec012
|
||||
mesxsec013
|
||||
mesxsec014
|
||||
mesxvec031
|
||||
mesxvec034
|
||||
mesxvec035
|
||||
loesapaec21
|
||||
leosataec21
|
||||
loesapaec22
|
||||
mesirwfp001
|
||||
messv02ech1
|
||||
messv02ech2
|
||||
isccvmd0af56899
|
||||
```
|
35
.vscode/mklink.md
vendored
Normal file
35
.vscode/mklink.md
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
---
|
||||
type: "note"
|
||||
created: "2024-01-14T02:17:44.611Z"
|
||||
updated: "2024-01-14T02:27:47.631Z"
|
||||
---
|
||||
|
||||
# mklink
|
||||
|
||||
```bash
|
||||
mklink /J "D:\Documents\Notes\EC-Documentation\.git" "L:\Git\Notes-EC-Documentation\.git"
|
||||
mklink /J "D:\Documents\Notes\EC-Documentation\.kanbn" "D:\5-Other-Small\Kanban\EC-Documentation"
|
||||
mklink /J "D:\Documents\Notes\EC-Documentation\incoming" "D:\Documents\Notes\EC-Documentation\port"
|
||||
mklink /J "D:\Documents\Notes\EC-Documentation\outgoing" "D:\Documents\Notes\EC-Documentation\port"
|
||||
```
|
||||
|
||||
```bash
|
||||
mklink /J "D:\5-Other-Small\Notes\EC-Documentation\.git" "L:\Git\Notes-EC-Documentation\.git"
|
||||
mklink /J "D:\5-Other-Small\Notes\EC-Documentation\.kanbn" "D:\5-Other-Small\Kanban\EC-Documentation"
|
||||
mklink /J "D:\5-Other-Small\Notes\EC-Documentation\incoming" "D:\5-Other-Small\Notes\EC-Documentation\port"
|
||||
mklink /J "D:\5-Other-Small\Notes\EC-Documentation\outgoing" "D:\5-Other-Small\Notes\EC-Documentation\port"
|
||||
```
|
||||
|
||||
```bash
|
||||
mklink /J "L:\Git\Notes-EC-Documentation\.EC-Documentation\incoming" "D:\5-Other-Small\Notes\EC-Documentation\port"
|
||||
mklink /J "L:\Git\Notes-EC-Documentation\.EC-Documentation\outgoing" "D:\5-Other-Small\Notes\EC-Documentation\port"
|
||||
```
|
||||
|
||||
```bash
|
||||
git init L:/Git/Notes-EC-Documentation
|
||||
mklink /J "L:\Git\Notes-EC-Documentation\.EC-Documentation" "D:\5-Other-Small\Notes\EC-Documentation"
|
||||
mklink /J "D:\5-Other-Small\Notes\EC-Documentation\.git" "L:\Git\Notes-EC-Documentation\.git"
|
||||
code "L:\Git\Notes-EC-Documentation\.EC-Documentation"
|
||||
codium "L:\Git\Notes-EC-Documentation\.EC-Documentation"
|
||||
code-insiders "L:\Git\Notes-EC-Documentation\.EC-Documentation"
|
||||
```
|
49
.vscode/netsh.txt
vendored
Normal file
49
.vscode/netsh.txt
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=10.64.131.48
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=10.64.188.20
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=10.95.104.253
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=10.95.140.122
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=104.208.16.90
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=13.107.213.69
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=13.107.246.69
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=13.107.42.16
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=13.107.42.18
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=13.107.5.93
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=13.89.179.9
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=152.199.4.33
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=172.23.2.115
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=172.23.4.93
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=185.199.108.133
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=185.199.109.133
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=185.199.110.133
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=185.199.111.133
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=192.30.255.113
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=20.189.173.3
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=20.190.190.131
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=20.190.190.132
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=20.190.190.193
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=20.190.190.194
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=20.190.190.195
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=20.190.190.196
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=20.42.73.25
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.216
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.217
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.225
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.226
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.227
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.228
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.229
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.230
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.231
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.233
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.235
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.237
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.238
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=23.206.229.239
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=40.126.62.130
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=40.126.62.131
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=40.78.253.199
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=40.78.253.202
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=40.78.253.203
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=40.78.253.204
|
||||
netsh advfirewall firewall add rule name="Stealth-BLACKLIST" dir=out action=block remoteip=52.182.141.63
|
||||
dir
|
76
.vscode/settings.json
vendored
Normal file
76
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,76 @@
|
||||
{
|
||||
"files.eol": "\n",
|
||||
"[markdown]": {
|
||||
"editor.wordWrap": "off"
|
||||
},
|
||||
"cSpell.words": [
|
||||
"Bianchin",
|
||||
"CMDB",
|
||||
"fileshare",
|
||||
"Infineon",
|
||||
"messa",
|
||||
"messdv",
|
||||
"messv",
|
||||
"mestsa",
|
||||
"Ouellette",
|
||||
"PDSF",
|
||||
"Phares",
|
||||
"Syncthing"
|
||||
],
|
||||
"files.exclude": {
|
||||
"**/node_modules": true
|
||||
},
|
||||
"files.watcherExclude": {
|
||||
"**/node_modules": true
|
||||
},
|
||||
"foam.files.ignore": [
|
||||
".foam/**/*",
|
||||
".stfolder/**/*",
|
||||
".UserSecrets/**/*",
|
||||
"**/_layouts/**/*",
|
||||
"**/_site/**/*",
|
||||
"**/.vscode/**/*",
|
||||
"**/node_modules/**/*"
|
||||
],
|
||||
"kanbn.showBurndownButton": false,
|
||||
"kanbn.showSprintButton": false,
|
||||
"foam.links.hover.enable": false,
|
||||
"foam.placeholders.exclude": [".kanbn/Archive/**/*"],
|
||||
"foam.orphans.exclude": [
|
||||
".Applications/**/*",
|
||||
".DevOps/**/*",
|
||||
".Fab/**/*",
|
||||
".journal/**/*"
|
||||
],
|
||||
"foam.graph.titleMaxLength": 10,
|
||||
"foam.graph.style": {
|
||||
"background": "#202020",
|
||||
"color-palette-url": "https://coolors.co/palette/f94144-f3722c-f8961e-f9844a-f9c74f-90be6d-43aa8b-4d908e-577590-277da1",
|
||||
"node": {
|
||||
"account": "#277DA1",
|
||||
"database": "#F9844A",
|
||||
"cep": "#F3722C",
|
||||
"dns": "#577590",
|
||||
"fileshare": "#4D908E",
|
||||
"port": "#43AA8B",
|
||||
"server": "#90BE6D",
|
||||
"process": "#F9C74F",
|
||||
"d": "#F8961E",
|
||||
"eva": "#F94144",
|
||||
"topic": "#bc2a3c",
|
||||
"kanbn": "#ff7b00",
|
||||
"basic-note": "#773b93",
|
||||
"daily-note": "#ff9d00",
|
||||
"note": "#f2cb1d",
|
||||
"placeholder": "#F94144",
|
||||
"tag": "#0494c1",
|
||||
"bug": "#bc2a3c",
|
||||
"epic": "#ff7b00",
|
||||
"feature": "#773b93",
|
||||
"issue": "#ff9d00",
|
||||
"task": "#f2cb1d",
|
||||
"test-case": "#ff9d00",
|
||||
"user-story": "#0494c1"
|
||||
}
|
||||
}
|
||||
}
|
95
.vscode/tasks.json
vendored
Normal file
95
.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,95 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "File-Folder-Helper AOT s M .Kanbn Index",
|
||||
"type": "shell",
|
||||
"command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/.kanbn",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "File-Folder-Helper AOT s M .Kanbn Tasks",
|
||||
"type": "shell",
|
||||
"command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/.kanbn/tasks",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "File-Folder-Helper AOT s M Account",
|
||||
"type": "shell",
|
||||
"command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/account",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "File-Folder-Helper AOT s M IteraPlan",
|
||||
"type": "shell",
|
||||
"command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/iteraplan -d L:/Git/Notes-EC-Documentation/.EC-Documentation/.iteraplan",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "File-Folder-Helper AOT s M Database",
|
||||
"type": "shell",
|
||||
"command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/database",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "File-Folder-Helper AOT s M DNS",
|
||||
"type": "shell",
|
||||
"command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/dns",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "File-Folder-Helper AOT s M EVA",
|
||||
"type": "shell",
|
||||
"command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/eva -d L:/Git/Notes-EC-Documentation/.EC-Documentation/.eva",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "File-Folder-Helper AOT s M Index",
|
||||
"type": "shell",
|
||||
"command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/.index",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "File-Folder-Helper AOT s M Fileshare",
|
||||
"type": "shell",
|
||||
"command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/fileshare",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "File-Folder-Helper AOT s M Process",
|
||||
"type": "shell",
|
||||
"command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/process",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "File-Folder-Helper AOT s M Port",
|
||||
"type": "shell",
|
||||
"command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/port",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "File-Folder-Helper AOT s M Server",
|
||||
"type": "shell",
|
||||
"command": "L:/DevOps/Mesa_FI/File-Folder-Helper/bin/Release/net8.0/win-x64/publish/File-Folder-Helper.exe s M L:/Git/Notes-EC-Documentation/.EC-Documentation -s L:/Git/Notes-EC-Documentation/.EC-Documentation/server",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Kanbn Console",
|
||||
"type": "npm",
|
||||
"script": "kanbn.board",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Kanbn Write Boad",
|
||||
"type": "shell",
|
||||
"command": "& kanbn board -j | L:/Git/kanbn2md/kanbn2md.exe >.kanbn/board.md",
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "Kanbn Write json",
|
||||
"type": "npm",
|
||||
"script": "kanbn.board.json",
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
58
.vscode/timeline.md
vendored
Normal file
58
.vscode/timeline.md
vendored
Normal file
@ -0,0 +1,58 @@
|
||||
---
|
||||
type: "note"
|
||||
created: "2023-10-28T04:42:46.814Z"
|
||||
updated: "2023-11-07T18:45:14.511Z"
|
||||
---
|
||||
|
||||
# Timeline
|
||||
|
||||
## Timeline
|
||||
|
||||
* SPC License troubles
|
||||
* Helping users install Stealth
|
||||
* Helping users install SPC if they used to use iApps
|
||||
* Thursday 10 AM fab start
|
||||
* Thursday 10:01 AM Find missing config change in EDA (fixed and back loaded data within 45 minutes)
|
||||
- ~~Thursday 10:45 AM Find hardcode reference to ec.local (update and rollout affect instances)~~
|
||||
* Find Win NT [SP1], XP [Stratus], 7 [SPV (not impacted)], 10 [SRP ENG] can't access file share
|
||||
* Thursday 4:30 PM made change SVG - CEP FL to Win 2023 fileshare to support Win NT and Win XP. This change effected 9 nPort devices
|
||||
* Thursday 4:40 PM SPC (Si) shortcut typo fixed by Charles Lemke
|
||||
* Restart 9 nPort devices and leave 7 PM Thursday
|
||||
- ~~Friday 8 AM BioRad bug for 14 point recipes reported due to hardcode reference rollout~~
|
||||
* Friday 1 PM Fixed missing config change in OI Metrology Viewer for Viewer to OI
|
||||
* Friday 12:43 PM made another change SVG - EAF FL to Win 2023 fileshare to support Win NT and Win XP. This change effected 9 nPort devices
|
||||
* Friday 2 PM made yet another change SVG - CEP Clear Text from EAF to support Win NT and Win XP. This change effected 9 nPort devices
|
||||
* Friday 9:30 PM restarted becuase of lack of data for 45 minutes on all 9 nPort devices
|
||||
* Saturday 9:30 AM Surge made last change to allow EAF to read Stratus files from Win 2023 fileshare
|
||||
* Sunday 10:30 AM added *_ to Thickness 14 point import fixing configuration differences between EC and IFX
|
||||
* Monday 11 AM Changed EAF only nPort instances to write to EAF agent local drive
|
||||
* Monday 12 PM two more SVG changes were made and didn't affect nPort EAF instances
|
||||
*
|
||||
|
||||
## nPort Metrology 9 total
|
||||
|
||||
* Tencor 1, 2, 3
|
||||
* CDE 2
|
||||
* HgCV 1, 2, 3
|
||||
* BioRad 2 and 3 only
|
||||
|
||||
## non-nPort Metrology
|
||||
|
||||
* Straus 4, 5 (2008)
|
||||
* SP1 (Push button)
|
||||
* SPV (SECS/GEM)
|
||||
* SRP
|
||||
|
||||
## Tech
|
||||
|
||||
* Printers out of EC
|
||||
* Win 20## to 2022 for fileshare
|
||||
* SVG Stealth
|
||||
|
||||
```
|
||||
Protocol Version First Client Version First Server Version
|
||||
SMB 2.0 Windows Vista Windows Server 2008
|
||||
SMB 2.1 Windows 7 Windows Server 2008R2
|
||||
SMB 3.0 Windows 8 Windows Server 2012
|
||||
SMB 3.1 Windows 10 Windows Server 2016
|
||||
```
|
585
Databases-Oracle.sv
Normal file
585
Databases-Oracle.sv
Normal file
@ -0,0 +1,585 @@
|
||||
"Account","Login Name","Password","Web Site","Comments"
|
||||
"EC - Prod - APC","fdc_admin","M3s_apc_tr3nd_2019!","","apcmesp.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=apcmesp-db.ec.local)(port=7001)))(connect_data=(sid=apcmesp)))
|
||||
|
||||
C:\\Users\\ecphares>nslookup apcmesp-db.ec.local
|
||||
Server: messcec01.ec.local
|
||||
Address: 10.95.128.11
|
||||
|
||||
Name: apcmesp-db.ec.local
|
||||
Address: 10.95.131.154
|
||||
|
||||
fdc_admin/M3s_apc_tr3nd_2019!@apcmesp.mes.infineon.com"
|
||||
"EC - Prod - EDA","edaprod","M3sapc_t3st2019","AaT14I6SkY2Ack0PyZU4drut0uvSqnJaASdC","edaprod.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimesp-db.ec.local)(port=7002)))(connect_data=(sid=fimesp)))
|
||||
|
||||
C:\\Windows\\system32>D:\\Tmp\\phares\\EDA\\Binaries-FOR-IT-ONLY\\4.7.0\\Server_x86\\AIS.DataFramework.Server.exe -encrypt *******
|
||||
|
||||
Your encrypted password is: AaT14I6SkY2Ack0PyZU4drut0uvSqnJaASdC
|
||||
|
||||
C:\\Users\\ecphares>nslookup fimesp-db.ec.local
|
||||
Server: messcec01.ec.local
|
||||
Address: 10.95.128.11
|
||||
|
||||
Name: fimesp-db.ec.local
|
||||
Address: 10.95.131.155"
|
||||
"EC - Prod - Yoda","yodaprod","M3sapc_t3st2019","","yodprod.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimesp-db.ec.local)(port=7002)))(connect_data=(sid=fimesp)))
|
||||
|
||||
C:\\Users\\ecphares>nslookup fimesp-db.ec.local
|
||||
Server: messcec01.ec.local
|
||||
Address: 10.95.128.11
|
||||
|
||||
Name: fimesp-db.ec.local
|
||||
Address: 10.95.131.155"
|
||||
"IFX - APC","fdc_admin","M3s_apc_tr3nd_2019!","","apcmest.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=apcmest-db.mes.infineon.com)(port=7001)))(connect_data=(sid=apcmest)))
|
||||
|
||||
C:\\Users\\phares>nslookup apcmest-db.mes.infineon.com
|
||||
Server: elssc001.na.infineon.com
|
||||
Address: 10.64.176.11
|
||||
|
||||
Name: mesxv035.mes.infineon.com
|
||||
Address: 10.95.179.45
|
||||
Aliases: apcmest-db.mes.infineon.com
|
||||
|
||||
fdc_admin/M3s_apc_tr3nd_2019!@apcmest.mes.infineon.com"
|
||||
"IFX - EDA","edatest","M3sapc_t3st2019","","edatest.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimest-db.mes.infineon.com)(port=7001)))(connect_data=(sid=fimest)))
|
||||
|
||||
C:\\Users\\phares>nslookup fimest-db.mes.infineon.com
|
||||
Server: elssc001.na.infineon.com
|
||||
Address: 10.64.176.11
|
||||
|
||||
Name: mesxv034.mes.infineon.com
|
||||
Address: 10.95.179.44
|
||||
Aliases: fimest-db.mes.infineon.com"
|
||||
"IFX - Yoda","yodatest","M3sapc_t3st2019","","yodatest.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimest-db.mes.infineon.com)(port=7001)))(connect_data=(sid=fimest)))
|
||||
|
||||
C:\\Users\\phares>nslookup fimest-db.mes.infineon.com
|
||||
Server: elssc001.na.infineon.com
|
||||
Address: 10.64.176.11
|
||||
|
||||
Name: mesxv034.mes.infineon.com
|
||||
Address: 10.95.179.44
|
||||
Aliases: fimest-db.mes.infineon.com"
|
||||
"EC - Stage - APC","fdc_admin","M3s_apc_tr3nd_2019!","","apcmess.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=apcmess-db.ec.local)(port=7001)))(connect_data=(sid=apcmess)))
|
||||
|
||||
C:\\Users\\ecphares>nslookup apcmess-db.ec.local
|
||||
Server: messcec01.ec.local
|
||||
Address: 10.95.128.11
|
||||
|
||||
Name: mesxvec035.ec.local
|
||||
Address: 10.95.131.45
|
||||
Aliases: apcmess-db.ec.local
|
||||
|
||||
fdc_admin/M3s_apc_tr3nd_2019!@apcmess.mes.infineon.com"
|
||||
"EC - Stage - EDA","edastag","M3sapc_t3st2019","","edastag.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimess-db.ec.local)(port=7001)))(connect_data=(sid=fimess)))
|
||||
|
||||
C:\\Users\\ecphares>nslookup fimess-db.ec.local
|
||||
Server: messcec01.ec.local
|
||||
Address: 10.95.128.11
|
||||
|
||||
Name: mesxvec034.ec.local
|
||||
Address: 10.95.131.44
|
||||
Aliases: fimess-db.ec.local"
|
||||
"EC - Stage - Yoda","yodastag","M3sapc_t3st2019","","yodastag.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimess-db.ec.local)(port=7001)))(connect_data=(sid=fimess)))
|
||||
|
||||
C:\\Users\\ecphares>nslookup fimess-db.ec.local
|
||||
Server: messcec01.ec.local
|
||||
Address: 10.95.128.11
|
||||
|
||||
Name: mesxvec034.ec.local
|
||||
Address: 10.95.131.44
|
||||
Aliases: fimess-db.ec.local"
|
||||
"EC - Prod - EAF","eafprod","Mes_E@f2018!","","eafprod.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=eafprod-db.ec.local)(port=9151)))(connect_data=(sid=eafprod)))
|
||||
|
||||
C:\\Users\\ecphares>nslookup eafprod-db.ec.local
|
||||
Server: messcec01.ec.local
|
||||
Address: 10.95.128.11
|
||||
|
||||
Name: eafprod-db.ec.local
|
||||
Address: 10.95.131.151"
|
||||
"IFX - Prod - EAF - GaN","ganeafp","Mes_E@f2018!","","ganeafp.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host= ganeafp-db.mes.infineon.com)(port=9151)))(connect_data=(sid=ganeafp)))
|
||||
|
||||
C:\\Users\\phares>nslookup ganeafp-db.mes.infineon.com
|
||||
Server: elssc001.na.infineon.com
|
||||
Address: 10.64.176.11
|
||||
|
||||
Name: ganeafp-db.mes.infineon.com
|
||||
Address: 10.95.179.151"
|
||||
"EC - Stage - EAF","eafstag","Mes_E@f2018!","","eafstag.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=eafstag-db.ec.local)(port=9153)))(connect_data=(sid=eafstag)))
|
||||
|
||||
C:\\Users\\ecphares>nslookup eafstag-db.ec.local
|
||||
Server: messcec01.ec.local
|
||||
Address: 10.95.128.11
|
||||
|
||||
Name: eafstag-db.ec.local
|
||||
Address: 10.95.131.153"
|
||||
"IFX - Stage - EAF - GaN","ganeafs","Mes_E@f2018","","ganeafs.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host= ganeafs-db.mes.infineon.com)(port=9152)))(connect_data=(sid=ganeafs)))
|
||||
|
||||
C:\\Users\\phares>nslookup ganeafs-db.mes.infineon.com
|
||||
Server: elssc001.na.infineon.com
|
||||
Address: 10.64.176.11
|
||||
|
||||
Name: ganeafs-db.mes.infineon.com
|
||||
Address: 10.95.179.152"
|
||||
"IFX - EAF - Obsolete","eafdev","Mes_E@f2018!","","FIMEST.MES.INFINEON.COM
|
||||
EAFDEV
|
||||
Ix!OCk6zGx!!y2eGQ1:H
|
||||
|
||||
eafdev.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=eafdev-db.ec.local)(port=9152)))(connect_data=(sid=eafdev)))
|
||||
|
||||
C:\\Users\\phares>nslookup eafdev-db.ec.local
|
||||
Server: elssc001.na.infineon.com
|
||||
Address: 10.64.176.11
|
||||
|
||||
Non-authoritative answer:
|
||||
Name: eafdev-db.ec.local
|
||||
Address: 10.95.131.152"
|
||||
"APC - List","","","",">----------------------PROD------------------------
|
||||
>APC3.3 RBG FE
|
||||
FDC_ADMIN/fdc_march13_rbg@apcrbg.rbg.infineon.com
|
||||
FDC_DEV/fdc!fngrwg@apcrbg.rbg.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcrbg.rbg.infineon.com
|
||||
FDC_EXTRACTOR/extractor33_rbg@apcrbg.rbg.infineon.com
|
||||
FDC_V32/DCL_read@apcrbg.rbg.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcrbg.rbg.infineon.com
|
||||
FDC_TREND2/trend$user@apcrbg.rbg.infineon.com
|
||||
FDC_CONFIG/fdcconfig!global@apcrbg.rbg.infineon.com
|
||||
FDC_CONFIG2/config$user@apcrbg.rbg.infineon.com
|
||||
APCCHECK/APCCHECK$user@apcrbg.rbg.infineon.com
|
||||
APCCHECK2/APCCHECK2$user@apcrbg.rbg.infineon.com
|
||||
OCNS/OCNS$user@apcrbg.rbg.infineon.com
|
||||
FDC_REPORTING/rep$user@apcrbg.rbg.infineon.com
|
||||
FDC_EBS/ebs$user@apcrbg.rbg.infineon.com
|
||||
FDC_ALECS/alecs$user@apcrbg.rbg.infineon.com
|
||||
FDC_CERBERUS/cerberus_fdc@apcrbg.rbg.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcrbg.rbg.infineon.com
|
||||
LOGEVAL/LOGEVAL1qay2wsx@apcrbg.rbg.infineon.com
|
||||
OLE_ADMIN/yaq1xsw3@apcrbg.rbg.infineon.com
|
||||
FDC_OPC/)I58n711iD=*snlH3LPg@apcrbg.rbg.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcrbg.rbg.infineon.com
|
||||
dbl$dwh_rbg$glb_al_apc/dwh_rbg$glb_al_apc18@apcrbg.rbg.infineon.com
|
||||
>APC3.3 RBG BE
|
||||
FDC_ADMIN/FL6duKsZ@apcrbgbe.rbg.infineon.com
|
||||
FDC_DEV/dbhiw!amfdg@apcrbgbe.rbg.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcrbgbe.rbg.infineon.com
|
||||
FDC_EXTRACTOR/dbhiw!amfdg@apcrbgbe.rbg.infineon.com
|
||||
FDC_V32/dbhiw!amfdg@apcrbgbe.rbg.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcrbgbe.rbg.infineon.com
|
||||
FDC_TREND2/trend$user@apcrbgbe.rbg.infineon.com
|
||||
FDC_CONFIG/fdcconfig!global@apcrbgbe.rbg.infineon.com
|
||||
FDC_CONFIG2/config$user@apcrbgbe.rbg.infineon.com
|
||||
APCCHECK/dbhiw!amfdg@apcrbgbe.rbg.infineon.com
|
||||
APCCHECK2/dbhiw!amfdg@apcrbgbe.rbg.infineon.com
|
||||
OCNS/dbhiw!amfdg@apcrbgbe.rbg.infineon.com
|
||||
FDC_REPORTING/rep$user@apcrbgbe.rbg.infineon.com
|
||||
FDC_ALECS/alecs$user@apcrbgbe.rbg.infineon.com
|
||||
FDC_CERBERUS/dbhiw!amfdg@apcrbgbe.rbg.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcrbgbe.rbg.infineon.com
|
||||
LOGEVAL/dbhiw!amfdg@apcrbgbe.rbg.infineon.com
|
||||
OLE_ADMIN/cde3vfr4@apcrbgbe.rbg.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcrbgbe.rbg.infineon.com
|
||||
FDC_BE_CONVERTER/diewdwiiz@apcrbgbe.rbg.infineon.com
|
||||
>APC3.3 VIH
|
||||
FDC_ADMIN/fdc_feb14_vih@apcvih.vih.infineon.com
|
||||
FDC_DEV/fdc!fngrwg@apcvih.vih.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcvih.vih.infineon.com
|
||||
FDC_EXTRACTOR/fdc!fngrwg@apcvih.vih.infineon.com
|
||||
FDC_V32/DCL_read@apcvih.vih.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcvih.vih.infineon.com
|
||||
FDC_TREND2/trend$user@apcvih.vih.infineon.com
|
||||
FDC_CONFIG/fdcconfig!global@apcvih.vih.infineon.com
|
||||
FDC_CONFIG2/config$user@apcvih.vih.infineon.com
|
||||
APCCHECK/fdc!fngrwg@apcvih.vih.infineon.com
|
||||
APCCHECK2/fdc!fngrwg@apcvih.vih.infineon.com
|
||||
OCNS/OCNS$user@apcvih.vih.infineon.com
|
||||
FDC_REPORTING/rep$user@apcvih.vih.infineon.com
|
||||
FDC_EBS/ebs$user@apcvih.vih.infineon.com
|
||||
FDC_ALECS/alecs$user@apcvih.vih.infineon.com
|
||||
FDC_CERBERUS/cerberus$user@apcvih.vih.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcvih.vih.infineon.com
|
||||
LOGEVAL/fdc!fngrwg@apcvih.vih.infineon.com
|
||||
OLE_ADMIN/sVg3YGl@apcvih.vih.infineon.com
|
||||
FDC_OPC/TBOGTBB8RFYGYNMOLNW6@apcvih.vih.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcvih.vih.infineon.com
|
||||
>APC3.3 SFD200
|
||||
FDC_ADMIN/37hLpQb8XuwD@apcdd200.drs.infineon.com
|
||||
FDC_DEV/EHIWMCZGoGHF@apcdd200.drs.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcdd200.drs.infineon.com
|
||||
FDC_EXTRACTOR/Cci4UZdylAup@apcdd200.drs.infineon.com
|
||||
FDC_V32/fkXdhKGJUTPL@apcdd200.drs.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcdd200.drs.infineon.com
|
||||
FDC_TREND2/trend$user@apcdd200.drs.infineon.com
|
||||
FDC_CONFIG/z7SIdgDGAOrO@apcdd200.drs.infineon.com
|
||||
FDC_CONFIG2/config$user@apcdd200.drs.infineon.com
|
||||
APCCHECK/APCCHECK@apcdd200.drs.infineon.com
|
||||
APCCHECK2/QRBhhVTFleWL@apcdd200.drs.infineon.com
|
||||
OCNS/64ppQ7TWtEQR@apcdd200.drs.infineon.com
|
||||
FDC_REPORTING/DrZNjvyC5CvzSOn2@apcdd200.drs.infineon.com
|
||||
FDC_EBS/8lXRsm14kEaWDs8t@apcdd200.drs.infineon.com
|
||||
FDC_ALECS/alecs$user@apcdd200.drs.infineon.com
|
||||
FDC_CERBERUS/JOlpVR10oev9@apcdd200.drs.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcdd200.drs.infineon.com
|
||||
LOGEVAL/tdM8qz02mTn4@apcdd200.drs.infineon.com
|
||||
OLE_ADMIN/uc71LEROXTjgPimq@apcdd200.drs.infineon.com
|
||||
FDC_OPC/,_7!w,-eqdyEv+1qZX-O@apcdd200.drs.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcdd200.drs.infineon.com
|
||||
FDC_CA/W7+Y_AYx*9!3mYkyNc-u@apcdd200.drs.infineon.com
|
||||
FDC_BCC/BoBwathN2e4bKmVg@apcdd200.drs.infineon.com
|
||||
GMS_MESSENGER/ZsRxBDVyLB0qB9NO@apcdd200.drs.infineon.com
|
||||
>APC3.3 SFD300
|
||||
FDC_ADMIN/PQQE6QhEENKa@apcdd300.drs.infineon.com
|
||||
FDC_DEV/6mBscwnty39k@apcdd300.drs.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcdd300.drs.infineon.com
|
||||
FDC_EXTRACTOR/MeL4MsQZ2KHh@apcdd300.drs.infineon.com
|
||||
FDC_V32/TyuKR0kAjP3Z@apcdd300.drs.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcdd300.drs.infineon.com
|
||||
FDC_TREND2/trend$user@apcdd300.drs.infineon.com
|
||||
FDC_CONFIG/kZGrBwChZznU@apcdd300.drs.infineon.com
|
||||
FDC_CONFIG2/config$user@apcdd300.drs.infineon.com
|
||||
APCCHECK/APCCHECK@apcdd300.drs.infineon.com
|
||||
APCCHECK2/VvUFTiisOEqB@apcdd300.drs.infineon.com
|
||||
OCNS/siwpNrWrtTsl@apcdd300.drs.infineon.com
|
||||
FDC_REPORTING/uV8zSWRRe3Oz6pLl@apcdd300.drs.infineon.com
|
||||
FDC_EBS/f4WW9m3HTTwfxHlq@apcdd300.drs.infineon.com
|
||||
FDC_ALECS/alecs$user@apcdd300.drs.infineon.com
|
||||
FDC_CERBERUS/FtBNWFbLB0pP@apcdd300.drs.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcdd300.drs.infineon.com
|
||||
LOGEVAL/otZgN9G9s9Bs@apcdd300.drs.infineon.com
|
||||
OLE_ADMIN/f58aKtqVoiIanf6P@apcdd300.drs.infineon.com
|
||||
FDC_OPC/#xG_pT+0#N03GYFBL34K@apcdd300.drs.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcdd300.drs.infineon.com
|
||||
FDC_BCC/jg9HmphljCDOZT7B@apcdd300.drs.infineon.com
|
||||
GMS_MESSENGER/Fgp57BOQ8PVeAraB@apcdd300.drs.infineon.com
|
||||
>APC3.3 WAR
|
||||
FDC_ADMIN/FL6duKsZ@apcwar.war.infineon.com
|
||||
FDC_DEV/dbhiw!amfdg@apcwar.war.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcwar.war.infineon.com
|
||||
FDC_EXTRACTOR/dbhiw!amfdg@apcwar.war.infineon.com
|
||||
FDC_V32/dbhiw!amfdg@apcwar.war.infineon.com
|
||||
FDC_TREND/fdctrend!global1@apcwar.war.infineon.com
|
||||
FDC_TREND2/trend$user@apcwar.war.infineon.com
|
||||
FDC_CONFIG/Fdcconfig!global1@apcwar.war.infineon.com
|
||||
FDC_CONFIG2/config$user@apcwar.war.infineon.com
|
||||
APCCHECK/dbhiw!amfdg@apcwar.war.infineon.com
|
||||
APCCHECK2/dbhiw!amfdg@apcwar.war.infineon.com
|
||||
OCNS/dbhiw!amfdg@apcwar.war.infineon.com
|
||||
FDC_REPORTING/rep$user@apcwar.war.infineon.com
|
||||
FDC_ALECS/alecs$user@apcwar.war.infineon.com
|
||||
FDC_CERBERUS/dbhiw!amfdg@apcwar.war.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcwar.war.infineon.com
|
||||
LOGEVAL/dbhiw!amfdg@apcwar.war.infineon.com
|
||||
OLE_ADMIN/cde3vfr4@apcwar.war.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcwar.war.infineon.com
|
||||
FDC_BE_CONVERTER/diewdwiiz@apcwar.war.infineon.com
|
||||
>APC3.3 KLM (Kulim)
|
||||
FDC_ADMIN/fdc01klm@apcklm.klm.infineon.com
|
||||
FDC_DEV/fdcdevklm@apcklm.klm.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcklm.klm.infineon.com
|
||||
FDC_EXTRACTOR/fdc01klm@apcklm.klm.infineon.com
|
||||
FDC_V32/fdc32klm@apcklm.klm.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcklm.klm.infineon.com
|
||||
FDC_TREND2/trend01klm@apcklm.klm.infineon.com
|
||||
FDC_CONFIG/fdc01klm@apcklm.klm.infineon.com
|
||||
FDC_CONFIG2/fdc01klm@apcklm.klm.infineon.com
|
||||
APCCHECK/fdc01klm@apcklm.klm.infineon.com
|
||||
APCCHECK2/fdc01klm@apcklm.klm.infineon.com
|
||||
OCNS/OCNS01klm@apcklm.klm.infineon.com
|
||||
FDC_REPORTING/rep$user@apcklm.klm.infineon.com
|
||||
FDC_EBS/ebs01klm@apcklm.klm.infineon.com
|
||||
FDC_CERBERUS/cerberus01klm@apcklm.klm.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcklm.klm.infineon.com
|
||||
LOGEVAL/fdc01klm@apcklm.klm.infineon.com
|
||||
OLE_ADMIN/ole1!klmXD@apcklm.klm.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcklm.klm.infineon.com
|
||||
>APC3.3 MKZ (Malacca)
|
||||
FDC_ADMIN/apcmaladmin@apcmkz.mkz.infineon.com
|
||||
FDC_DEV/adm$!fdc@apcmkz.mkz.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcmkz.mkz.infineon.com
|
||||
FDC_EXTRACTOR/adm$!fdc@apcmkz.mkz.infineon.com
|
||||
FDC_V32/adm$!fdc@apcmkz.mkz.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcmkz.mkz.infineon.com
|
||||
FDC_TREND2/t2daC2eyaPuBEsp@apcmkz.mkz.infineon.com
|
||||
FDC_CONFIG/fdcconfig!global@apcmkz.mkz.infineon.com
|
||||
FDC_CONFIG2/frAtebracevu3ub@apcmkz.mkz.infineon.com
|
||||
APCCHECK/apcc100@apcmkz.mkz.infineon.com
|
||||
APCCHECK2/apcc100@apcmkz.mkz.infineon.com
|
||||
OCNS/adm$!fdc@apcmkz.mkz.infineon.com
|
||||
FDC_REPORTING/rep$user@apcmkz.mkz.infineon.com
|
||||
FDC_CERBERUS/adm$!fdc@apcmkz.mkz.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcmkz.mkz.infineon.com
|
||||
LOGEVAL/adm$!fdc@apcmkz.mkz.infineon.com
|
||||
OLE_ADMIN/yN{D{!3=X%v-EAi9f,.{@apcmkz.mkz.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcmkz.mkz.infineon.com
|
||||
FDC_BE_CONVERTER/yN{D{!3=X%v-EAi9f,.{@apcmkz.mkz.infineon.com
|
||||
>APC3.3 SIN (Singapur)
|
||||
FDC_ADMIN/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
FDC_DEV/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcsin.sin.infineon.com
|
||||
FDC_EXTRACTOR/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
FDC_V32/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcsin.sin.infineon.com
|
||||
FDC_TREND2/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
FDC_CONFIG/fdcconfig!global@apcsin.sin.infineon.com
|
||||
FDC_CONFIG2/config$user@apcsin.sin.infineon.com
|
||||
APCCHECK/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
APCCHECK2/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
OCNS/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
FDC_REPORTING/rep$user@apcsin.sin.infineon.com
|
||||
FDC_CERBERUS/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcsin.sin.infineon.com
|
||||
LOGEVAL/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
FDC_PARALLEL/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcsin.sin.infineon.com
|
||||
>APC3.3 BAT (Batam)
|
||||
FDC_ADMIN/apcbatadmin@apcbth.bth.infineon.com
|
||||
FDC_DEV/adm$!fdc@apcbth.bth.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcbth.bth.infineon.com
|
||||
FDC_EXTRACTOR/adm$!fdc@apcbth.bth.infineon.com
|
||||
FDC_V32/adm$!fdc@apcbth.bth.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcbth.bth.infineon.com
|
||||
FDC_TREND2/Yacreph4@apcbth.bth.infineon.com
|
||||
FDC_CONFIG/fdcconfig!global@apcbth.bth.infineon.com
|
||||
FDC_CONFIG2/p5crafRa@apcbth.bth.infineon.com
|
||||
APCCHECK/apcc100@apcbth.bth.infineon.com
|
||||
APCCHECK2/HdoUOW*fHf8jNNaO7J#Q@apcbth.bth.infineon.com
|
||||
OCNS/adm$!fdc@apcbth.bth.infineon.com
|
||||
FDC_REPORTING/rep$user@apcbth.bth.infineon.com
|
||||
FDC_CERBERUS/YC{E6j35cwN[wztHGqh5@apcbth.bth.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcbth.bth.infineon.com
|
||||
LOGEVAL/adm$!fdc@apcbth.bth.infineon.com
|
||||
FDC_PARALLEL/8uchUwRa@apcbth.bth.infineon.com
|
||||
OLE_ADMIN/adm$!fdc@apcbth.bth.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcbth.bth.infineon.com
|
||||
>APC3.3 WUX (Wuxi)
|
||||
FDC_ADMIN/apcwuxadmin@apcwux.wux.infineon.com
|
||||
FDC_DEV/adm$!fdc@apcwux.wux.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcwux.wux.infineon.com
|
||||
FDC_EXTRACTOR/adm$!fdc@apcwux.wux.infineon.com
|
||||
FDC_V32/adm$!fdc@apcwux.wux.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcwux.wux.infineon.com
|
||||
FDC_TREND2/frEces5U@apcwux.wux.infineon.com
|
||||
FDC_CONFIG/fdcconfig!global@apcwux.wux.infineon.com
|
||||
FDC_CONFIG2/frEces5X@apcwux.wux.infineon.com
|
||||
APCCHECK/apcc100@apcwux.wux.infineon.com
|
||||
APCCHECK2/apcc100@apcwux.wux.infineon.com
|
||||
OCNS/apcwuxOCNS@apcwux.wux.infineon.com
|
||||
FDC_REPORTING/rep$user@apcwux.wux.infineon.com
|
||||
FDC_CERBERUS/fdcP@ssw0rd@apcwux.wux.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcwux.wux.infineon.com
|
||||
LOGEVAL/adm$!fdc@apcwux.wux.infineon.com
|
||||
FDC_PARALLEL/8uchUwRa@apcwux.wux.infineon.com
|
||||
OLE_ADMIN/8+h!!rRTl]grl9]!p7?L@apcwux.wux.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcwux.wux.infineon.com
|
||||
FDC_BE_CONVERTER/zo-zJ#gy!M{3DWQSnv]b@apcwux.wux.infineon.com
|
||||
>----------------------TEST------------------------
|
||||
>APC3.3 ICAPCDEV
|
||||
FDC_ADMIN/ole!fcb789@icapcdev.klu.infineon.com
|
||||
FDC_DEV/olefcb1@icapcdev.klu.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@icapcdev.klu.infineon.com
|
||||
FDC_EXTRACTOR/fdc4extor@icapcdev.klu.infineon.com
|
||||
FDC_TREND/trendexv3@icapcdev.klu.infineon.com
|
||||
FDC_TREND2/trend$user@icapcdev.klu.infineon.com
|
||||
FDC_CONFIG/trecovex@icapcdev.klu.infineon.com
|
||||
FDC_CONFIG2/config$user@icapcdev.klu.infineon.com
|
||||
fdc_checktool/olefcb1@icapcdev.klu.infineon.com
|
||||
FDC_ALECS/alecs$user@icapcdev.klu.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@icapcdev.klu.infineon.com
|
||||
OLE_ADMIN/OLE_ADMIN@icapcdev.klu.infineon.com
|
||||
FDC_PARALLEL/olefcb1@icapcdev.klu.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@icapcdev.klu.infineon.com
|
||||
DWH_SUPPORT/PASSWORT4US@icapcdev.klu.infineon.com
|
||||
>APC3.3 APCVIHT (ITBox EU)
|
||||
FDC_ADMIN/fdc_feb14_vih@apcviht.klu.infineon.com
|
||||
FDC_DEV/fdc!fngrwg@apcviht.klu.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcviht.klu.infineon.com
|
||||
FDC_EXTRACTOR/fdc!fngrwg@apcviht.klu.infineon.com
|
||||
FDC_V32/DCL_read@apcviht.klu.infineon.com
|
||||
FDC_TREND/fdc!fngrwg@apcviht.klu.infineon.com
|
||||
FDC_TREND2/trend$user@apcviht.klu.infineon.com
|
||||
FDC_CONFIG/fdc!fngrwg@apcviht.klu.infineon.com
|
||||
FDC_CONFIG2/config$user@apcviht.klu.infineon.com
|
||||
APCCHECK/fdc!fngrwg@apcviht.klu.infineon.com
|
||||
APCCHECK2/fdc!fngrwg@apcviht.klu.infineon.com
|
||||
OCNS/OCNS$user@apcviht.klu.infineon.com
|
||||
EM/Except1(ik)ol@apcviht.klu.infineon.com
|
||||
FDC_REPORTING/rep$user@apcviht.klu.infineon.com
|
||||
FDC_EBS/ebs$user@apcviht.klu.infineon.com
|
||||
FDC_ALECS/alecs$user@apcviht.klu.infineon.com
|
||||
FDC_CERBERUS/cerberus$user@apcviht.klu.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcviht.klu.infineon.com
|
||||
LOGEVAL/fdc!fngrwg@apcviht.klu.infineon.com
|
||||
OLE_ADMIN/sVg3YGl@apcviht.klu.infineon.com
|
||||
FDC_OPC/TBOGTBB8RFYGYNMOLNW6@apcviht.klu.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcviht.klu.infineon.com
|
||||
>APC3.3 APCRBGT (SandBox EU)
|
||||
FDC_ADMIN/FDC_ADMIN_test@apcrbgt.klu.infineon.com
|
||||
FDC_DEV/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcrbgt.klu.infineon.com
|
||||
FDC_V32/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
FDC_EXTRACTOR/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
FDC_TREND/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
FDC_TREND2/trend$user@apcrbgt.klu.infineon.com
|
||||
FDC_CONFIG/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
FDC_CONFIG2/config$user@apcrbgt.klu.infineon.com
|
||||
APCCHECK/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
APCCHECK2/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
OCNS/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
EM/Except1(ik)ol@apcrbgt.klu.infineon.com
|
||||
FDC_ALECS/alecs$user@apcrbgt.klu.infineon.com
|
||||
FDC_CERBERUS/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcrbgt.klu.infineon.com
|
||||
LOGEVAL/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
FDC_PARALLEL/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcrbgt.klu.infineon.com
|
||||
>APC3.3 APCDRST (BigTests EU)
|
||||
FDC_ADMIN/37hLpQb8XuwDt@apcdrst.klu.infineon.com
|
||||
FDC_DEV/EHIWMCZGoGHFt@apcdrst.klu.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcdrst.klu.infineon.com
|
||||
FDC_EXTRACTOR/Cci4UZdylAupt@apcdrst.klu.infineon.com
|
||||
FDC_V32/fkXdhKGJUTPLt@apcdrst.klu.infineon.com
|
||||
FDC_TREND/O4jnyceVN4i0t@apcdrst.klu.infineon.com
|
||||
FDC_TREND2/trend$usert@apcdrst.klu.infineon.com
|
||||
FDC_CONFIG/z7SIdgDGAOrOt@apcdrst.klu.infineon.com
|
||||
FDC_CONFIG2/config$usert@apcdrst.klu.infineon.com
|
||||
APCCHECK/APCCHECKt@apcdrst.klu.infineon.com
|
||||
APCCHECK2/QRBhhVTFleWLt@apcdrst.klu.infineon.com
|
||||
OCNS/64ppQ7TWtEQRt@apcdrst.klu.infineon.com
|
||||
FDC_REPORTING/DrZNjvyC5CvzSOn2t@apcdrst.klu.infineon.com
|
||||
FDC_EBS/8lXRsm14kEaWDs8tt@apcdrst.klu.infineon.com
|
||||
FDC_ALECS/alecs$usert@apcdrst.klu.infineon.com
|
||||
FDC_CERBERUS/JOlpVR10oev9t@apcdrst.klu.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcdrst.klu.infineon.com
|
||||
LOGEVAL/tdM8qz02mTn4t@apcdrst.klu.infineon.com
|
||||
OLE_ADMIN/uc71LEROXTjgPimqt@apcdrst.klu.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcdrst.klu.infineon.com
|
||||
FDC_BCC/BoBwathN2e4bKmVgt@apcdrst.klu.infineon.com
|
||||
GMS_MESSENGER/Xq4M1K2A)EpvngQf@apcdrst.klu.infineon.com
|
||||
>APC3.3 APCTR (Training)
|
||||
FDC_ADMIN/apctr_0987@apctr.klu.infineon.com
|
||||
FDC_DEV/apctr_0987@apctr.klu.infineon.com
|
||||
FDC_LOCAL/Apctr_0987_apctr@apctr.klu.infineon.com
|
||||
FDC_EXTRACTOR/apctr_0987@apctr.klu.infineon.com
|
||||
FDC_V32/apctr_0987@apctr.klu.infineon.com
|
||||
FDC_TREND/apctr_0987@apctr.klu.infineon.com
|
||||
FDC_CONFIG/apctr_0987@apctr.klu.infineon.com
|
||||
APCCHECK/apctr_0987@apctr.klu.infineon.com
|
||||
APCCHECK2/apctr_0987@apctr.klu.infineon.com
|
||||
OCNS/apctr_0987@apctr.klu.infineon.com
|
||||
FDC_REPORTING/apctr_0987@apctr.klu.infineon.com
|
||||
FDC_CERBERUS/apctr_0987@apctr.klu.infineon.com
|
||||
LOGEVAL/apctr_0987@apctr.klu.infineon.com
|
||||
OLE_ADMIN/apctr_0987@apctr.klu.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apctr.klu.infineon.com
|
||||
FDC_BE_CONVERTER/apctr_0987@apctr.klu.infineon.com
|
||||
>APC3.3 APCTEST (SandBox AP)
|
||||
FDC_ADMIN/ilovemydba123@apctest.sin.infineon.com
|
||||
FDC_DEV/ilovemydba123@apctest.sin.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apctest.sin.infineon.com
|
||||
FDC_EXTRACTOR/ilovemydba123@apctest.sin.infineon.com
|
||||
FDC_V32/ilovemydba123@apctest.sin.infineon.com
|
||||
FDC_TREND/ilovemydba123@apctest.sin.infineon.com
|
||||
FDC_TREND2/tugabaX8@apctest.sin.infineon.com
|
||||
FDC_CONFIG/ilovemydba123@apctest.sin.infineon.com
|
||||
FDC_CONFIG2/F5vAcHat@apctest.sin.infineon.com
|
||||
APCCHECK/ilovemydba123@apctest.sin.infineon.com
|
||||
APCCHECK2/ilovemydba123@apctest.sin.infineon.com
|
||||
OCNS/ilovemydba123@apctest.sin.infineon.com
|
||||
FDC_REPORTING/ilovemydba123@apctest.sin.infineon.com
|
||||
FDC_CERBERUS/ilovemydba123@apctest.sin.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apctest.sin.infineon.com
|
||||
LOGEVAL/ilovemydba123@apctest.sin.infineon.com
|
||||
OLE_ADMIN/EQyd1*HrQnP=@APCTEST.SIN.INFINEON.COM
|
||||
FDC_JOB/J0b$U5er123?@APCTEST.SIN.INFINEON.COM
|
||||
>APC3.3 APCITBOX (ITBox AP)
|
||||
FDC_ADMIN/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_DEV/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_EXTRACTOR/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_V32/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_TREND/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_TREND2/tugabaX8@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_CONFIG/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_CONFIG2/F5vAcHat@APCITBOX.SIN.INFINEON.COM
|
||||
APCCHECK/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
APCCHECK2/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
OCNS/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_REPORTING/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_CERBERUS/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@APCITBOX.SIN.INFINEON.COM
|
||||
LOGEVAL/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
OLE_ADMIN/EQyd1*HrQnP=@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_JOB/J0b$U5er123?@APCITBOX.SIN.INFINEON.COM"
|
||||
"EAF - IP","","","","tnsping host port ip
|
||||
apcmesp.mes.infineon.com apcmesp-db.ec.local 7001 10.95.131.154
|
||||
apcmess.mes.infineon.com apcmess-db.ec.local 7001 10.95.131.45
|
||||
apcmest.mes.infineon.com apcmest-db.mes.infineon.com 7001 10.95.179.45
|
||||
eafdev.mes.infineon.com eafdev-db.ec.local 9152 10.95.131.152
|
||||
eafprod.mes.infineon.com eafprod-db.ec.local 9151 10.95.131.151
|
||||
eafstag.mes.infineon.com eafstag-db.ec.local 9153 10.95.131.153
|
||||
edaprod.mes.infineon.com fimesp-db.ec.local 7002 10.95.131.155
|
||||
edastag.mes.infineon.com fimess-db.ec.local 7001 10.95.131.44
|
||||
edatest.mes.infineon.com fimest-db.mes.infineon.com 7001 10.95.179.44
|
||||
ganeafp.mes.infineon.com ganeafp-db.mes.infineon.com 9151 10.95.179.151
|
||||
ganeafs.mes.infineon.com ganeafs-db.mes.infineon.com 9152 10.95.179.152
|
||||
yodastag.mes.infineon.com fimess-db.ec.local 7001 10.95.131.44
|
||||
yodatest.mes.infineon.com fimest-db.mes.infineon.com 7001 10.95.179.44
|
||||
yodprod.mes.infineon.com fimesp-db.ec.local 7002 10.95.131.155"
|
||||
"IFX - EAF","eafdev","263U29M:ptqo2WA","","sqlplus eafdev/\"asdf\"@FIMEST.MES.INFINEON.COM
|
||||
|
||||
Old (2021-07-16) is yOb9b8y2UcbnAYQc-0BQ
|
||||
Old (2020-08-25) is cVOKXj3DD!NnQlbg45EFj
|
||||
Old (2022-04-12) is RZp4B1b3w_0mwGgO7aZc0
|
||||
Old (2022-07-12) is 64670ee9c18873413d7_82
|
||||
|
||||
C:\\Users\\phares>tnsping FIMEST.MES.INFINEON.COM
|
||||
|
||||
TNS Ping Utility for 64-bit Windows: Version 12.1.0.2.0 - Production on 07-MAY-2020 14:01:31
|
||||
|
||||
Used LDAP adapter to resolve the alias
|
||||
Attempting to contact (description=(address_list=(address=(protocol=tcp)(host=fimest-db.mes.infineon.com)(port=7001)))(connect_data=(sid=fimest)))
|
||||
OK (200 msec)
|
||||
|
||||
Summary: SR: Oracle Database - Import/Migrate/Copy Schema [Mesa]-SSO89735
|
||||
------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
Dear Leslie Phares,
|
||||
|
||||
GLOBAL_NAME USERNAME PW
|
||||
------------------------------ ------------------------- --------------------
|
||||
FIMEST.MES.INFINEON.COM EAFDEV
|
||||
|
||||
Regards,
|
||||
Tai
|
||||
|
||||
Old password
|
||||
Ix!OCk6zGx!!y2eGQ1:H
|
||||
|
||||
Old password 2021-04-19
|
||||
Yuw2PQZnKepdMMb-zYnR
|
||||
|
||||
Old password 2022-01-13
|
||||
hpJ_hgG_vSS2NPLvQTbU"
|
||||
"IFX - EAF Reporting","eafdev_admin_reporting","ft028JF2*m887*EA.P6w","","fimest.mes.infineon.com
|
||||
eafdev_admin_reporting
|
||||
"
|
||||
"APC - FDC_WAC","FDC_WAC","","","Dear Admins,
|
||||
|
||||
below the pwd list for FDC_WAC user for all sites for your reference
|
||||
|
||||
Database PWD
|
||||
apcbth.bth.infineon.com wr7m6qUWeblZe3?Sw5KI
|
||||
apcdd200.drs.infineon.com 5ows2K6py4ozYkT=0Wyp
|
||||
apcdd300.drs.infineon.com ktwEC?k-YD=B1#=QGNbq
|
||||
apcdrst.klu.infineon.com lkBbfx.teBKTXI+88LxP
|
||||
apcitbox.sin.infineon.com )IqaMV.LL#SOM4A;!L&L
|
||||
apcklm.klm.infineon.com K0P+.Fw,xwHod4d>9=H#
|
||||
apcmkz.mkz.infineon.com roWaChEP3fraci#EtlY+
|
||||
apcrbg.rbg.infineon.com q4Qa!.kL<V!&nm-*y1hA
|
||||
apcrbgbe.rbg.infineon.com YrV8Igc)C3vWiS?R8fLF
|
||||
apcrbgt.klu.infineon.com p2U13veUKS=Y-lMwn<UV
|
||||
apcsin.sin.infineon.com wAtO#hopuS?uwIHl$9!R
|
||||
apctest.sin.infineon.com fRt!=(h8z;sTh48Y#M2C
|
||||
apctr.klu.infineon.com ask Christian Stiegler
|
||||
apcvih.vih.infineon.com ,gmk(yAh3o&EE(OGneQi
|
||||
apcvih300.vih.infineon.com ErUB5),je#r:fnGt#0pd
|
||||
apcviht.klu.infineon.com gf9eAaZoWD))e?NHdr#n
|
||||
apcwar.war.infineon.com s#Z*p8ASIA1(b;ta#**=
|
||||
APCWUX.WUX.INFINEON.COM nAR3BOduBravI0?5o0Uq"
|
35
Databases-SQL.sv
Normal file
35
Databases-SQL.sv
Normal file
@ -0,0 +1,35 @@
|
||||
"Account","Login Name","Password","Web Site","Comments"
|
||||
"IFX - InfinityQS (SPC GaN) - Development","IQSDMS1_TEST","9Sy*BMpqn7RiH@7","MESSA008.na.infineon.com","InfinityQS (SPC GaN) - Development
|
||||
Server Name (Location): MESSA008.na.infineon.com
|
||||
Database Name: IRMNSPC_TEST and G4Wafers_Test
|
||||
SQL Login: IQSDMS1_TEST
|
||||
Login Password: 9Sy*BMpqn7RiH@7
|
||||
|
||||
10.95.104.20"
|
||||
"IFX - InfinityQS (SPC Si) - Development","EAFAdmin","Flymetothemoon123!","MESSA008.na.infineon.com","InfinityQS (SPC Si) - Development
|
||||
Server Name (Location): MESSA008.na.infineon.com
|
||||
Database Name: Equipment Automation
|
||||
SQL User
|
||||
Password: Flymetothemoon123!
|
||||
|
||||
10.95.104.20"
|
||||
"EC - OI Metrology Viewer","?","","messv01ec.ec.local","messv01ec.ec.local\\\\PROD1,53959;Integrated Security=True;Initial Catalog=Metrology;"
|
||||
"IFX - OI Metrology Viewer","?","","MESSAD1001\\TEST1,59583","MESSAD1001\\TEST1,59583"
|
||||
"MESSA04EC.EC.LOCAL","SPCEPIWORLD","ABC123","C:\\Program File (x86)\\InfinityQS International\\ProFicient\\Applications\\iidbm.exe","1. Log onto MESSA04EC.EC.LOCAL
|
||||
2. Open Infinity QS Database Manager
|
||||
C:\\Program File (x86)\\InfinityQS International\\ProFicient\\Applications\\iidbm.exe
|
||||
3. Log in to SPCEPIWORLD
|
||||
4. Password ABC123
|
||||
5. Double click on Employee Information
|
||||
6. Right click anywhere -> Add
|
||||
7. Users need to be added to AD Group.
|
||||
EC-MES-PRJ-SPC-SI-C-L (Change group)
|
||||
EC-MES-PRJ-SPC-SI-R-L (Read group) "
|
||||
"LSL2SQL","10.95.128.28","0okm9ijn","10.95.128.28\\PROD1,53959","\"server\": \"10.95.128.28\\\\PROD1,53959\",
|
||||
\"database\": \"\",
|
||||
\"authenticationType\": \"SqlLogin\",
|
||||
\"user\": \"srpadmin\",
|
||||
\"password\": \"\",
|
||||
\"emptyPasswordInput\": false,
|
||||
\"savePassword\": true,
|
||||
\"profileName\": \"LSL2SQL\""
|
943
Infineon-NA.sv
Normal file
943
Infineon-NA.sv
Normal file
@ -0,0 +1,943 @@
|
||||
"Account","Login Name","Password","Web Site","Comments"
|
||||
"SP1-1097-0156","","","10.95.154.12","00:10:6F:00:D7:4E"
|
||||
"MESD1UNITY4.ifxcep.net","","","10.95.154.13","6C:0B:84:E3:AD:7E"
|
||||
"mesd1biorad4.ifxcep.net","","","10.95.154.10","1C:6F:65:C3:51:DB"
|
||||
"mesd1qs2200.ifxcep.net","","","10.95.154.11","00:30:48:43:DE:97"
|
||||
"MESA.APCTrend@infineon.com","","","","Your IT-Shop Order has been resolved
|
||||
Requestor: Leslie Phares (IFAM IT FI MES)
|
||||
Recipient: Leslie Phares (IFAM IT FI MES)
|
||||
Orderable: SR: Functional Mailbox - New [Mesa]-ORD1534244
|
||||
Internal Reference No.:INC000004218687 "
|
||||
"MesYodaAdm@infineon.com","","","","Your IT-Shop Order has been resolved
|
||||
Requestor: Leslie Phares (IFAM IT FI MES)
|
||||
Recipient: Leslie Phares (IFAM IT FI MES)
|
||||
Orderable: SR: Functional Mailbox - New [Mesa]-ORD1534246
|
||||
Internal Reference No.:INC000004218726 "
|
||||
"MesEdaAdm@infineon.com","","","","Your IT-Shop Order has been resolved
|
||||
Requestor: Leslie Phares (IFAM IT FI MES)
|
||||
Recipient: Leslie Phares (IFAM IT FI MES)
|
||||
Orderable: SR: Functional Mailbox - New [Mesa]-ORD1528792
|
||||
Internal Reference No.:INC000004206774 "
|
||||
"zzz MesApcAdm@infineon.com","","","","Your IT-Shop Order has been resolved
|
||||
Requestor: Leslie Phares (IFAM IT FI MES)
|
||||
Recipient: Leslie Phares (IFAM IT FI MES)
|
||||
Orderable: SR: Functional Mailbox - New [Mesa]-ORD1528790
|
||||
Internal Reference No.:INC000004206771 "
|
||||
"MesEafAdm@infineon.com","","","","Your IT-Shop Order has been resolved
|
||||
Requestor: Fui Lian Liow (IFKM CSC FI SGI)
|
||||
Recipient: Fui Lian Liow (IFKM CSC FI SGI)
|
||||
Orderable: SR: Functional Mailbox - Modification [Kulim]-ORD1438136
|
||||
Internal Reference No.:INC000003980292 "
|
||||
"N Port","NA","moax","","Unity nPort Name Fixed IP MAC
|
||||
1 TENCOR1 10.95.192.31 00:90:E8:65:1F:2B
|
||||
2 TENCOR2 10.95.192.32 00:90:E8:6E:3C:24
|
||||
3 TENCOR3 10.95.192.33 00:90:E8:6E:3C:1E
|
||||
4 HGCV1 10.95.192.34 00:90:E8:6E:3C:26
|
||||
5 HGCV2 10.95.192.35 00:90:E8:6E:3C:35
|
||||
6 HGCV3 10.95.192.36 00:90:E8:6E:3C:23
|
||||
7 BIORAD2 10.95.192.37 00:90:E8:6E:3C:18
|
||||
8 BIORAD3 10.95.192.38 00:90:E8:6E:3C:22
|
||||
9 CDE2 10.95.192.39 00:90:E8:6E:3B:F0
|
||||
10 CDE3 10.95.192.41 00:90:E8:6E:3C:37
|
||||
11 CDE5 10.95.192.40 00:90:E8:6E:3C:30
|
||||
12 BIORAD4 10.95.154.10 1C:6F:65:C3:51:DB
|
||||
13 BIORAD5 10.95.154.11 00:30:48:43:DE:97
|
||||
14 SP101 10.95.154.12 00:10:6F:00:D7:4E
|
||||
15 Spare #1 10.95.192.47 00:90:E8:6E:3C:31
|
||||
16 Spare #2 10.95.192.48 00:90:E8:6E:3C:1D
|
||||
17 Spare #3 10.95.192.49 00:90:E8:6E:3C:19
|
||||
18 Spare #4 10.95.192.50 00:90:E8:6E:3C:1A
|
||||
19 Spare #5 10.95.192.51 00:90:E8:6E:3C:36
|
||||
|
||||
moax"
|
||||
"EC - Prod - APC","fdc_admin","M3s_apc_tr3nd_2019!","","apcmesp.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=apcmesp-db.ec.local)(port=7001)))(connect_data=(sid=apcmesp)))
|
||||
|
||||
C:\\Users\\ecphares>nslookup apcmesp-db.ec.local
|
||||
Server: messcec01.ec.local
|
||||
Address: 10.95.128.11
|
||||
|
||||
Name: apcmesp-db.ec.local
|
||||
Address: 10.95.131.154
|
||||
|
||||
fdc_admin/M3s_apc_tr3nd_2019!@apcmesp.mes.infineon.com"
|
||||
"EC - Prod - EDA","edaprod","M3sapc_t3st2019","AaT14I6SkY2Ack0PyZU4drut0uvSqnJaASdC","edaprod.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimesp-db.ec.local)(port=7002)))(connect_data=(sid=fimesp)))
|
||||
|
||||
C:\\Windows\\system32>D:\\Tmp\\phares\\EDA\\Binaries-FOR-IT-ONLY\\4.7.0\\Server_x86\\AIS.DataFramework.Server.exe -encrypt *******
|
||||
|
||||
Your encrypted password is: AaT14I6SkY2Ack0PyZU4drut0uvSqnJaASdC
|
||||
|
||||
C:\\Users\\ecphares>nslookup fimesp-db.ec.local
|
||||
Server: messcec01.ec.local
|
||||
Address: 10.95.128.11
|
||||
|
||||
Name: fimesp-db.ec.local
|
||||
Address: 10.95.131.155"
|
||||
"EC - Prod - Yoda","yodaprod","M3sapc_t3st2019","","yodprod.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimesp-db.ec.local)(port=7002)))(connect_data=(sid=fimesp)))
|
||||
|
||||
C:\\Users\\ecphares>nslookup fimesp-db.ec.local
|
||||
Server: messcec01.ec.local
|
||||
Address: 10.95.128.11
|
||||
|
||||
Name: fimesp-db.ec.local
|
||||
Address: 10.95.131.155"
|
||||
"IFX - APC","fdc_admin","M3s_apc_tr3nd_2019!","","apcmest.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=apcmest-db.mes.infineon.com)(port=7001)))(connect_data=(sid=apcmest)))
|
||||
|
||||
C:\\Users\\phares>nslookup apcmest-db.mes.infineon.com
|
||||
Server: elssc001.na.infineon.com
|
||||
Address: 10.64.176.11
|
||||
|
||||
Name: mesxv035.mes.infineon.com
|
||||
Address: 10.95.179.45
|
||||
Aliases: apcmest-db.mes.infineon.com
|
||||
|
||||
fdc_admin/M3s_apc_tr3nd_2019!@apcmest.mes.infineon.com"
|
||||
"IFX - EDA","edatest","M3sapc_t3st2019","","edatest.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimest-db.mes.infineon.com)(port=7001)))(connect_data=(sid=fimest)))
|
||||
|
||||
C:\\Users\\phares>nslookup fimest-db.mes.infineon.com
|
||||
Server: elssc001.na.infineon.com
|
||||
Address: 10.64.176.11
|
||||
|
||||
Name: mesxv034.mes.infineon.com
|
||||
Address: 10.95.179.44
|
||||
Aliases: fimest-db.mes.infineon.com"
|
||||
"IFX - Yoda","yodatest","M3sapc_t3st2019","","yodatest.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimest-db.mes.infineon.com)(port=7001)))(connect_data=(sid=fimest)))
|
||||
|
||||
C:\\Users\\phares>nslookup fimest-db.mes.infineon.com
|
||||
Server: elssc001.na.infineon.com
|
||||
Address: 10.64.176.11
|
||||
|
||||
Name: mesxv034.mes.infineon.com
|
||||
Address: 10.95.179.44
|
||||
Aliases: fimest-db.mes.infineon.com"
|
||||
"EC - Stage - APC","fdc_admin","M3s_apc_tr3nd_2019!","","apcmess.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=apcmess-db.ec.local)(port=7001)))(connect_data=(sid=apcmess)))
|
||||
|
||||
C:\\Users\\ecphares>nslookup apcmess-db.ec.local
|
||||
Server: messcec01.ec.local
|
||||
Address: 10.95.128.11
|
||||
|
||||
Name: mesxvec035.ec.local
|
||||
Address: 10.95.131.45
|
||||
Aliases: apcmess-db.ec.local
|
||||
|
||||
fdc_admin/M3s_apc_tr3nd_2019!@apcmess.mes.infineon.com"
|
||||
"EC - Stage - EDA","edastag","M3sapc_t3st2019","","edastag.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimess-db.ec.local)(port=7001)))(connect_data=(sid=fimess)))
|
||||
|
||||
C:\\Users\\ecphares>nslookup fimess-db.ec.local
|
||||
Server: messcec01.ec.local
|
||||
Address: 10.95.128.11
|
||||
|
||||
Name: mesxvec034.ec.local
|
||||
Address: 10.95.131.44
|
||||
Aliases: fimess-db.ec.local"
|
||||
"EC - Stage - Yoda","yodastag","M3sapc_t3st2019","","yodastag.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=fimess-db.ec.local)(port=7001)))(connect_data=(sid=fimess)))
|
||||
|
||||
C:\\Users\\ecphares>nslookup fimess-db.ec.local
|
||||
Server: messcec01.ec.local
|
||||
Address: 10.95.128.11
|
||||
|
||||
Name: mesxvec034.ec.local
|
||||
Address: 10.95.131.44
|
||||
Aliases: fimess-db.ec.local"
|
||||
"EC - Prod - EAF","eafprod","Mes_E@f2018!","","eafprod.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=eafprod-db.ec.local)(port=9151)))(connect_data=(sid=eafprod)))
|
||||
|
||||
C:\\Users\\ecphares>nslookup eafprod-db.ec.local
|
||||
Server: messcec01.ec.local
|
||||
Address: 10.95.128.11
|
||||
|
||||
Name: eafprod-db.ec.local
|
||||
Address: 10.95.131.151"
|
||||
"IFX - Prod - EAF - GaN","ganeafp","Mes_E@f2018!","","ganeafp.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host= ganeafp-db.mes.infineon.com)(port=9151)))(connect_data=(sid=ganeafp)))
|
||||
|
||||
C:\\Users\\phares>nslookup ganeafp-db.mes.infineon.com
|
||||
Server: elssc001.na.infineon.com
|
||||
Address: 10.64.176.11
|
||||
|
||||
Name: ganeafp-db.mes.infineon.com
|
||||
Address: 10.95.179.151"
|
||||
"EC - Stage - EAF","eafstag","Mes_E@f2018!","","eafstag.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=eafstag-db.ec.local)(port=9153)))(connect_data=(sid=eafstag)))
|
||||
|
||||
C:\\Users\\ecphares>nslookup eafstag-db.ec.local
|
||||
Server: messcec01.ec.local
|
||||
Address: 10.95.128.11
|
||||
|
||||
Name: eafstag-db.ec.local
|
||||
Address: 10.95.131.153"
|
||||
"IFX - Stage - EAF - GaN","ganeafs","Mes_E@f2018","","ganeafs.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host= ganeafs-db.mes.infineon.com)(port=9152)))(connect_data=(sid=ganeafs)))
|
||||
|
||||
C:\\Users\\phares>nslookup ganeafs-db.mes.infineon.com
|
||||
Server: elssc001.na.infineon.com
|
||||
Address: 10.64.176.11
|
||||
|
||||
Name: ganeafs-db.mes.infineon.com
|
||||
Address: 10.95.179.152"
|
||||
"IFX - EAF - Obsolete","eafdev","Mes_E@f2018!","","FIMEST.MES.INFINEON.COM
|
||||
EAFDEV
|
||||
Ix!OCk6zGx!!y2eGQ1:H
|
||||
|
||||
eafdev.mes.infineon.com = (description=(address_list=(address=(protocol=tcp)(host=eafdev-db.ec.local)(port=9152)))(connect_data=(sid=eafdev)))
|
||||
|
||||
C:\\Users\\phares>nslookup eafdev-db.ec.local
|
||||
Server: elssc001.na.infineon.com
|
||||
Address: 10.64.176.11
|
||||
|
||||
Non-authoritative answer:
|
||||
Name: eafdev-db.ec.local
|
||||
Address: 10.95.131.152"
|
||||
"APC - List","","","",">----------------------PROD------------------------
|
||||
>APC3.3 RBG FE
|
||||
FDC_ADMIN/fdc_march13_rbg@apcrbg.rbg.infineon.com
|
||||
FDC_DEV/fdc!fngrwg@apcrbg.rbg.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcrbg.rbg.infineon.com
|
||||
FDC_EXTRACTOR/extractor33_rbg@apcrbg.rbg.infineon.com
|
||||
FDC_V32/DCL_read@apcrbg.rbg.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcrbg.rbg.infineon.com
|
||||
FDC_TREND2/trend$user@apcrbg.rbg.infineon.com
|
||||
FDC_CONFIG/fdcconfig!global@apcrbg.rbg.infineon.com
|
||||
FDC_CONFIG2/config$user@apcrbg.rbg.infineon.com
|
||||
APCCHECK/APCCHECK$user@apcrbg.rbg.infineon.com
|
||||
APCCHECK2/APCCHECK2$user@apcrbg.rbg.infineon.com
|
||||
OCNS/OCNS$user@apcrbg.rbg.infineon.com
|
||||
FDC_REPORTING/rep$user@apcrbg.rbg.infineon.com
|
||||
FDC_EBS/ebs$user@apcrbg.rbg.infineon.com
|
||||
FDC_ALECS/alecs$user@apcrbg.rbg.infineon.com
|
||||
FDC_CERBERUS/cerberus_fdc@apcrbg.rbg.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcrbg.rbg.infineon.com
|
||||
LOGEVAL/LOGEVAL1qay2wsx@apcrbg.rbg.infineon.com
|
||||
OLE_ADMIN/yaq1xsw3@apcrbg.rbg.infineon.com
|
||||
FDC_OPC/)I58n711iD=*snlH3LPg@apcrbg.rbg.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcrbg.rbg.infineon.com
|
||||
dbl$dwh_rbg$glb_al_apc/dwh_rbg$glb_al_apc18@apcrbg.rbg.infineon.com
|
||||
>APC3.3 RBG BE
|
||||
FDC_ADMIN/FL6duKsZ@apcrbgbe.rbg.infineon.com
|
||||
FDC_DEV/dbhiw!amfdg@apcrbgbe.rbg.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcrbgbe.rbg.infineon.com
|
||||
FDC_EXTRACTOR/dbhiw!amfdg@apcrbgbe.rbg.infineon.com
|
||||
FDC_V32/dbhiw!amfdg@apcrbgbe.rbg.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcrbgbe.rbg.infineon.com
|
||||
FDC_TREND2/trend$user@apcrbgbe.rbg.infineon.com
|
||||
FDC_CONFIG/fdcconfig!global@apcrbgbe.rbg.infineon.com
|
||||
FDC_CONFIG2/config$user@apcrbgbe.rbg.infineon.com
|
||||
APCCHECK/dbhiw!amfdg@apcrbgbe.rbg.infineon.com
|
||||
APCCHECK2/dbhiw!amfdg@apcrbgbe.rbg.infineon.com
|
||||
OCNS/dbhiw!amfdg@apcrbgbe.rbg.infineon.com
|
||||
FDC_REPORTING/rep$user@apcrbgbe.rbg.infineon.com
|
||||
FDC_ALECS/alecs$user@apcrbgbe.rbg.infineon.com
|
||||
FDC_CERBERUS/dbhiw!amfdg@apcrbgbe.rbg.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcrbgbe.rbg.infineon.com
|
||||
LOGEVAL/dbhiw!amfdg@apcrbgbe.rbg.infineon.com
|
||||
OLE_ADMIN/cde3vfr4@apcrbgbe.rbg.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcrbgbe.rbg.infineon.com
|
||||
FDC_BE_CONVERTER/diewdwiiz@apcrbgbe.rbg.infineon.com
|
||||
>APC3.3 VIH
|
||||
FDC_ADMIN/fdc_feb14_vih@apcvih.vih.infineon.com
|
||||
FDC_DEV/fdc!fngrwg@apcvih.vih.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcvih.vih.infineon.com
|
||||
FDC_EXTRACTOR/fdc!fngrwg@apcvih.vih.infineon.com
|
||||
FDC_V32/DCL_read@apcvih.vih.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcvih.vih.infineon.com
|
||||
FDC_TREND2/trend$user@apcvih.vih.infineon.com
|
||||
FDC_CONFIG/fdcconfig!global@apcvih.vih.infineon.com
|
||||
FDC_CONFIG2/config$user@apcvih.vih.infineon.com
|
||||
APCCHECK/fdc!fngrwg@apcvih.vih.infineon.com
|
||||
APCCHECK2/fdc!fngrwg@apcvih.vih.infineon.com
|
||||
OCNS/OCNS$user@apcvih.vih.infineon.com
|
||||
FDC_REPORTING/rep$user@apcvih.vih.infineon.com
|
||||
FDC_EBS/ebs$user@apcvih.vih.infineon.com
|
||||
FDC_ALECS/alecs$user@apcvih.vih.infineon.com
|
||||
FDC_CERBERUS/cerberus$user@apcvih.vih.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcvih.vih.infineon.com
|
||||
LOGEVAL/fdc!fngrwg@apcvih.vih.infineon.com
|
||||
OLE_ADMIN/sVg3YGl@apcvih.vih.infineon.com
|
||||
FDC_OPC/TBOGTBB8RFYGYNMOLNW6@apcvih.vih.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcvih.vih.infineon.com
|
||||
>APC3.3 SFD200
|
||||
FDC_ADMIN/37hLpQb8XuwD@apcdd200.drs.infineon.com
|
||||
FDC_DEV/EHIWMCZGoGHF@apcdd200.drs.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcdd200.drs.infineon.com
|
||||
FDC_EXTRACTOR/Cci4UZdylAup@apcdd200.drs.infineon.com
|
||||
FDC_V32/fkXdhKGJUTPL@apcdd200.drs.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcdd200.drs.infineon.com
|
||||
FDC_TREND2/trend$user@apcdd200.drs.infineon.com
|
||||
FDC_CONFIG/z7SIdgDGAOrO@apcdd200.drs.infineon.com
|
||||
FDC_CONFIG2/config$user@apcdd200.drs.infineon.com
|
||||
APCCHECK/APCCHECK@apcdd200.drs.infineon.com
|
||||
APCCHECK2/QRBhhVTFleWL@apcdd200.drs.infineon.com
|
||||
OCNS/64ppQ7TWtEQR@apcdd200.drs.infineon.com
|
||||
FDC_REPORTING/DrZNjvyC5CvzSOn2@apcdd200.drs.infineon.com
|
||||
FDC_EBS/8lXRsm14kEaWDs8t@apcdd200.drs.infineon.com
|
||||
FDC_ALECS/alecs$user@apcdd200.drs.infineon.com
|
||||
FDC_CERBERUS/JOlpVR10oev9@apcdd200.drs.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcdd200.drs.infineon.com
|
||||
LOGEVAL/tdM8qz02mTn4@apcdd200.drs.infineon.com
|
||||
OLE_ADMIN/uc71LEROXTjgPimq@apcdd200.drs.infineon.com
|
||||
FDC_OPC/,_7!w,-eqdyEv+1qZX-O@apcdd200.drs.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcdd200.drs.infineon.com
|
||||
FDC_CA/W7+Y_AYx*9!3mYkyNc-u@apcdd200.drs.infineon.com
|
||||
FDC_BCC/BoBwathN2e4bKmVg@apcdd200.drs.infineon.com
|
||||
GMS_MESSENGER/ZsRxBDVyLB0qB9NO@apcdd200.drs.infineon.com
|
||||
>APC3.3 SFD300
|
||||
FDC_ADMIN/PQQE6QhEENKa@apcdd300.drs.infineon.com
|
||||
FDC_DEV/6mBscwnty39k@apcdd300.drs.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcdd300.drs.infineon.com
|
||||
FDC_EXTRACTOR/MeL4MsQZ2KHh@apcdd300.drs.infineon.com
|
||||
FDC_V32/TyuKR0kAjP3Z@apcdd300.drs.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcdd300.drs.infineon.com
|
||||
FDC_TREND2/trend$user@apcdd300.drs.infineon.com
|
||||
FDC_CONFIG/kZGrBwChZznU@apcdd300.drs.infineon.com
|
||||
FDC_CONFIG2/config$user@apcdd300.drs.infineon.com
|
||||
APCCHECK/APCCHECK@apcdd300.drs.infineon.com
|
||||
APCCHECK2/VvUFTiisOEqB@apcdd300.drs.infineon.com
|
||||
OCNS/siwpNrWrtTsl@apcdd300.drs.infineon.com
|
||||
FDC_REPORTING/uV8zSWRRe3Oz6pLl@apcdd300.drs.infineon.com
|
||||
FDC_EBS/f4WW9m3HTTwfxHlq@apcdd300.drs.infineon.com
|
||||
FDC_ALECS/alecs$user@apcdd300.drs.infineon.com
|
||||
FDC_CERBERUS/FtBNWFbLB0pP@apcdd300.drs.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcdd300.drs.infineon.com
|
||||
LOGEVAL/otZgN9G9s9Bs@apcdd300.drs.infineon.com
|
||||
OLE_ADMIN/f58aKtqVoiIanf6P@apcdd300.drs.infineon.com
|
||||
FDC_OPC/#xG_pT+0#N03GYFBL34K@apcdd300.drs.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcdd300.drs.infineon.com
|
||||
FDC_BCC/jg9HmphljCDOZT7B@apcdd300.drs.infineon.com
|
||||
GMS_MESSENGER/Fgp57BOQ8PVeAraB@apcdd300.drs.infineon.com
|
||||
>APC3.3 WAR
|
||||
FDC_ADMIN/FL6duKsZ@apcwar.war.infineon.com
|
||||
FDC_DEV/dbhiw!amfdg@apcwar.war.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcwar.war.infineon.com
|
||||
FDC_EXTRACTOR/dbhiw!amfdg@apcwar.war.infineon.com
|
||||
FDC_V32/dbhiw!amfdg@apcwar.war.infineon.com
|
||||
FDC_TREND/fdctrend!global1@apcwar.war.infineon.com
|
||||
FDC_TREND2/trend$user@apcwar.war.infineon.com
|
||||
FDC_CONFIG/Fdcconfig!global1@apcwar.war.infineon.com
|
||||
FDC_CONFIG2/config$user@apcwar.war.infineon.com
|
||||
APCCHECK/dbhiw!amfdg@apcwar.war.infineon.com
|
||||
APCCHECK2/dbhiw!amfdg@apcwar.war.infineon.com
|
||||
OCNS/dbhiw!amfdg@apcwar.war.infineon.com
|
||||
FDC_REPORTING/rep$user@apcwar.war.infineon.com
|
||||
FDC_ALECS/alecs$user@apcwar.war.infineon.com
|
||||
FDC_CERBERUS/dbhiw!amfdg@apcwar.war.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcwar.war.infineon.com
|
||||
LOGEVAL/dbhiw!amfdg@apcwar.war.infineon.com
|
||||
OLE_ADMIN/cde3vfr4@apcwar.war.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcwar.war.infineon.com
|
||||
FDC_BE_CONVERTER/diewdwiiz@apcwar.war.infineon.com
|
||||
>APC3.3 KLM (Kulim)
|
||||
FDC_ADMIN/fdc01klm@apcklm.klm.infineon.com
|
||||
FDC_DEV/fdcdevklm@apcklm.klm.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcklm.klm.infineon.com
|
||||
FDC_EXTRACTOR/fdc01klm@apcklm.klm.infineon.com
|
||||
FDC_V32/fdc32klm@apcklm.klm.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcklm.klm.infineon.com
|
||||
FDC_TREND2/trend01klm@apcklm.klm.infineon.com
|
||||
FDC_CONFIG/fdc01klm@apcklm.klm.infineon.com
|
||||
FDC_CONFIG2/fdc01klm@apcklm.klm.infineon.com
|
||||
APCCHECK/fdc01klm@apcklm.klm.infineon.com
|
||||
APCCHECK2/fdc01klm@apcklm.klm.infineon.com
|
||||
OCNS/OCNS01klm@apcklm.klm.infineon.com
|
||||
FDC_REPORTING/rep$user@apcklm.klm.infineon.com
|
||||
FDC_EBS/ebs01klm@apcklm.klm.infineon.com
|
||||
FDC_CERBERUS/cerberus01klm@apcklm.klm.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcklm.klm.infineon.com
|
||||
LOGEVAL/fdc01klm@apcklm.klm.infineon.com
|
||||
OLE_ADMIN/ole1!klmXD@apcklm.klm.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcklm.klm.infineon.com
|
||||
>APC3.3 MKZ (Malacca)
|
||||
FDC_ADMIN/apcmaladmin@apcmkz.mkz.infineon.com
|
||||
FDC_DEV/adm$!fdc@apcmkz.mkz.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcmkz.mkz.infineon.com
|
||||
FDC_EXTRACTOR/adm$!fdc@apcmkz.mkz.infineon.com
|
||||
FDC_V32/adm$!fdc@apcmkz.mkz.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcmkz.mkz.infineon.com
|
||||
FDC_TREND2/t2daC2eyaPuBEsp@apcmkz.mkz.infineon.com
|
||||
FDC_CONFIG/fdcconfig!global@apcmkz.mkz.infineon.com
|
||||
FDC_CONFIG2/frAtebracevu3ub@apcmkz.mkz.infineon.com
|
||||
APCCHECK/apcc100@apcmkz.mkz.infineon.com
|
||||
APCCHECK2/apcc100@apcmkz.mkz.infineon.com
|
||||
OCNS/adm$!fdc@apcmkz.mkz.infineon.com
|
||||
FDC_REPORTING/rep$user@apcmkz.mkz.infineon.com
|
||||
FDC_CERBERUS/adm$!fdc@apcmkz.mkz.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcmkz.mkz.infineon.com
|
||||
LOGEVAL/adm$!fdc@apcmkz.mkz.infineon.com
|
||||
OLE_ADMIN/yN{D{!3=X%v-EAi9f,.{@apcmkz.mkz.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcmkz.mkz.infineon.com
|
||||
FDC_BE_CONVERTER/yN{D{!3=X%v-EAi9f,.{@apcmkz.mkz.infineon.com
|
||||
>APC3.3 SIN (Singapur)
|
||||
FDC_ADMIN/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
FDC_DEV/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcsin.sin.infineon.com
|
||||
FDC_EXTRACTOR/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
FDC_V32/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcsin.sin.infineon.com
|
||||
FDC_TREND2/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
FDC_CONFIG/fdcconfig!global@apcsin.sin.infineon.com
|
||||
FDC_CONFIG2/config$user@apcsin.sin.infineon.com
|
||||
APCCHECK/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
APCCHECK2/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
OCNS/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
FDC_REPORTING/rep$user@apcsin.sin.infineon.com
|
||||
FDC_CERBERUS/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcsin.sin.infineon.com
|
||||
LOGEVAL/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
FDC_PARALLEL/dbhiw!amfdg@apcsin.sin.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcsin.sin.infineon.com
|
||||
>APC3.3 BAT (Batam)
|
||||
FDC_ADMIN/apcbatadmin@apcbth.bth.infineon.com
|
||||
FDC_DEV/adm$!fdc@apcbth.bth.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcbth.bth.infineon.com
|
||||
FDC_EXTRACTOR/adm$!fdc@apcbth.bth.infineon.com
|
||||
FDC_V32/adm$!fdc@apcbth.bth.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcbth.bth.infineon.com
|
||||
FDC_TREND2/Yacreph4@apcbth.bth.infineon.com
|
||||
FDC_CONFIG/fdcconfig!global@apcbth.bth.infineon.com
|
||||
FDC_CONFIG2/p5crafRa@apcbth.bth.infineon.com
|
||||
APCCHECK/apcc100@apcbth.bth.infineon.com
|
||||
APCCHECK2/HdoUOW*fHf8jNNaO7J#Q@apcbth.bth.infineon.com
|
||||
OCNS/adm$!fdc@apcbth.bth.infineon.com
|
||||
FDC_REPORTING/rep$user@apcbth.bth.infineon.com
|
||||
FDC_CERBERUS/YC{E6j35cwN[wztHGqh5@apcbth.bth.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcbth.bth.infineon.com
|
||||
LOGEVAL/adm$!fdc@apcbth.bth.infineon.com
|
||||
FDC_PARALLEL/8uchUwRa@apcbth.bth.infineon.com
|
||||
OLE_ADMIN/adm$!fdc@apcbth.bth.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcbth.bth.infineon.com
|
||||
>APC3.3 WUX (Wuxi)
|
||||
FDC_ADMIN/apcwuxadmin@apcwux.wux.infineon.com
|
||||
FDC_DEV/adm$!fdc@apcwux.wux.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcwux.wux.infineon.com
|
||||
FDC_EXTRACTOR/adm$!fdc@apcwux.wux.infineon.com
|
||||
FDC_V32/adm$!fdc@apcwux.wux.infineon.com
|
||||
FDC_TREND/fdctrend!global@apcwux.wux.infineon.com
|
||||
FDC_TREND2/frEces5U@apcwux.wux.infineon.com
|
||||
FDC_CONFIG/fdcconfig!global@apcwux.wux.infineon.com
|
||||
FDC_CONFIG2/frEces5X@apcwux.wux.infineon.com
|
||||
APCCHECK/apcc100@apcwux.wux.infineon.com
|
||||
APCCHECK2/apcc100@apcwux.wux.infineon.com
|
||||
OCNS/apcwuxOCNS@apcwux.wux.infineon.com
|
||||
FDC_REPORTING/rep$user@apcwux.wux.infineon.com
|
||||
FDC_CERBERUS/fdcP@ssw0rd@apcwux.wux.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcwux.wux.infineon.com
|
||||
LOGEVAL/adm$!fdc@apcwux.wux.infineon.com
|
||||
FDC_PARALLEL/8uchUwRa@apcwux.wux.infineon.com
|
||||
OLE_ADMIN/8+h!!rRTl]grl9]!p7?L@apcwux.wux.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcwux.wux.infineon.com
|
||||
FDC_BE_CONVERTER/zo-zJ#gy!M{3DWQSnv]b@apcwux.wux.infineon.com
|
||||
>----------------------TEST------------------------
|
||||
>APC3.3 ICAPCDEV
|
||||
FDC_ADMIN/ole!fcb789@icapcdev.klu.infineon.com
|
||||
FDC_DEV/olefcb1@icapcdev.klu.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@icapcdev.klu.infineon.com
|
||||
FDC_EXTRACTOR/fdc4extor@icapcdev.klu.infineon.com
|
||||
FDC_TREND/trendexv3@icapcdev.klu.infineon.com
|
||||
FDC_TREND2/trend$user@icapcdev.klu.infineon.com
|
||||
FDC_CONFIG/trecovex@icapcdev.klu.infineon.com
|
||||
FDC_CONFIG2/config$user@icapcdev.klu.infineon.com
|
||||
fdc_checktool/olefcb1@icapcdev.klu.infineon.com
|
||||
FDC_ALECS/alecs$user@icapcdev.klu.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@icapcdev.klu.infineon.com
|
||||
OLE_ADMIN/OLE_ADMIN@icapcdev.klu.infineon.com
|
||||
FDC_PARALLEL/olefcb1@icapcdev.klu.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@icapcdev.klu.infineon.com
|
||||
DWH_SUPPORT/PASSWORT4US@icapcdev.klu.infineon.com
|
||||
>APC3.3 APCVIHT (ITBox EU)
|
||||
FDC_ADMIN/fdc_feb14_vih@apcviht.klu.infineon.com
|
||||
FDC_DEV/fdc!fngrwg@apcviht.klu.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcviht.klu.infineon.com
|
||||
FDC_EXTRACTOR/fdc!fngrwg@apcviht.klu.infineon.com
|
||||
FDC_V32/DCL_read@apcviht.klu.infineon.com
|
||||
FDC_TREND/fdc!fngrwg@apcviht.klu.infineon.com
|
||||
FDC_TREND2/trend$user@apcviht.klu.infineon.com
|
||||
FDC_CONFIG/fdc!fngrwg@apcviht.klu.infineon.com
|
||||
FDC_CONFIG2/config$user@apcviht.klu.infineon.com
|
||||
APCCHECK/fdc!fngrwg@apcviht.klu.infineon.com
|
||||
APCCHECK2/fdc!fngrwg@apcviht.klu.infineon.com
|
||||
OCNS/OCNS$user@apcviht.klu.infineon.com
|
||||
EM/Except1(ik)ol@apcviht.klu.infineon.com
|
||||
FDC_REPORTING/rep$user@apcviht.klu.infineon.com
|
||||
FDC_EBS/ebs$user@apcviht.klu.infineon.com
|
||||
FDC_ALECS/alecs$user@apcviht.klu.infineon.com
|
||||
FDC_CERBERUS/cerberus$user@apcviht.klu.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcviht.klu.infineon.com
|
||||
LOGEVAL/fdc!fngrwg@apcviht.klu.infineon.com
|
||||
OLE_ADMIN/sVg3YGl@apcviht.klu.infineon.com
|
||||
FDC_OPC/TBOGTBB8RFYGYNMOLNW6@apcviht.klu.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcviht.klu.infineon.com
|
||||
>APC3.3 APCRBGT (SandBox EU)
|
||||
FDC_ADMIN/FDC_ADMIN_test@apcrbgt.klu.infineon.com
|
||||
FDC_DEV/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcrbgt.klu.infineon.com
|
||||
FDC_V32/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
FDC_EXTRACTOR/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
FDC_TREND/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
FDC_TREND2/trend$user@apcrbgt.klu.infineon.com
|
||||
FDC_CONFIG/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
FDC_CONFIG2/config$user@apcrbgt.klu.infineon.com
|
||||
APCCHECK/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
APCCHECK2/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
OCNS/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
EM/Except1(ik)ol@apcrbgt.klu.infineon.com
|
||||
FDC_ALECS/alecs$user@apcrbgt.klu.infineon.com
|
||||
FDC_CERBERUS/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcrbgt.klu.infineon.com
|
||||
LOGEVAL/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
FDC_PARALLEL/fdc!fngrwg@apcrbgt.klu.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcrbgt.klu.infineon.com
|
||||
>APC3.3 APCDRST (BigTests EU)
|
||||
FDC_ADMIN/37hLpQb8XuwDt@apcdrst.klu.infineon.com
|
||||
FDC_DEV/EHIWMCZGoGHFt@apcdrst.klu.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apcdrst.klu.infineon.com
|
||||
FDC_EXTRACTOR/Cci4UZdylAupt@apcdrst.klu.infineon.com
|
||||
FDC_V32/fkXdhKGJUTPLt@apcdrst.klu.infineon.com
|
||||
FDC_TREND/O4jnyceVN4i0t@apcdrst.klu.infineon.com
|
||||
FDC_TREND2/trend$usert@apcdrst.klu.infineon.com
|
||||
FDC_CONFIG/z7SIdgDGAOrOt@apcdrst.klu.infineon.com
|
||||
FDC_CONFIG2/config$usert@apcdrst.klu.infineon.com
|
||||
APCCHECK/APCCHECKt@apcdrst.klu.infineon.com
|
||||
APCCHECK2/QRBhhVTFleWLt@apcdrst.klu.infineon.com
|
||||
OCNS/64ppQ7TWtEQRt@apcdrst.klu.infineon.com
|
||||
FDC_REPORTING/DrZNjvyC5CvzSOn2t@apcdrst.klu.infineon.com
|
||||
FDC_EBS/8lXRsm14kEaWDs8tt@apcdrst.klu.infineon.com
|
||||
FDC_ALECS/alecs$usert@apcdrst.klu.infineon.com
|
||||
FDC_CERBERUS/JOlpVR10oev9t@apcdrst.klu.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apcdrst.klu.infineon.com
|
||||
LOGEVAL/tdM8qz02mTn4t@apcdrst.klu.infineon.com
|
||||
OLE_ADMIN/uc71LEROXTjgPimqt@apcdrst.klu.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apcdrst.klu.infineon.com
|
||||
FDC_BCC/BoBwathN2e4bKmVgt@apcdrst.klu.infineon.com
|
||||
GMS_MESSENGER/Xq4M1K2A)EpvngQf@apcdrst.klu.infineon.com
|
||||
>APC3.3 APCTR (Training)
|
||||
FDC_ADMIN/apctr_0987@apctr.klu.infineon.com
|
||||
FDC_DEV/apctr_0987@apctr.klu.infineon.com
|
||||
FDC_LOCAL/Apctr_0987_apctr@apctr.klu.infineon.com
|
||||
FDC_EXTRACTOR/apctr_0987@apctr.klu.infineon.com
|
||||
FDC_V32/apctr_0987@apctr.klu.infineon.com
|
||||
FDC_TREND/apctr_0987@apctr.klu.infineon.com
|
||||
FDC_CONFIG/apctr_0987@apctr.klu.infineon.com
|
||||
APCCHECK/apctr_0987@apctr.klu.infineon.com
|
||||
APCCHECK2/apctr_0987@apctr.klu.infineon.com
|
||||
OCNS/apctr_0987@apctr.klu.infineon.com
|
||||
FDC_REPORTING/apctr_0987@apctr.klu.infineon.com
|
||||
FDC_CERBERUS/apctr_0987@apctr.klu.infineon.com
|
||||
LOGEVAL/apctr_0987@apctr.klu.infineon.com
|
||||
OLE_ADMIN/apctr_0987@apctr.klu.infineon.com
|
||||
FDC_JOB/J0b$U5er123?@apctr.klu.infineon.com
|
||||
FDC_BE_CONVERTER/apctr_0987@apctr.klu.infineon.com
|
||||
>APC3.3 APCTEST (SandBox AP)
|
||||
FDC_ADMIN/ilovemydba123@apctest.sin.infineon.com
|
||||
FDC_DEV/ilovemydba123@apctest.sin.infineon.com
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@apctest.sin.infineon.com
|
||||
FDC_EXTRACTOR/ilovemydba123@apctest.sin.infineon.com
|
||||
FDC_V32/ilovemydba123@apctest.sin.infineon.com
|
||||
FDC_TREND/ilovemydba123@apctest.sin.infineon.com
|
||||
FDC_TREND2/tugabaX8@apctest.sin.infineon.com
|
||||
FDC_CONFIG/ilovemydba123@apctest.sin.infineon.com
|
||||
FDC_CONFIG2/F5vAcHat@apctest.sin.infineon.com
|
||||
APCCHECK/ilovemydba123@apctest.sin.infineon.com
|
||||
APCCHECK2/ilovemydba123@apctest.sin.infineon.com
|
||||
OCNS/ilovemydba123@apctest.sin.infineon.com
|
||||
FDC_REPORTING/ilovemydba123@apctest.sin.infineon.com
|
||||
FDC_CERBERUS/ilovemydba123@apctest.sin.infineon.com
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@apctest.sin.infineon.com
|
||||
LOGEVAL/ilovemydba123@apctest.sin.infineon.com
|
||||
OLE_ADMIN/EQyd1*HrQnP=@APCTEST.SIN.INFINEON.COM
|
||||
FDC_JOB/J0b$U5er123?@APCTEST.SIN.INFINEON.COM
|
||||
>APC3.3 APCITBOX (ITBox AP)
|
||||
FDC_ADMIN/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_DEV/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_LOCAL/PFb3x}Exvjh8QZK{CI-Y@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_EXTRACTOR/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_V32/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_TREND/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_TREND2/tugabaX8@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_CONFIG/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_CONFIG2/F5vAcHat@APCITBOX.SIN.INFINEON.COM
|
||||
APCCHECK/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
APCCHECK2/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
OCNS/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_REPORTING/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_CERBERUS/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_ELISE/K:J&Gmx#30Y2MY%Pi2TJ$!ouC@APCITBOX.SIN.INFINEON.COM
|
||||
LOGEVAL/ilovemydba123@APCITBOX.SIN.INFINEON.COM
|
||||
OLE_ADMIN/EQyd1*HrQnP=@APCITBOX.SIN.INFINEON.COM
|
||||
FDC_JOB/J0b$U5er123?@APCITBOX.SIN.INFINEON.COM"
|
||||
"EAF - IP","","","","tnsping host port ip
|
||||
apcmesp.mes.infineon.com apcmesp-db.ec.local 7001 10.95.131.154
|
||||
apcmess.mes.infineon.com apcmess-db.ec.local 7001 10.95.131.45
|
||||
apcmest.mes.infineon.com apcmest-db.mes.infineon.com 7001 10.95.179.45
|
||||
eafdev.mes.infineon.com eafdev-db.ec.local 9152 10.95.131.152
|
||||
eafprod.mes.infineon.com eafprod-db.ec.local 9151 10.95.131.151
|
||||
eafstag.mes.infineon.com eafstag-db.ec.local 9153 10.95.131.153
|
||||
edaprod.mes.infineon.com fimesp-db.ec.local 7002 10.95.131.155
|
||||
edastag.mes.infineon.com fimess-db.ec.local 7001 10.95.131.44
|
||||
edatest.mes.infineon.com fimest-db.mes.infineon.com 7001 10.95.179.44
|
||||
ganeafp.mes.infineon.com ganeafp-db.mes.infineon.com 9151 10.95.179.151
|
||||
ganeafs.mes.infineon.com ganeafs-db.mes.infineon.com 9152 10.95.179.152
|
||||
yodastag.mes.infineon.com fimess-db.ec.local 7001 10.95.131.44
|
||||
yodatest.mes.infineon.com fimest-db.mes.infineon.com 7001 10.95.179.44
|
||||
yodprod.mes.infineon.com fimesp-db.ec.local 7002 10.95.131.155"
|
||||
"IFX - EAF","eafdev","263U29M:ptqo2WA","","sqlplus eafdev/\"asdf\"@FIMEST.MES.INFINEON.COM
|
||||
|
||||
Old (2021-07-16) is yOb9b8y2UcbnAYQc-0BQ
|
||||
Old (2020-08-25) is cVOKXj3DD!NnQlbg45EFj
|
||||
Old (2022-04-12) is RZp4B1b3w_0mwGgO7aZc0
|
||||
Old (2022-07-12) is 64670ee9c18873413d7_82
|
||||
|
||||
C:\\Users\\phares>tnsping FIMEST.MES.INFINEON.COM
|
||||
|
||||
TNS Ping Utility for 64-bit Windows: Version 12.1.0.2.0 - Production on 07-MAY-2020 14:01:31
|
||||
|
||||
Used LDAP adapter to resolve the alias
|
||||
Attempting to contact (description=(address_list=(address=(protocol=tcp)(host=fimest-db.mes.infineon.com)(port=7001)))(connect_data=(sid=fimest)))
|
||||
OK (200 msec)
|
||||
|
||||
Summary: SR: Oracle Database - Import/Migrate/Copy Schema [Mesa]-SSO89735
|
||||
------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
Dear Leslie Phares,
|
||||
|
||||
GLOBAL_NAME USERNAME PW
|
||||
------------------------------ ------------------------- --------------------
|
||||
FIMEST.MES.INFINEON.COM EAFDEV
|
||||
|
||||
Regards,
|
||||
Tai
|
||||
|
||||
Old password
|
||||
Ix!OCk6zGx!!y2eGQ1:H
|
||||
|
||||
Old password 2021-04-19
|
||||
Yuw2PQZnKepdMMb-zYnR
|
||||
|
||||
Old password 2022-01-13
|
||||
hpJ_hgG_vSS2NPLvQTbU"
|
||||
"IFX - EAF Reporting","eafdev_admin_reporting","ft028JF2*m887*EA.P6w","","fimest.mes.infineon.com
|
||||
eafdev_admin_reporting
|
||||
"
|
||||
"APC - FDC_WAC","FDC_WAC","","","Dear Admins,
|
||||
|
||||
below the pwd list for FDC_WAC user for all sites for your reference
|
||||
|
||||
Database PWD
|
||||
apcbth.bth.infineon.com wr7m6qUWeblZe3?Sw5KI
|
||||
apcdd200.drs.infineon.com 5ows2K6py4ozYkT=0Wyp
|
||||
apcdd300.drs.infineon.com ktwEC?k-YD=B1#=QGNbq
|
||||
apcdrst.klu.infineon.com lkBbfx.teBKTXI+88LxP
|
||||
apcitbox.sin.infineon.com )IqaMV.LL#SOM4A;!L&L
|
||||
apcklm.klm.infineon.com K0P+.Fw,xwHod4d>9=H#
|
||||
apcmkz.mkz.infineon.com roWaChEP3fraci#EtlY+
|
||||
apcrbg.rbg.infineon.com q4Qa!.kL<V!&nm-*y1hA
|
||||
apcrbgbe.rbg.infineon.com YrV8Igc)C3vWiS?R8fLF
|
||||
apcrbgt.klu.infineon.com p2U13veUKS=Y-lMwn<UV
|
||||
apcsin.sin.infineon.com wAtO#hopuS?uwIHl$9!R
|
||||
apctest.sin.infineon.com fRt!=(h8z;sTh48Y#M2C
|
||||
apctr.klu.infineon.com ask Christian Stiegler
|
||||
apcvih.vih.infineon.com ,gmk(yAh3o&EE(OGneQi
|
||||
apcvih300.vih.infineon.com ErUB5),je#r:fnGt#0pd
|
||||
apcviht.klu.infineon.com gf9eAaZoWD))e?NHdr#n
|
||||
apcwar.war.infineon.com s#Z*p8ASIA1(b;ta#**=
|
||||
APCWUX.WUX.INFINEON.COM nAR3BOduBravI0?5o0Uq"
|
||||
"apcmesp","apc_admin","Mes_o3m_apc_adm1n_2020_","https://omsec.ec.local:7802/em",""
|
||||
"Github Work Laptop","","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","","$MyPat = 'asdf'
|
||||
$B64Pat = [Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes(\"`:$MyPat\"))
|
||||
echo $B64Pat
|
||||
|
||||
[http]
|
||||
extraHeader = \"Authorization: Basic asdf\""
|
||||
"TFS - Azure DevOps Services","UUID 0780BDD9ED3C084A910C1E1AFB72D191","dper57w7j2akkpaazcbjfxxamsjtpwd4v4smvqwlndynkqvzefca","","Not in use"
|
||||
"TFS - Azure DevOps Server - Dev 30 Days","UUID E34B8AA754EDD64C814234D59B14711F","4z2jwu5tluqgmsprmhyaqcc64q2yhwjfhlce7wdofrmuzw5o5weq","https://tfs.intra.infineon.com/tfs/manufacturingit/_usersSettings/tokens","$MyPat = 'asdf'
|
||||
$B64Pat = [Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes(\"`:$MyPat\"))
|
||||
echo $B64Pat
|
||||
|
||||
[http]
|
||||
extraHeader = \"Authorization: Basic asdf\""
|
||||
"IFX - PROD","messdv002","","\\\\messdv002.na.infineon.com","10.95.104.253
|
||||
|
||||
Candela (messdv002.na.infineon.com)
|
||||
Characterization (messdv002.na.infineon.com)
|
||||
Customer_Service (messdv002.na.infineon.com)
|
||||
Development (messdv002.na.infineon.com)
|
||||
Employees (messdv002.na.infineon.com)
|
||||
Engineering (messdv002.na.infineon.com)
|
||||
EPIGAN_Backups (messdv002.na.infineon.com)
|
||||
EpiReactorRecipes (messdv002.na.infineon.com)
|
||||
Epi_Reactor_Recipes (messdv002.na.infineon.com)
|
||||
EYICK (messdv002.na.infineon.com)
|
||||
Facilities (messdv002.na.infineon.com)
|
||||
FI (messdv002.na.infineon.com)
|
||||
Finance (messdv002.na.infineon.com)
|
||||
GaN_EAFLog (messdv002.na.infineon.com)
|
||||
GaN_EAFRepository (messdv002.na.infineon.com)
|
||||
GaN_NEC (messdv002.na.infineon.com)
|
||||
GRP-IT (messdv002.na.infineon.com)
|
||||
HR (messdv002.na.infineon.com)
|
||||
IFXEPI_Operations (messdv002.na.infineon.com)
|
||||
IT (messdv002.na.infineon.com)
|
||||
IT_OS_DC (messdv002.na.infineon.com)
|
||||
Maintenance (messdv002.na.infineon.com)
|
||||
Materials (messdv002.na.infineon.com)
|
||||
MOCVD (messdv002.na.infineon.com)
|
||||
nameslnvr01 (messdv002.na.infineon.com)
|
||||
nameslnvr01b (messdv002.na.infineon.com)
|
||||
nameslnvr02 (messdv002.na.infineon.com)
|
||||
nameslnvr02b (messdv002.na.infineon.com)
|
||||
Operations (messdv002.na.infineon.com)
|
||||
QA (messdv002.na.infineon.com)
|
||||
Sales (messdv002.na.infineon.com)
|
||||
sqlbk01 (messdv002.na.infineon.com)
|
||||
Veeam_MES (messdv002.na.infineon.com)
|
||||
WFOperations (messdv002.na.infineon.com)
|
||||
WTSProf (messdv002.na.infineon.com)
|
||||
WTSProf2008 (messdv002.na.infineon.com)
|
||||
zApps (messdv002.na.infineon.com)"
|
||||
"IFX - PROD","messdv003","","\\\\messdv003.infineon.com","10.95.104.250
|
||||
|
||||
AllIFXUsers (messdv003.infineon.com)
|
||||
EDA (messdv003.infineon.com)
|
||||
GaN_Equipment (messdv003.infineon.com)
|
||||
IFAM_BC_IS (messdv003.infineon.com)
|
||||
MITCONFIG (messdv003.infineon.com)
|
||||
Supervisor (messdv003.infineon.com)
|
||||
SupervisorLead (messdv003.infineon.com)
|
||||
UserData (messdv003.infineon.com)
|
||||
yodaconfig (messdv003.infineon.com)"
|
||||
"EC - PROD","messv02ecc1","","\\\\messv02ecc1.ec.local","10.95.128.48
|
||||
|
||||
EC_APC (messv02ecc1.ec.local)
|
||||
EC_Candela_GaN (messv02ecc1.ec.local)
|
||||
EC_Characterization_GaN (messv02ecc1.ec.local)
|
||||
EC_Characterization_Si (messv02ecc1.ec.local)
|
||||
EC_Customer_Service (messv02ecc1.ec.local)
|
||||
EC_EAFLog (messv02ecc1.ec.local)
|
||||
EC_EAFRepository (messv02ecc1.ec.local)
|
||||
EC_EDA (messv02ecc1.ec.local)
|
||||
EC_Engineering (messv02ecc1.ec.local)
|
||||
EC_EpiReactorRecipes (messv02ecc1.ec.local)
|
||||
EC_Equip_Eng (messv02ecc1.ec.local)
|
||||
EC_Maintenance (messv02ecc1.ec.local)
|
||||
EC_MAMD_Files (messv02ecc1.ec.local)
|
||||
EC_MAMD_Ops (messv02ecc1.ec.local)
|
||||
EC_Materials (messv02ecc1.ec.local)
|
||||
EC_Metrology_GaN (messv02ecc1.ec.local)
|
||||
EC_Metrology_Si (messv02ecc1.ec.local)
|
||||
EC_MOCVD (messv02ecc1.ec.local)
|
||||
EC_Production (messv02ecc1.ec.local)
|
||||
EC_Sales (messv02ecc1.ec.local)
|
||||
EC_SPC_GaN (messv02ecc1.ec.local)
|
||||
EC_SPC_Si (messv02ecc1.ec.local)
|
||||
EC_TempHumidity_Controls (messv02ecc1.ec.local)
|
||||
EC_Test (messv02ecc1.ec.local)
|
||||
EC_TESTTTT (messv02ecc1.ec.local)
|
||||
EC_WFOperations (messv02ecc1.ec.local)
|
||||
EC_YODAConfig (messv02ecc1.ec.local)"
|
||||
"IFX - z DEV","mestsa003","","\\\\mestsa003.infineon.com","10.95.176.46
|
||||
|
||||
Characterization (mestsa003.infineon.com)
|
||||
DeploymentStorage (mestsa003.infineon.com)
|
||||
IMPORT (mestsa003.infineon.com)
|
||||
Logs (mestsa003.infineon.com)
|
||||
Logs2 (mestsa003.infineon.com)
|
||||
ProgramData (mestsa003.infineon.com)"
|
||||
"EC - PROD","messa06ec","","\\\\messa06ec.ec.local","10.95.128.33
|
||||
|
||||
D (messa06ec.ec.local)
|
||||
Public (messa06ec.ec.local)"
|
||||
"EC - PROD","messa01ec","","\\\\messa01ec.ec.local","10.95.128.14
|
||||
|
||||
APPS (messa01ec.ec.local)"
|
||||
"PASSWORD_ENC","","https://intranet.infineon.com/","",""
|
||||
"IFX - InfinityQS (SPC GaN) - Development","IQSDMS1_TEST","9Sy*BMpqn7RiH@7","MESSA008.na.infineon.com","InfinityQS (SPC GaN) - Development
|
||||
Server Name (Location): MESSA008.na.infineon.com
|
||||
Database Name: IRMNSPC_TEST and G4Wafers_Test
|
||||
SQL Login: IQSDMS1_TEST
|
||||
Login Password: 9Sy*BMpqn7RiH@7
|
||||
|
||||
10.95.104.20"
|
||||
"IFX - InfinityQS (SPC Si) - Development","EAFAdmin","Flymetothemoon123!","MESSA008.na.infineon.com","InfinityQS (SPC Si) - Development
|
||||
Server Name (Location): MESSA008.na.infineon.com
|
||||
Database Name: Equipment Automation
|
||||
SQL User ID: EAFAdmin
|
||||
Password: Flymetothemoon123!
|
||||
|
||||
10.95.104.20"
|
||||
"EC - OI Metrology Viewer","?","","messv01ec.ec.local","messv01ec.ec.local\\\\PROD1,53959;Integrated Security=True;Initial Catalog=Metrology;"
|
||||
"IFX - OI Metrology Viewer","?","","MESSAD1001\\TEST1,59583","MESSAD1001\\TEST1,59583"
|
||||
"MESSA04EC.EC.LOCAL","SPCEPIWORLD","ABC123","C:\\Program File (x86)\\InfinityQS International\\ProFicient\\Applications\\iidbm.exe","1. Log onto MESSA04EC.EC.LOCAL
|
||||
2. Open Infinity QS Database Manager
|
||||
C:\\Program File (x86)\\InfinityQS International\\ProFicient\\Applications\\iidbm.exe
|
||||
3. Log in to SPCEPIWORLD
|
||||
4. Password ABC123
|
||||
5. Double click on Employee Information
|
||||
6. Right click anywhere -> Add
|
||||
7. Users need to be added to AD Group.
|
||||
EC-MES-PRJ-SPC-SI-C-L (Change group)
|
||||
EC-MES-PRJ-SPC-SI-R-L (Read group) "
|
||||
"LSL2SQL","10.95.128.28","0okm9ijn","10.95.128.28\\PROD1,53959","\"server\": \"10.95.128.28\\\\PROD1,53959\",
|
||||
\"database\": \"\",
|
||||
\"authenticationType\": \"SqlLogin\",
|
||||
\"user\": \"srpadmin\",
|
||||
\"password\": \"\",
|
||||
\"emptyPasswordInput\": false,
|
||||
\"savePassword\": true,
|
||||
\"profileName\": \"LSL2SQL\""
|
||||
"Prod Tibco/Yoda application (tibrvd)","tibco","@Mest1bc0adm","","From: Kim Peter (IFAM IT OS DC CD) <Peter.Kim1@infineon.com>
|
||||
Sent: Friday, June 14, 2019 12:27 PM
|
||||
Hostname or Package name: tibrvd.ec.local / 10.95.131.156 (two node cluster)
|
||||
|
||||
tibrvd.EC.local [10.95.131.156]
|
||||
|
||||
Prod
|
||||
http://tibrvd.ec.local:8901/index.html
|
||||
http://tibrvd.ec.local:8903/index.html
|
||||
|
||||
Staging
|
||||
http://tibrvd.ec.local:8904/index.html
|
||||
|
||||
IFX_CHANNEL Backbone Domain Services Network YODA4 Remote Daemon YODA4 HTTP
|
||||
MES_P_MES MES_P PROD MES 7701 ;239.255.77.01 tibrvd.ec.local:8801 http://tibrvd:8901/
|
||||
MES_P_MEI MES_P PROD MEI 7703 ;239.255.77.03 tibrvd.ec.local:8803 http://tibrvd:8903/
|
||||
MES_S_STAGE MES_S Stage 7704 ;239.255.77.04 tibrvd.ec.local:8804 http://tibrvd:8904/
|
||||
MES_T_TEST MES_T Test 7702 ;239.255.77.02 mesxs015.mes.infineon.com:8802 http://mesxs015:8902/"
|
||||
"Prod Tibco/Yoda application (mesxs014)","tibco","@Mest1bc0adm","","mesxsec014.EC.local [10.95.131.104]
|
||||
|
||||
Prod
|
||||
http://mesxsec014.ec.local:8901/index.html
|
||||
http://mesxsec014.ec.local:8903/index.html
|
||||
|
||||
Staging
|
||||
http://mesxsec014.ec.local:8904/index.html
|
||||
|
||||
IFX_CHANNEL Backbone Domain Services Network YODA4 Remote Daemon YODA4 HTTP
|
||||
MES_P_MES MES_P PROD MES 7701 ;239.255.77.01 tibrvd.ec.local:8801 http://tibrvd:8901/
|
||||
MES_P_MEI MES_P PROD MEI 7703 ;239.255.77.03 tibrvd.ec.local:8803 http://tibrvd:8903/
|
||||
MES_S_STAGE MES_S Stage 7704 ;239.255.77.04 tibrvd.ec.local:8804 http://tibrvd:8904/
|
||||
MES_T_TEST MES_T Test 7702 ;239.255.77.02 mesxs015.mes.infineon.com:8802 http://mesxs015:8902/"
|
||||
"Prod Tibco/Yoda application (mesxs013)","tiboc","@Mest1bc0adm","","mesxsec013.EC.local [10.95.131.103]
|
||||
|
||||
Prod
|
||||
http://mesxsec013.ec.local:8901/index.html
|
||||
http://mesxsec013.ec.local:8903/index.html
|
||||
|
||||
Staging
|
||||
http://mesxsec013.ec.local:8904/index.html
|
||||
|
||||
IFX_CHANNEL Backbone Domain Services Network YODA4 Remote Daemon YODA4 HTTP
|
||||
MES_P_MES MES_P PROD MES 7701 ;239.255.77.01 tibrvd.ec.local:8801 http://tibrvd:8901/
|
||||
MES_P_MEI MES_P PROD MEI 7703 ;239.255.77.03 tibrvd.ec.local:8803 http://tibrvd:8903/
|
||||
MES_S_STAGE MES_S Stage 7704 ;239.255.77.04 tibrvd.ec.local:8804 http://tibrvd:8904/
|
||||
MES_T_TEST MES_T Test 7702 ;239.255.77.02 mesxs015.mes.infineon.com:8802 http://mesxs015:8902/"
|
||||
"Dev Tibco/Yoda application (mesxs015)","tibco","@Mest1bc0adm","","mesxs015.mes.infineon.com [10.95.179.105]
|
||||
|
||||
http://mesxs015.mes.infineon.com:8902/index.html
|
||||
|
||||
IFX_CHANNEL Backbone Domain Services Network YODA4 Remote Daemon YODA4 HTTP
|
||||
MES_P_MES MES_P PROD MES 7701 ;239.255.77.01 tibrvd.ec.local:8801 http://tibrvd:8901/
|
||||
MES_P_MEI MES_P PROD MEI 7703 ;239.255.77.03 tibrvd.ec.local:8803 http://tibrvd:8903/
|
||||
MES_S_STAGE MES_S Stage 7704 ;239.255.77.04 tibrvd.ec.local:8804 http://tibrvd:8904/
|
||||
MES_T_TEST MES_T Test 7702 ;239.255.77.02 mesxs015.mes.infineon.com:8802 http://mesxs015:8902/"
|
||||
"* EC MES EAF","EC\\ecmeseaf","EAFAdmin2018....!","","Old but works
|
||||
|
||||
RijndaelEncryption
|
||||
Infineon Technologies Americas Corp.
|
||||
CUGygiPwahy4U3j+6KqqoMZ08STyVDR1rKm6MwPpt00="
|
||||
"EC APC Svc","EC\\ecapcsvc","DfQe1C!WEsRYywGakmq2","","INC000004136919
|
||||
SSO73328
|
||||
|
||||
Orderable: SR: CCL - Special Windows Account - New & Modify [Mesa]-SSO73328
|
||||
|
||||
RijndaelEncryption
|
||||
Infineon Technologies Americas Corp.
|
||||
DxF3EKBGb4IlSTVtErlf5wD4e85V2U/SKzAgMDdb/1M="
|
||||
"EC EC SERIAL LOG SVC","EC\\ecseriallogsvc","New@ECpwd03212022","",""
|
||||
"EC EDA Svc","EC\\ecedasvc","NewECPwd07112019!","","INC000004153071
|
||||
SSO74244
|
||||
|
||||
SR: CCL - Special Windows Account - New & Modify [Mesa]-SSO74244
|
||||
|
||||
RijndaelEncryption
|
||||
Infineon Technologies Americas Corp.
|
||||
IKsJmRVUH3xlv+RRELRbwoXYKwLvF4Re7k1Rigzpwf4="
|
||||
"EC FI Sys Admin","EC\\ECFISysAdmin","New@IRpwd12042017","","Prod - IIS - messa010ec (Metrology)
|
||||
messa010ec.ec.local
|
||||
|
||||
RijndaelEncryption
|
||||
Infineon Technologies Americas Corp.
|
||||
1yZhr69T4yzgqStVw2ngTVxol6auGMAwehanygzol5s="
|
||||
"EC MES CEP EAF SVC","EC\\ecmescepeafsvc","NewECPwd01282019!","","INC000004075899
|
||||
ORD1477029"
|
||||
"EC YODA SVC","EC\\ecyodasvc","2QPYq72NFL#FoJnzt%QF","","INC000004148767
|
||||
SSO73202
|
||||
|
||||
Orderable: SR: CCL - Special Windows Account - New & Modify [Mesa]-SSO73202
|
||||
|
||||
RijndaelEncryption
|
||||
Infineon Technologies Americas Corp.
|
||||
IU4P8iQhoKt1BAkKONlZinuLPrwJvWRLxp/7i5HrtiY="
|
||||
"Yyy - EC FI SYS ADMIN","EC\\ecfisysadmin","","",""
|
||||
"Yyy - EC-MES-FI-ADM-SUPPORT","EC\\ec-mes-fi-adm-support","","","Permission for server access FI Support
|
||||
|
||||
Owners :
|
||||
INFINEON\\MESPhares
|
||||
NA\\MESRivard
|
||||
Additional Owner:
|
||||
Rivard Francois (IFAM IT FI MES)"
|
||||
"Yyy - EC-MES-RDSUser-G","EC\\ec-mes-rdsuser-g","","",""
|
||||
"ec serial log svc","EC\\ecseriallogsvc","New@ECpwd03212022","",""
|
||||
"EC Report Services Admin","EC\\ECReportServicesAdmin","New@ECpwd01092023","","INC000006465152"
|
||||
"MES APC SVC","INFINEON\\mesapcsvc","Zx5GFmk5s87!259126","","INC000004115217
|
||||
ORD1492221
|
||||
|
||||
RijndaelEncryption
|
||||
Infineon Technologies Americas Corp.
|
||||
RYGZYHE9Yh1q3b4oIjNK6nVHuiig7rHjZ9pUwwjBqCA="
|
||||
"MES EAF SVC","INFINEON\\meseafsvc","C4+!P-hN91aL?%j","","https://smptools.infineon.com/smptinyurl/orderable/?name=SSO-SpecialWinAccountNew%20(1)
|
||||
|
||||
"
|
||||
"MES EDA SVC","INFINEON\\mesedasvc","Zx5GFmk5s79!25914","","INC000004134183
|
||||
ORD1499496
|
||||
|
||||
RijndaelEncryption
|
||||
Infineon Technologies Americas Corp.
|
||||
K1RyLhaIRyJTDbWutsuWWEiO2hTD3h7fW0BV/Cp+Ftw="
|
||||
"MES GaN EAF","INFINEON\\MESGaNEAF","Mk3GyRk5p25!86515","","RijndaelEncryption
|
||||
Infineon Technologies Americas Corp.
|
||||
tLIPgqM6R9hVQOteRnTHwPqIg3Zxv8CohTjFkjkFz8k="
|
||||
"MES YODA SVC","INFINEON\\mesyodasvc","Zx5GFmk5s97!259126","","INC000004115218
|
||||
ORD1492214
|
||||
|
||||
RijndaelEncryption
|
||||
Infineon Technologies Americas Corp.
|
||||
VwpEjlgytp9jkZQjEeCEUbxffBLE7CQeI5db/P6KGmQ="
|
||||
"Yyy - MES-ADM-FI-SUPPORT","INFINEON\\mes-adm-fi-support","","",""
|
||||
"Zzz - MES CEP APC SVC","INFINEON\\mescepapcsvc","Zx5GFmk5s63!259111","","INC000004097252
|
||||
ORD1485381"
|
||||
"Zzz - MES CEP EAF SVC","INFINEON\\mescepeafsvc","Zx5GFmk5s50!259128","","INC000004075899
|
||||
ORD1477029"
|
||||
"EC US Seriallog Svc","infineon\\ECUSSeriallogSvc","YM+V#5LFJ1(w}%P","",""
|
||||
"mes d1 unity 4 .ifx cep net","NA\\MESCATXMUSER","gKT2V#A$#fAB1jY","","mesd1unity4.ifxcep.net"
|
||||
"MES FI Sys Admin","NA\\MESFISysAdmin","GaN2016=BestWafers!","",""
|
||||
"MESA EAF","NA\\MESEAF","","","Don't know the password
|
||||
|
||||
From: Liow Fui Lian (IFKM CSC FI SGI) <Fui-Lian.Liow@infineon.com>
|
||||
Sent: Thursday, July 11, 2019 9:48 PM
|
||||
To: Phares Mike (IFAM IT FI MES) <Mike.Phares@infineon.com>; Rivard Francois (IFAM IT FI MES) <Francois.Rivard@infineon.com>
|
||||
Cc: Crisp Dan (IFAM IT FI MES) <Dan.Crisp@infineon.com>
|
||||
Subject: RE: NA\\MESEAF Service Account
|
||||
|
||||
|
||||
Hi All,
|
||||
|
||||
Spent some times to dig back the history of this account L
|
||||
This account should be terminated as it was requested wrongly in NA domain.
|
||||
It should be replaced by the MESEAF account in EC domain."
|
||||
"Xxx - mescatxmuser","na.infineon.com\\mescatxmuser","gKT2V#A$#fAB1jY","",""
|
||||
"Xxx - mescleanroom","na.infineon.com\\mescleanroom","FlyMetotheMar$777&","",""
|
||||
"Xxx - mesconference","na.infineon.com\\mesconference","Infineon2016....*","",""
|
||||
"Xxx - mesert","na.infineon.com\\mesert","Infineon20160412","",""
|
||||
"Xxx - mspmnlead3","na.infineon.com\\mspmnlead3","nfineon2016....!","",""
|
||||
"Local - mesd1unity7.ifxcep.net",".\\user","Welcomewelcome1","",""
|
||||
"SP101 - Manager",".\\MANAGER","boss","\\\\10.95.154.12\\testdata","10.95.154.12"
|
||||
"EC US LEO Camstar Tsvc","ECUSLEOCamstarTsvc",";tS&Yqp$i1(Kp;n","","10.89.140.63
|
||||
leosataec21.infineon.com"
|
||||
"EC US LEO Camstar Psvc","ECUSLEOCamstarPsvc","AsY)[yV-iW(XX+4","","10.89.140.61
|
||||
loesapaec21.infineon.com
|
||||
|
||||
10.89.140.62
|
||||
loesapaec22.infineon.com"
|
56
Unix.sv
Normal file
56
Unix.sv
Normal file
@ -0,0 +1,56 @@
|
||||
"Account","Login Name","Password","Web Site","Comments"
|
||||
"Prod Tibco/Yoda application (tibrvd)","tibco","@Mest1bc0adm","","From: Kim Peter (IFAM IT OS DC CD) <Peter.Kim1@infineon.com>
|
||||
Sent: Friday, June 14, 2019 12:27 PM
|
||||
Hostname or Package name: tibrvd.ec.local / 10.95.131.156 (two node cluster)
|
||||
|
||||
tibrvd.EC.local [10.95.131.156]
|
||||
|
||||
Prod
|
||||
http://tibrvd.ec.local:8901/index.html
|
||||
http://tibrvd.ec.local:8903/index.html
|
||||
|
||||
Staging
|
||||
http://tibrvd.ec.local:8904/index.html
|
||||
|
||||
IFX_CHANNEL Backbone Domain Services Network YODA4 Remote Daemon YODA4 HTTP
|
||||
MES_P_MES MES_P PROD MES 7701 ;239.255.77.01 tibrvd.ec.local:8801 http://tibrvd:8901/
|
||||
MES_P_MEI MES_P PROD MEI 7703 ;239.255.77.03 tibrvd.ec.local:8803 http://tibrvd:8903/
|
||||
MES_S_STAGE MES_S Stage 7704 ;239.255.77.04 tibrvd.ec.local:8804 http://tibrvd:8904/
|
||||
MES_T_TEST MES_T Test 7702 ;239.255.77.02 mesxs015.mes.infineon.com:8802 http://mesxs015:8902/"
|
||||
"Prod Tibco/Yoda application (mesxs014)","tibco","@Mest1bc0adm","","mesxsec014.EC.local [10.95.131.104]
|
||||
|
||||
Prod
|
||||
http://mesxsec014.ec.local:8901/index.html
|
||||
http://mesxsec014.ec.local:8903/index.html
|
||||
|
||||
Staging
|
||||
http://mesxsec014.ec.local:8904/index.html
|
||||
|
||||
IFX_CHANNEL Backbone Domain Services Network YODA4 Remote Daemon YODA4 HTTP
|
||||
MES_P_MES MES_P PROD MES 7701 ;239.255.77.01 tibrvd.ec.local:8801 http://tibrvd:8901/
|
||||
MES_P_MEI MES_P PROD MEI 7703 ;239.255.77.03 tibrvd.ec.local:8803 http://tibrvd:8903/
|
||||
MES_S_STAGE MES_S Stage 7704 ;239.255.77.04 tibrvd.ec.local:8804 http://tibrvd:8904/
|
||||
MES_T_TEST MES_T Test 7702 ;239.255.77.02 mesxs015.mes.infineon.com:8802 http://mesxs015:8902/"
|
||||
"Prod Tibco/Yoda application (mesxs013)","tiboc","@Mest1bc0adm","","mesxsec013.EC.local [10.95.131.103]
|
||||
|
||||
Prod
|
||||
http://mesxsec013.ec.local:8901/index.html
|
||||
http://mesxsec013.ec.local:8903/index.html
|
||||
|
||||
Staging
|
||||
http://mesxsec013.ec.local:8904/index.html
|
||||
|
||||
IFX_CHANNEL Backbone Domain Services Network YODA4 Remote Daemon YODA4 HTTP
|
||||
MES_P_MES MES_P PROD MES 7701 ;239.255.77.01 tibrvd.ec.local:8801 http://tibrvd:8901/
|
||||
MES_P_MEI MES_P PROD MEI 7703 ;239.255.77.03 tibrvd.ec.local:8803 http://tibrvd:8903/
|
||||
MES_S_STAGE MES_S Stage 7704 ;239.255.77.04 tibrvd.ec.local:8804 http://tibrvd:8904/
|
||||
MES_T_TEST MES_T Test 7702 ;239.255.77.02 mesxs015.mes.infineon.com:8802 http://mesxs015:8902/"
|
||||
"Dev Tibco/Yoda application (mesxs015)","tibco","@Mest1bc0adm","","mesxs015.mes.infineon.com [10.95.179.105]
|
||||
|
||||
http://mesxs015.mes.infineon.com:8902/index.html
|
||||
|
||||
IFX_CHANNEL Backbone Domain Services Network YODA4 Remote Daemon YODA4 HTTP
|
||||
MES_P_MES MES_P PROD MES 7701 ;239.255.77.01 tibrvd.ec.local:8801 http://tibrvd:8901/
|
||||
MES_P_MEI MES_P PROD MEI 7703 ;239.255.77.03 tibrvd.ec.local:8803 http://tibrvd:8903/
|
||||
MES_S_STAGE MES_S Stage 7704 ;239.255.77.04 tibrvd.ec.local:8804 http://tibrvd:8904/
|
||||
MES_T_TEST MES_T Test 7702 ;239.255.77.02 mesxs015.mes.infineon.com:8802 http://mesxs015:8902/"
|
12
account/apccheck.md
Normal file
12
account/apccheck.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "APCMEST@apcmest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.071Z"
|
||||
updated: "2023-07-27T01:16:34.005Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# apccheck
|
||||
|
||||
## Comment 2023-07-17
|
12
account/apccheck2.md
Normal file
12
account/apccheck2.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "APCMEST@apcmest-db.mes.infineon.com"
|
||||
created: "2023-07-17T18:04:00.606Z"
|
||||
updated: "2023-07-25T16:49:09.643Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# apccheck2
|
||||
|
||||
## Comment 2023-07-17
|
11
account/applicationpoolidentity.md
Normal file
11
account/applicationpoolidentity.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "ApplicationPoolIdentity"
|
||||
created: "2023-07-18T17:14:12.075Z"
|
||||
updated: "2023-07-26T14:37:08.932Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# applicationpoolidentity
|
||||
|
||||
## Comment 2023-07-17
|
11
account/caaphares.md
Normal file
11
account/caaphares.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Phares Mike (IFAM IT FI MES)"
|
||||
created: "2023-07-18T17:14:12.081Z"
|
||||
updated: "2023-07-25T16:49:14.697Z"
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# caaphares
|
||||
|
||||
## Comment 2023-07-17
|
11
account/cepphares.md
Normal file
11
account/cepphares.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Phares Mike (IFAM IT FI MES)"
|
||||
created: "2023-07-18T17:14:12.084Z"
|
||||
updated: "2023-07-25T16:49:15.575Z"
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# cepphares
|
||||
|
||||
## Comment 2023-07-17
|
12
account/dip.md
Normal file
12
account/dip.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "FIMEST@fimest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.088Z"
|
||||
updated: "2023-07-25T16:49:16.838Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# dip
|
||||
|
||||
## Comment 2023-07-17
|
12
account/eafdev-admin-reporting.md
Normal file
12
account/eafdev-admin-reporting.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "FIMEST@fimest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.090Z"
|
||||
updated: "2023-07-27T01:16:34.004Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# eafdev_admin_reporting
|
||||
|
||||
## Comment 2023-07-17
|
12
account/eafdev.md
Normal file
12
account/eafdev.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "FIMEST@fimest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.097Z"
|
||||
updated: "2023-07-25T16:49:31.259Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# eafdev
|
||||
|
||||
## Comment 2023-07-17
|
18
account/ecapcsvc.md
Normal file
18
account/ecapcsvc.md
Normal file
@ -0,0 +1,18 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Service account for APC Windows service - Mike Phares"
|
||||
created: "2023-07-18T17:14:12.100Z"
|
||||
updated: "2023-08-09T15:51:49.113Z"
|
||||
tags: ["service-account"]
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# ecapcsvc
|
||||
|
||||
```PowerShell
|
||||
Get-ADUser -Filter "Name -eq 'ecapcsvc'" -Properties "LogonWorkstations"
|
||||
# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20for%20Clients%20%26%20Applications%20%281%29
|
||||
```
|
||||
|
||||
- mestsa02ec,messa012ec,messa013ec
|
||||
- [ ] [Modification](https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20-%20Modification%20%281%29)
|
11
account/ecchaecworkflowsvc.md
Normal file
11
account/ecchaecworkflowsvc.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Svc Acct for Nintex workflows on the EC iShares - Mote James (IFAM IT DSA IM)"
|
||||
created: "2023-07-18T17:14:12.103Z"
|
||||
updated: "2023-07-25T16:49:35.511Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecchaecworkflowsvc
|
||||
|
||||
## Comment 2023-07-17
|
14
account/eccleanroom.md
Normal file
14
account/eccleanroom.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "SVC Acct for CleanRoom - Surge Burboz"
|
||||
created: "2023-07-18T17:14:12.105Z"
|
||||
updated: "2023-07-27T16:09:46.465Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# eccleanroom
|
||||
|
||||
```PowerShell
|
||||
# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20for%20Clients%20%26%20Applications%20%281%29
|
||||
Get-ADUser -Filter "Name -eq 'eccleanroom'" -Properties "LogonWorkstations"
|
||||
```
|
17
account/ecedasvc.md
Normal file
17
account/ecedasvc.md
Normal file
@ -0,0 +1,17 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Servc Acct EDA Windows service - Leslie Phares"
|
||||
created: "2023-07-18T17:14:12.109Z"
|
||||
updated: "2023-08-09T15:51:49.112Z"
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# ecedasvc
|
||||
|
||||
```PowerShell
|
||||
Get-ADUser -Filter "Name -eq 'ecedasvc'" -Properties "LogonWorkstations"
|
||||
# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20for%20Clients%20%26%20Applications%20%281%29
|
||||
```
|
||||
|
||||
- messa08ec,mestsa07ec
|
||||
- [ ] [Modification](https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20-%20Modification%20%281%29)
|
11
account/ecfiftpsvc.md
Normal file
11
account/ecfiftpsvc.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Svc Acct for Transfer EC raw metrology files from MES OpenInsight to TEM - Jonathan Ouellette"
|
||||
created: "2023-07-18T17:14:12.112Z"
|
||||
updated: "2023-07-25T16:49:39.228Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecfiftpsvc
|
||||
|
||||
## Comment 2023-07-17
|
17
account/ecfisysadmin.md
Normal file
17
account/ecfisysadmin.md
Normal file
@ -0,0 +1,17 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Service account for Mesa FI Server Migration - Crisp Dan"
|
||||
created: "2023-07-18T17:14:12.114Z"
|
||||
updated: "2023-08-09T15:51:49.111Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecfisysadmin
|
||||
|
||||
```PowerShell
|
||||
Get-ADUser -Filter "Name -eq 'ecfisysadmin'" -Properties "LogonWorkstations"
|
||||
# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20for%20Clients%20%26%20Applications%20%281%29
|
||||
```
|
||||
|
||||
- messa01ec,messa03ec,messa04ec,~~mestsa01ec,~~messa06ec,messa010ec,messa05ec,messa019ec,mestsa08ec,messa016ec
|
||||
- [ ] [Modification](https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20-%20Modification%20%281%29)
|
11
account/ecftsvcglobalscape.md
Normal file
11
account/ecftsvcglobalscape.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: ""
|
||||
created: "2023-07-18T17:14:12.117Z"
|
||||
updated: "2023-07-25T16:49:41.603Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecftsvcglobalscape
|
||||
|
||||
## Comment 2023-07-17
|
11
account/ecftsvcreporting.md
Normal file
11
account/ecftsvcreporting.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Filetransfer Reporting User"
|
||||
created: "2023-07-18T17:14:12.119Z"
|
||||
updated: "2023-07-25T16:49:42.413Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecftsvcreporting
|
||||
|
||||
## Comment 2023-07-17
|
13
account/ecmesatableau.md
Normal file
13
account/ecmesatableau.md
Normal file
@ -0,0 +1,13 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "srv acct for the Mesa Tableau servers - Ouellette Jonathan"
|
||||
created: "2023-07-18T17:14:12.122Z"
|
||||
updated: "2023-07-27T16:09:26.212Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecmesatableau
|
||||
|
||||
```PowerShell
|
||||
Get-ADUser -Filter "Name -eq 'ecmesatableau'" -Properties "LogonWorkstations"
|
||||
```
|
14
account/ecmescepeafsvc.md
Normal file
14
account/ecmescepeafsvc.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "SVC Acct For the EAF Apps File Transfer - Phares Mike"
|
||||
created: "2023-07-18T17:14:12.127Z"
|
||||
updated: "2023-07-27T16:17:03.777Z"
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# ecmescepeafsvc
|
||||
|
||||
```PowerShell
|
||||
# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20for%20Clients%20%26%20Applications%20%281%29
|
||||
Get-ADUser -Filter "Name -eq 'ecmescepeafsvc'" -Properties "LogonWorkstations"
|
||||
```
|
18
account/ecmeseaf.md
Normal file
18
account/ecmeseaf.md
Normal file
@ -0,0 +1,18 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Service acct for EAF system - Phares Mike"
|
||||
created: "2023-07-18T17:14:12.130Z"
|
||||
updated: "2023-08-09T15:51:49.101Z"
|
||||
tags: ["service-account"]
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# ecmeseaf
|
||||
|
||||
```PowerShell
|
||||
# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20for%20Clients%20%26%20Applications%20%281%
|
||||
Get-ADUser -Filter "Name -eq 'ecmeseaf'" -Properties "LogonWorkstations"
|
||||
```
|
||||
|
||||
- messa08ec,messa09ec,mestsa07ec,messa03ec,messa011ec
|
||||
- [ ] [Modification](https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20-%20Modification%20%281%29)
|
11
account/ecmessqlsv01mon.md
Normal file
11
account/ecmessqlsv01mon.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Svc acct to run SQL services - Burboz Surge"
|
||||
created: "2023-07-17T18:04:00.658Z"
|
||||
updated: "2023-07-25T16:49:46.108Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecmessqlsv01mon
|
||||
|
||||
## Comment 2023-07-17
|
11
account/ecmessqlsv01svc.md
Normal file
11
account/ecmessqlsv01svc.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Svc acct to run SQL services - Burboz Surge"
|
||||
created: "2023-07-17T18:04:00.659Z"
|
||||
updated: "2023-07-25T16:49:46.872Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecmessqlsv01svc
|
||||
|
||||
## Comment 2023-07-17
|
12
account/ecphares.md
Normal file
12
account/ecphares.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Admin acct for MES Factory Integration Appl on call support - Phares Mike"
|
||||
created: "2023-07-18T17:14:12.133Z"
|
||||
updated: "2023-07-26T14:33:38.595Z"
|
||||
tags: ["admin-account"]
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# ecphares
|
||||
|
||||
## Comment 2023-07-17
|
14
account/ecreactorrecipes.md
Normal file
14
account/ecreactorrecipes.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Srv Acct for HTR reactors to copy data to EC fileshare"
|
||||
created: "2023-07-18T17:14:12.135Z"
|
||||
updated: "2023-07-27T16:16:58.219Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecreactorrecipes
|
||||
|
||||
```PowerShell
|
||||
# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20for%20Clients%20%26%20Applications%20%281%29
|
||||
Get-ADUser -Filter "Name -eq 'ecreactorrecipes'" -Properties "LogonWorkstations"
|
||||
```
|
17
account/ecreportservicesadmin.md
Normal file
17
account/ecreportservicesadmin.md
Normal file
@ -0,0 +1,17 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Svc Acct to create an agent for automated web deployments and for managing applications on the server - Wathen Daniel"
|
||||
created: "2023-07-18T17:14:12.139Z"
|
||||
updated: "2023-08-09T15:51:49.101Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecreportservicesadmin
|
||||
|
||||
```PowerShell
|
||||
# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20for%20Clients%20%26%20Applications%20%281%29
|
||||
Get-ADUser -Filter "Name -eq 'ecreportservicesadmin'" -Properties "LogonWorkstations"
|
||||
```
|
||||
|
||||
- messa020ec
|
||||
- [ ] [Modification](https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20-%20Modification%20%281%29)
|
11
account/ecsps2016.md
Normal file
11
account/ecsps2016.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "SharePoint Service account - James Mote"
|
||||
created: "2023-07-17T18:04:00.662Z"
|
||||
updated: "2023-07-25T16:49:50.907Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecsps2016
|
||||
|
||||
## Comment 2023-07-17
|
11
account/ecsps2016farm.md
Normal file
11
account/ecsps2016farm.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "SharePoint Service account For new SP2016 server - James Mote"
|
||||
created: "2023-07-17T18:04:00.663Z"
|
||||
updated: "2023-07-25T16:49:53.108Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecsps2016farm
|
||||
|
||||
## Comment 2023-07-17
|
11
account/ecsps2016service.md
Normal file
11
account/ecsps2016service.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Service Account for Windows Servers - James Mote"
|
||||
created: "2023-07-17T18:04:00.664Z"
|
||||
updated: "2023-07-25T16:49:53.925Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecsps2016service
|
||||
|
||||
## Comment 2023-07-17
|
11
account/ecsps2016write.md
Normal file
11
account/ecsps2016write.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Service Account for Windows Servers - James Mote"
|
||||
created: "2023-07-17T18:04:00.664Z"
|
||||
updated: "2023-07-25T16:49:54.895Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecsps2016write
|
||||
|
||||
## Comment 2023-07-17
|
11
account/ecsqlec01svc.md
Normal file
11
account/ecsqlec01svc.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: ""
|
||||
created: "2023-07-17T18:04:00.665Z"
|
||||
updated: "2023-07-25T16:49:55.707Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecsqlec01svc
|
||||
|
||||
## Comment 2023-07-17
|
11
account/ecsqlec02svc.md
Normal file
11
account/ecsqlec02svc.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: ""
|
||||
created: "2023-07-17T18:04:00.666Z"
|
||||
updated: "2023-07-25T16:49:56.499Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecsqlec02svc
|
||||
|
||||
## Comment 2023-07-17
|
11
account/ecsqlec03svc.md
Normal file
11
account/ecsqlec03svc.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: ""
|
||||
created: "2023-07-17T18:04:00.667Z"
|
||||
updated: "2023-07-25T16:49:57.269Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecsqlec03svc
|
||||
|
||||
## Comment 2023-07-17
|
11
account/ecstorageftpsvc.md
Normal file
11
account/ecstorageftpsvc.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Svc acct for Non-EC data transfer - Peter Kim"
|
||||
created: "2023-07-18T17:14:12.141Z"
|
||||
updated: "2023-07-25T16:49:57.956Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecstorageftpsvc
|
||||
|
||||
## Comment 2023-07-17
|
11
account/ectemappsvc.md
Normal file
11
account/ectemappsvc.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Service ACCT for Websites and Website Pools - Onyia Izuchukwu"
|
||||
created: "2023-07-18T17:14:12.144Z"
|
||||
updated: "2023-07-25T16:49:58.637Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ectemappsvc
|
||||
|
||||
## Comment 2023-07-17
|
11
account/ecusleocamstarpsvc.md
Normal file
11
account/ecusleocamstarpsvc.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "ecusleoCamstarPsvc"
|
||||
created: "2023-07-18T17:14:12.147Z"
|
||||
updated: "2023-07-26T14:37:08.934Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecusleocamstarpsvc
|
||||
|
||||
## Comment 2023-07-17
|
11
account/ecusleocamstartsvc.md
Normal file
11
account/ecusleocamstartsvc.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "ecusleoCamstarTsvc"
|
||||
created: "2023-07-18T17:14:12.150Z"
|
||||
updated: "2023-07-26T14:44:03.516Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecusleocamstartsvc
|
||||
|
||||
## Comment 2023-07-17
|
11
account/ecusseriallogsvc.md
Normal file
11
account/ecusseriallogsvc.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "ecusSerialLogsvc"
|
||||
created: "2023-07-18T17:14:12.152Z"
|
||||
updated: "2023-07-26T14:37:08.935Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecusseriallogsvc
|
||||
|
||||
## Comment 2023-07-17
|
11
account/ecusxfracassvc.md
Normal file
11
account/ecusxfracassvc.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "ecusXFracassvc"
|
||||
created: "2023-07-18T17:14:12.155Z"
|
||||
updated: "2023-07-26T14:36:25.090Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# ecusxfracassvc
|
||||
|
||||
## Comment 2023-07-17
|
19
account/ecyodasvc.md
Normal file
19
account/ecyodasvc.md
Normal file
@ -0,0 +1,19 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Service account for YODA / TIBCO Windows service - Mike Phares"
|
||||
created: "2023-07-18T17:14:12.160Z"
|
||||
updated: "2023-08-09T15:51:49.099Z"
|
||||
tags: ["service-account"]
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# ecyodasvc
|
||||
|
||||
```PowerShell
|
||||
# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20for%20Clients%20%26%20Applications%20%281%29
|
||||
# https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20-%20Modification%20%281%29
|
||||
Get-ADUser -Filter "Name -eq 'ecyodasvc'" -Properties "LogonWorkstations"
|
||||
```
|
||||
|
||||
- mestsa03ec,messa014ec,messa015ec
|
||||
- [ ] [Modification](https://smptools.infineon.com/smptinyurl/orderable/?name=ORD-Special%20Account%20-%20Modification%20%281%29)
|
12
account/edatest.md
Normal file
12
account/edatest.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "FIMEST@fimest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.163Z"
|
||||
updated: "2023-07-25T16:50:03.183Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# edatest
|
||||
|
||||
## Comment 2023-07-17
|
12
account/fdc-admin.md
Normal file
12
account/fdc-admin.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "APCMEST@apcmest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.176Z"
|
||||
updated: "2023-07-27T01:16:34.001Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# fdc_admin
|
||||
|
||||
## Comment 2023-07-17
|
12
account/fdc-cerberus.md
Normal file
12
account/fdc-cerberus.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "APCMEST@apcmest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.179Z"
|
||||
updated: "2023-07-27T01:16:34.000Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# fdc_cerberus
|
||||
|
||||
## Comment 2023-07-17
|
12
account/fdc-config.md
Normal file
12
account/fdc-config.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "APCMEST@apcmest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.181Z"
|
||||
updated: "2023-07-27T01:16:34.000Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# fdc_config
|
||||
|
||||
## Comment 2023-07-17
|
12
account/fdc-config2.md
Normal file
12
account/fdc-config2.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "APCMEST@apcmest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.184Z"
|
||||
updated: "2023-07-27T01:16:34.000Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# fdc_config2
|
||||
|
||||
## Comment 2023-07-17
|
12
account/fdc-dev.md
Normal file
12
account/fdc-dev.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "APCMEST@apcmest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.188Z"
|
||||
updated: "2023-07-27T01:16:33.993Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# fdc_dev
|
||||
|
||||
## Comment 2023-07-17
|
12
account/fdc-extractor.md
Normal file
12
account/fdc-extractor.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "APCMEST@apcmest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.192Z"
|
||||
updated: "2023-07-27T01:16:33.993Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# fdc_extractor
|
||||
|
||||
## Comment 2023-07-17
|
12
account/fdc-job.md
Normal file
12
account/fdc-job.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "APCMEST@apcmest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.195Z"
|
||||
updated: "2023-07-27T01:16:33.993Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# fdc_job
|
||||
|
||||
## Comment 2023-07-17
|
12
account/fdc-parallel.md
Normal file
12
account/fdc-parallel.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "APCMEST@apcmest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.199Z"
|
||||
updated: "2023-07-27T01:16:33.990Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# fdc_parallel
|
||||
|
||||
## Comment 2023-07-17
|
12
account/fdc-trend.md
Normal file
12
account/fdc-trend.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "APCMEST@apcmest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.202Z"
|
||||
updated: "2023-07-27T01:17:42.892Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# fdc_trend
|
||||
|
||||
## Comment 2023-07-17
|
12
account/fdc-trend2.md
Normal file
12
account/fdc-trend2.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "APCMEST@apcmest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.221Z"
|
||||
updated: "2023-07-27T01:17:42.892Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# fdc_trend2
|
||||
|
||||
## Comment 2023-07-17
|
12
account/fdc-v32.md
Normal file
12
account/fdc-v32.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "APCMEST@apcmest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.225Z"
|
||||
updated: "2023-07-27T01:17:42.892Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# fdc_v32
|
||||
|
||||
## Comment 2023-07-17
|
11
account/ifxeafadmin.md
Normal file
11
account/ifxeafadmin.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "# Service Account Phares Mike (IFAM IT FI MES) / Crisp Dan (IFAM IT FI MES)"
|
||||
created: "2023-07-18T17:14:12.227Z"
|
||||
updated: "2023-07-25T16:50:15.563Z"
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# ifxeafadmin
|
||||
|
||||
## Comment 2023-07-17
|
11
account/ifxedaadmin.md
Normal file
11
account/ifxedaadmin.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "# Service Account Phares Mike (IFAM IT FI MES) / Crisp Dan (IFAM IT FI MES)"
|
||||
created: "2023-07-18T17:14:12.230Z"
|
||||
updated: "2023-07-25T16:50:16.794Z"
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# ifxedaadmin
|
||||
|
||||
## Comment 2023-07-17
|
19
account/imported/2023-07-10.tsv
Normal file
19
account/imported/2023-07-10.tsv
Normal file
@ -0,0 +1,19 @@
|
||||
type title description links body
|
||||
account ApplicationPoolIdentity messa020ec;messa014;;;;;;;;;
|
||||
account ecAPCsvc messa012ec;messa013ec;mestsa02ec;;;;;;;;
|
||||
account ecFIsysadmin messa04ec;messa06ec;messa010ec;mestsa06ec;mestsa01ec;messa01ec;messa05ec;messa016ec;messa019ec;messa03ec;mesd1unity10
|
||||
account ecmesEAF mestsa07ec;messa08ec;messa09ec;messa011ec;;;;;;;
|
||||
account ecPhares elsstec101;messtec101;messtec102;;;;;;;;
|
||||
account ECReportServicesAdmin messa020ec;;;;;;;;;;
|
||||
account ecusleoCamstarPsvc loesapaec21;loesapaec22;;;;;;;;;
|
||||
account ecusleoCamstarTsvc leosataec21;;;;;;;;;;
|
||||
account ecusSerialLogsvc leosaec04;;;;;;;;;;
|
||||
account ecusXFracassvc leosatec01;messa014ec;messa015ec;mestsa03ec;;;;;;;
|
||||
account LocalSystem messv01ec;;;;;;;;;;
|
||||
account mesAPCsvc mestsa005;;;;;;;;;;
|
||||
account mesEAFsvc mestsa003;messa017;mestsa003;messa017;;;;;;;
|
||||
account mesFIsysadmin messa009;messa005;messa012;mestsa007;mestsa008;;;;;;
|
||||
account mesganEAF mestsa004;;;;;;;;;;
|
||||
account mesYODAsvc mestsa006;mestsa006;;;;;;;;;
|
||||
account Phares ISCCVMD0AF56899;;;;;;;;;;
|
||||
account Unknown messa017ec;messa018ec;leosatec01;leosatec04;leosaec04;messa1005;messa004;messt6501;messt6502;messa010;mesd1unity2;mesd1unity3;mesd1unity6;mesd1biorad4;mesd1unity4;mesd1unity1;mesd1unity5;mesd1unity7;mesd1unity8
|
Can't render this file because it has a wrong number of fields in line 19.
|
71
account/imported/2023-07-17.tsv
Normal file
71
account/imported/2023-07-17.tsv
Normal file
@ -0,0 +1,71 @@
|
||||
type title description tags links body System
|
||||
account apccheck APCMEST@apcmest-db.mes.infineon.com Dev DB
|
||||
account apccheck2 APCMEST@apcmest-db.mes.infineon.com Dev DB
|
||||
account applicationpoolidentity ApplicationPoolIdentity messa020ec;messa014;;;;;;;;;
|
||||
account caaphares Phares Mike (IFAM IT FI MES) Active Directory
|
||||
account cepphares Phares Mike (IFAM IT FI MES) Active Directory
|
||||
account dip FIMEST@fimest-db.mes.infineon.com Dev DB
|
||||
account eafdev FIMEST@fimest-db.mes.infineon.com Dev DB
|
||||
account eafdev_admin_reporting FIMEST@fimest-db.mes.infineon.com Dev DB
|
||||
account ecapcsvc Service account for APC Windows service - Mike Phares service messa012ec;messa013ec;mestsa02ec;;;;;;;; Active Directory
|
||||
account ecchaecworkflowsvc Svc Acct for Nintex workflows on the EC iShares - Mote James (IFAM IT DSA IM)
|
||||
account eccleanroom SVC Acct for CleanRoom - Surge Burboz
|
||||
account ecedasvc Servc Acct EDA Windows service - Leslie Phares Active Directory
|
||||
account ecfiftpsvc Svc Acct for Transfer EC raw metrology files from MES OpenInsight to TEM - Jonathan Ouellette
|
||||
account ecfisysadmin Service account for Mesa FI Server Migration - Crisp Dan messa04ec;messa06ec;messa010ec;mestsa06ec;mestsa01ec;messa01ec;messa05ec;messa016ec;messa019ec;messa03ec;mesd1unity10
|
||||
account ecftsvcglobalscape
|
||||
account ecftsvcreporting Filetransfer Reporting User
|
||||
account ecmesatableau srv acct for the Mesa Tableau servers - Ouellette Jonathan
|
||||
account ecmescepeafsvc SVC Acct For the EAF Apps File Transfer - Phares Mike Active Directory
|
||||
account ecmeseaf Service acct for EAF system - Phares Mike service mestsa07ec;messa08ec;messa09ec;messa011ec;;;;;;; Active Directory
|
||||
account ecmessqlsv01mon Svc acct to run SQL services - Burboz Surge
|
||||
account ecmessqlsv01svc Svc acct to run SQL services - Burboz Surge
|
||||
account ecphares Admin acct for MES Factory Integration Appl on call support - Phares Mike admin elsstec101;messtec101;messtec102;;;;;;;; Active Directory
|
||||
account ecreactorrecipes Srv Acct for HTR reactors to copy data to EC fileshare
|
||||
account ecreportservicesadmin Svc Acct to create an agent for automated web deployments and for managing applications on the server - Wathen Daniel messa020ec;;;;;;;;;;
|
||||
account ecsps2016 SharePoint Service account - James Mote
|
||||
account ecsps2016farm SharePoint Service account For new SP2016 server - James Mote
|
||||
account ecsps2016service Service Account for Windows Servers - James Mote
|
||||
account ecsps2016write Service Account for Windows Servers - James Mote
|
||||
account ecsqlec01svc
|
||||
account ecsqlec02svc
|
||||
account ecsqlec03svc
|
||||
account ecstorageftpsvc Svc acct for Non-EC data transfer - Peter Kim
|
||||
account ectemappsvc Service ACCT for Websites and Website Pools - Onyia Izuchukwu
|
||||
account ecusleocamstarpsvc ecusleoCamstarPsvc loesapaec21;loesapaec22;;;;;;;;;
|
||||
account ecusleocamstartsvc ecusleoCamstarTsvc leosataec21;;;;;;;;;;
|
||||
account ecusseriallogsvc ecusSerialLogsvc leosaec04;;;;;;;;;;
|
||||
account ecusxfracassvc ecusXFracassvc leosatec01;;;;;;;
|
||||
account ecyodasvc Service account for YODA / TIBCO Windows service - Mike Phares service messa014ec;messa015ec;mestsa03ec;;;;;;;;; Active Directory
|
||||
account edatest FIMEST@fimest-db.mes.infineon.com Dev DB
|
||||
account fdc_admin APCMEST@apcmest-db.mes.infineon.com Dev DB
|
||||
account fdc_cerberus APCMEST@apcmest-db.mes.infineon.com Dev DB
|
||||
account fdc_config APCMEST@apcmest-db.mes.infineon.com Dev DB
|
||||
account fdc_config2 APCMEST@apcmest-db.mes.infineon.com Dev DB
|
||||
account fdc_dev APCMEST@apcmest-db.mes.infineon.com Dev DB
|
||||
account fdc_extractor APCMEST@apcmest-db.mes.infineon.com Dev DB
|
||||
account fdc_job APCMEST@apcmest-db.mes.infineon.com Dev DB
|
||||
account fdc_parallel APCMEST@apcmest-db.mes.infineon.com Dev DB
|
||||
account fdc_trend APCMEST@apcmest-db.mes.infineon.com Dev DB
|
||||
account fdc_trend2 APCMEST@apcmest-db.mes.infineon.com Dev DB
|
||||
account fdc_v32 APCMEST@apcmest-db.mes.infineon.com Dev DB
|
||||
account ifxeafadmin # Service Account Phares Mike (IFAM IT FI MES) / Crisp Dan (IFAM IT FI MES) Active Directory
|
||||
account ifxedaadmin # Service Account Phares Mike (IFAM IT FI MES) / Crisp Dan (IFAM IT FI MES) Active Directory
|
||||
account localsystem LocalSystem messv01ec;;;;;;;;;;
|
||||
account logeval APCMEST@apcmest-db.mes.infineon.com Dev DB
|
||||
account mesapcsvc # Special Account Phares Mike (IFAM IT FI MES) & Rivard Francois (IFAM IT FI MES) special mestsa005;;;;;;;;;; Active Directory
|
||||
account mescepapcsvc # Special Account Phares Mike (IFAM IT FI MES) & Rivard Francois (IFAM IT FI MES) Active Directory
|
||||
account mescepeafsvc # Special Account Phares Mike (IFAM IT FI MES) & Rivard Francois (IFAM IT FI MES) Active Directory
|
||||
account meseaf # Service Account Phares Mike (IFAM IT FI MES) / Crisp Dan (IFAM IT FI MES) Active Directory
|
||||
account meseafsvc # Special Account Phares Mike (IFAM IT FI MES) & Rivard Francois (IFAM IT FI MES) special mestsa003;messa017;mestsa003;messa017;;;;;;; Active Directory
|
||||
account mesedasvc # Special Account Phares Mike (IFAM IT FI MES) & Rivard Francois (IFAM IT FI MES) Active Directory
|
||||
account mesfisysadmin mesFIsysadmin messa009;messa005;messa012;mestsa007;mestsa008;;;;;;
|
||||
account mesganeaf # Service account Phares Mike (IFAM IT FI MES) / Rivard Francois (IFAM IT FI MES) service mestsa004;;;;;;;;;; Active Directory
|
||||
account mesphares Phares Mike (IFAM IT FI MES) Active Directory
|
||||
account mesyodasvc # Special Account Phares Mike (IFAM IT FI MES) & Rivard Francois (IFAM IT FI MES) special mestsa006;mestsa006;;;;;;;;; Active Directory
|
||||
account ocns APCMEST@apcmest-db.mes.infineon.com Dev DB
|
||||
account ole_admin APCMEST@apcmest-db.mes.infineon.com Dev DB
|
||||
account phares Phares Mike (IFAM IT FI MES) personal ISCCVMD0AF56899;;;;;;;;;; Active Directory
|
||||
account phares Urania UX
|
||||
account unknown Unknown messa017ec;messa018ec;leosatec01;leosatec04;leosaec04;messa1005;messa004;messt6501;messt6502;messa010;mesd1unity2;mesd1unity3;mesd1unity6;mesd1biorad4;mesd1unity4;mesd1unity1;mesd1unity5;mesd1unity7;mesd1unity8
|
||||
account yodatest FIMEST@fimest-db.mes.infineon.com Dev DB
|
|
11
account/localsystem.md
Normal file
11
account/localsystem.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "LocalSystem"
|
||||
created: "2023-07-18T17:14:12.232Z"
|
||||
updated: "2023-07-26T14:36:04.663Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# localsystem
|
||||
|
||||
## Comment 2023-07-17
|
12
account/logeval.md
Normal file
12
account/logeval.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "APCMEST@apcmest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.236Z"
|
||||
updated: "2023-07-25T16:50:19.337Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# logeval
|
||||
|
||||
## Comment 2023-07-17
|
12
account/mesapcsvc.md
Normal file
12
account/mesapcsvc.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "# Special Account Phares Mike (IFAM IT FI MES) \u0026 Rivard Francois (IFAM IT FI MES)"
|
||||
created: "2023-07-18T17:14:12.244Z"
|
||||
updated: "2023-07-26T14:34:00.102Z"
|
||||
tags: ["special-account"]
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# mesapcsvc
|
||||
|
||||
## Comment 2023-07-17
|
11
account/mescepapcsvc.md
Normal file
11
account/mescepapcsvc.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "# Special Account Phares Mike (IFAM IT FI MES) \u0026 Rivard Francois (IFAM IT FI MES)"
|
||||
created: "2023-07-18T17:14:12.249Z"
|
||||
updated: "2023-07-25T16:50:21.433Z"
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# mescepapcsvc
|
||||
|
||||
## Comment 2023-07-17
|
11
account/mescepeafsvc.md
Normal file
11
account/mescepeafsvc.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "# Special Account Phares Mike (IFAM IT FI MES) \u0026 Rivard Francois (IFAM IT FI MES)"
|
||||
created: "2023-07-18T17:14:12.253Z"
|
||||
updated: "2023-07-25T16:50:22.681Z"
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# mescepeafsvc
|
||||
|
||||
## Comment 2023-07-17
|
11
account/meseaf.md
Normal file
11
account/meseaf.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "# Service Account Phares Mike (IFAM IT FI MES) / Crisp Dan (IFAM IT FI MES)"
|
||||
created: "2023-07-18T17:14:12.255Z"
|
||||
updated: "2023-07-25T16:50:23.541Z"
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# meseaf
|
||||
|
||||
## Comment 2023-07-17
|
12
account/meseafsvc.md
Normal file
12
account/meseafsvc.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "# Special Account Phares Mike (IFAM IT FI MES) \u0026 Rivard Francois (IFAM IT FI MES)"
|
||||
created: "2023-07-18T17:14:12.267Z"
|
||||
updated: "2023-07-27T01:09:24.741Z"
|
||||
tags: ["special-account"]
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# meseafsvc
|
||||
|
||||
## Comment 2023-07-17
|
11
account/mesedasvc.md
Normal file
11
account/mesedasvc.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "# Special Account Phares Mike (IFAM IT FI MES) \u0026 Rivard Francois (IFAM IT FI MES)"
|
||||
created: "2023-07-18T17:14:12.272Z"
|
||||
updated: "2023-07-25T16:50:25.393Z"
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# mesedasvc
|
||||
|
||||
## Comment 2023-07-17
|
11
account/mesfisysadmin.md
Normal file
11
account/mesfisysadmin.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "mesFIsysadmin"
|
||||
created: "2023-07-18T17:14:12.274Z"
|
||||
updated: "2023-07-27T01:09:40.566Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# mesfisysadmin
|
||||
|
||||
## Comment 2023-07-17
|
12
account/mesganeaf.md
Normal file
12
account/mesganeaf.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "# Service account Phares Mike (IFAM IT FI MES) / Rivard Francois (IFAM IT FI MES)"
|
||||
created: "2023-07-18T17:14:12.277Z"
|
||||
updated: "2023-07-26T14:33:11.328Z"
|
||||
tags: ["service-account"]
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# mesganeaf
|
||||
|
||||
## Comment 2023-07-17
|
11
account/mesphares.md
Normal file
11
account/mesphares.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Phares Mike (IFAM IT FI MES)"
|
||||
created: "2023-07-18T17:14:12.278Z"
|
||||
updated: "2023-07-25T16:50:27.830Z"
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# mesphares
|
||||
|
||||
## Comment 2023-07-17
|
12
account/mesyodasvc.md
Normal file
12
account/mesyodasvc.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "# Special Account Phares Mike (IFAM IT FI MES) \u0026 Rivard Francois (IFAM IT FI MES)"
|
||||
created: "2023-07-18T17:14:12.279Z"
|
||||
updated: "2023-07-26T14:34:00.102Z"
|
||||
tags: ["special-account"]
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# mesyodasvc
|
||||
|
||||
## Comment 2023-07-17
|
12
account/ocns.md
Normal file
12
account/ocns.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "APCMEST@apcmest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.281Z"
|
||||
updated: "2023-07-25T16:50:29.664Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# ocns
|
||||
|
||||
## Comment 2023-07-17
|
12
account/ole-admin.md
Normal file
12
account/ole-admin.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "APCMEST@apcmest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.282Z"
|
||||
updated: "2023-07-27T01:17:42.892Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# ole_admin
|
||||
|
||||
## Comment 2023-07-17
|
11
account/phares.md
Normal file
11
account/phares.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Urania"
|
||||
created: "2023-07-18T17:14:12.283Z"
|
||||
updated: "2023-07-25T16:50:32.043Z"
|
||||
System: "UX"
|
||||
---
|
||||
|
||||
# phares
|
||||
|
||||
## Comment 2023-07-17
|
24
account/tibco.md
Normal file
24
account/tibco.md
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
type: "account"
|
||||
description: ""
|
||||
created: "2023-09-25T16:09:52.213Z"
|
||||
updated: "2023-09-25T16:09:52.213Z"
|
||||
tags: ["service-account"]
|
||||
System: "Active Directory"
|
||||
---
|
||||
|
||||
# tibco
|
||||
|
||||
## mesxs015
|
||||
|
||||
- [ ] [Remote Daemon Agent](../process/remote-daemon-agent.md)
|
||||
|
||||
## mesxs013
|
||||
|
||||
- [ ] [Remote Daemon Agent](../process/remote-daemon-agent.md)
|
||||
|
||||
## mesxs014
|
||||
|
||||
- [ ] [Remote Daemon Agent](../process/remote-daemon-agent.md)
|
||||
|
||||
## Comment 2023-07-17
|
11
account/unknown.md
Normal file
11
account/unknown.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "Unknown"
|
||||
created: "2023-07-18T17:14:12.285Z"
|
||||
updated: "2023-07-27T01:11:03.410Z"
|
||||
System: ""
|
||||
---
|
||||
|
||||
# unknown
|
||||
|
||||
## Comment 2023-07-17
|
12
account/yodatest.md
Normal file
12
account/yodatest.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
type: "account"
|
||||
description: "FIMEST@fimest-db.mes.infineon.com"
|
||||
created: "2023-07-18T17:14:12.288Z"
|
||||
updated: "2023-07-25T16:50:35.684Z"
|
||||
tags: ["Dev"]
|
||||
System: "DB"
|
||||
---
|
||||
|
||||
# yodatest
|
||||
|
||||
## Comment 2023-07-17
|
135
ad/ifx-ecus-mes-prj-spc-si-r-l.md
Normal file
135
ad/ifx-ecus-mes-prj-spc-si-r-l.md
Normal file
@ -0,0 +1,135 @@
|
||||
---
|
||||
type: "note"
|
||||
created: "2024-03-05T01:23:56.971Z"
|
||||
updated: "2024-03-05T01:23:56.972Z"
|
||||
---
|
||||
|
||||
# ifx-ecus-mes-prj-spc-si-r-l
|
||||
|
||||
## IFX-ECUS-MES-PRJ-SPC-SI-R-L
|
||||
|
||||
Group Details
|
||||
|
||||
Distinghuished Name
|
||||
CN=IFX-ECUS-MES-PRJ-SPC-SI-R-L,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com
|
||||
Group Description
|
||||
Groups are needed for Stealth File Shares in MESA
|
||||
Group Owner
|
||||
Hackett Joseph (IT OS WP AM)
|
||||
Group Expiration
|
||||
n/a
|
||||
Direct Members
|
||||
103
|
||||
Notes
|
||||
Additional Owner:
|
||||
Patel Kartik
|
||||
Group Type
|
||||
This group is a security group (usually this group type is used to grant access to resources, e.g. Shares).
|
||||
Category
|
||||
Security Group
|
||||
|
||||
```bash domain \ account
|
||||
infineon\amarti4
|
||||
infineon\aobukho1
|
||||
infineon\bellamy
|
||||
infineon\bmoon1
|
||||
infineon\cbecker1
|
||||
infineon\chovann1
|
||||
infineon\conway
|
||||
infineon\crik1
|
||||
infineon\deshong
|
||||
infineon\dluna1
|
||||
infineon\dsien1
|
||||
infineon\garoj
|
||||
infineon\goodwide
|
||||
infineon\goraya
|
||||
infineon\gordono
|
||||
infineon\gramire4
|
||||
infineon\henderss
|
||||
infineon\hendrica
|
||||
infineon\howarth
|
||||
infineon\hvu3
|
||||
infineon\ifxres1352c116b
|
||||
infineon\ifxres189dd5c8b
|
||||
infineon\ifxres20ef1e000
|
||||
infineon\ifxres20f3c2fe3
|
||||
infineon\ifxres2699eeb6c
|
||||
infineon\ifxres2b9350797
|
||||
infineon\ifxres3498fc0cf
|
||||
infineon\ifxres3f2288f85
|
||||
infineon\ifxres4506e0732
|
||||
infineon\ifxres46f537532
|
||||
infineon\ifxres490f3d8be
|
||||
infineon\ifxres49ea5b955
|
||||
infineon\ifxres585cd5d8e
|
||||
infineon\ifxres58c812cae
|
||||
infineon\ifxres5c1b5ed4d
|
||||
infineon\ifxres5e3584700
|
||||
infineon\ifxres65d278ff6
|
||||
infineon\ifxres698b29da6
|
||||
infineon\ifxres6c28ec3e8
|
||||
infineon\ifxres735f9a474
|
||||
infineon\ifxres748063f3a
|
||||
infineon\ifxres7800e1076
|
||||
infineon\ifxres82b759227
|
||||
infineon\ifxres88cd30657
|
||||
infineon\ifxres961e34f42
|
||||
infineon\ifxres9ef7dc15c
|
||||
infineon\ifxres9f4ee895d
|
||||
infineon\ifxresa85d02e76
|
||||
infineon\ifxresab54751bb
|
||||
infineon\ifxresc4744f893
|
||||
infineon\ifxresd38a4fc8e
|
||||
infineon\ifxresdb8e25210
|
||||
infineon\ifxrese21104f61
|
||||
infineon\ifxrese7b0e2ed6
|
||||
infineon\ifxreseab5a5c7d
|
||||
infineon\ifxresedf87e325
|
||||
infineon\ifxresfb3cddd26
|
||||
infineon\ifxresfcd7b22bd
|
||||
infineon\jaquez
|
||||
infineon\jfuente1
|
||||
infineon\jhollan2
|
||||
infineon\jmcinty2
|
||||
infineon\jsperli1
|
||||
infineon\kclark1
|
||||
infineon\kdeshon1
|
||||
infineon\kirkland
|
||||
infineon\knewger1
|
||||
infineon\lawrence
|
||||
infineon\lopesanthony
|
||||
infineon\marroquinbra
|
||||
infineon\marstein
|
||||
infineon\mcchesne
|
||||
infineon\mcouste1
|
||||
infineon\millard
|
||||
infineon\mjarsey1
|
||||
infineon\mtangen1
|
||||
infineon\mvalenc3
|
||||
infineon\mwalsh1
|
||||
infineon\nclark1
|
||||
infineon\olmstead
|
||||
infineon\otero
|
||||
infineon\otooled
|
||||
infineon\ouellette
|
||||
infineon\palmeria
|
||||
infineon\peirce
|
||||
infineon\phares
|
||||
infineon\phaukap1
|
||||
infineon\rblunt1
|
||||
infineon\rbraini1
|
||||
infineon\rinesmith
|
||||
infineon\rubina
|
||||
infineon\smiller2
|
||||
infineon\swoodya1
|
||||
infineon\taustin1
|
||||
infineon\tcarrie1
|
||||
infineon\tkhokha1
|
||||
infineon\tmunoz1
|
||||
infineon\tnguyen6
|
||||
infineon\torreand
|
||||
infineon\ttaylor1
|
||||
infineon\vstucke1
|
||||
infineon\wampler
|
||||
infineon\wwest1
|
||||
```
|
32
ad/ifx-ecus-stealth-apc-users.md
Normal file
32
ad/ifx-ecus-stealth-apc-users.md
Normal file
@ -0,0 +1,32 @@
|
||||
---
|
||||
type: "note"
|
||||
created: "2024-03-05T01:23:56.973Z"
|
||||
updated: "2024-03-05T01:23:56.973Z"
|
||||
---
|
||||
|
||||
# ifx-ecus-stealth-apc-users
|
||||
|
||||
## IFX-ECUS-Stealth-APCUsers
|
||||
|
||||
Group Details
|
||||
|
||||
Distinghuished Name
|
||||
CN=IFX-ECUS-Stealth-APCUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com
|
||||
Group Description
|
||||
Permission Group for MES EC Stealth Protected Resources
|
||||
Group Owner
|
||||
Limjuco Jeremy (IT OS IFC NRZ)
|
||||
Group Expiration
|
||||
n/a
|
||||
Direct Members
|
||||
164
|
||||
Notes
|
||||
Additional Owner:
|
||||
Patel Kartik
|
||||
Kim Peter (IFAM IT OS DC DB OP)
|
||||
Narayan Suhas (IFAM IT OS IFC NRZ)
|
||||
Phares Mike (IFAM IT FI MES)
|
||||
Group Type
|
||||
This group is a security group (usually this group type is used to grant access to resources, e.g. Shares).
|
||||
Category
|
||||
Security Group
|
32
ad/ifx-ecus-stealth-eaf-users.md
Normal file
32
ad/ifx-ecus-stealth-eaf-users.md
Normal file
@ -0,0 +1,32 @@
|
||||
---
|
||||
type: "note"
|
||||
created: "2024-03-05T01:23:56.974Z"
|
||||
updated: "2024-03-05T01:23:56.974Z"
|
||||
---
|
||||
|
||||
# ifx-ecus-stealth-eaf-users
|
||||
|
||||
## IFX-ECUS-Stealth-EAFUsers
|
||||
|
||||
Group Details
|
||||
|
||||
Distinghuished Name
|
||||
CN=IFX-ECUS-Stealth-EAFUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com
|
||||
Group Description
|
||||
Permission Group for MES EC Stealth Protected Resources
|
||||
Group Owner
|
||||
Limjuco Jeremy (IT OS IFC NRZ)
|
||||
Group Expiration
|
||||
n/a
|
||||
Direct Members
|
||||
164
|
||||
Notes
|
||||
Additional Owner:
|
||||
Patel Kartik
|
||||
Kim Peter (IFAM IT OS DC DB OP)
|
||||
Narayan Suhas (IFAM IT OS IFC NRZ)
|
||||
Phares Mike (IFAM IT FI MES)
|
||||
Group Type
|
||||
This group is a security group (usually this group type is used to grant access to resources, e.g. Shares).
|
||||
Category
|
||||
Security Group
|
32
ad/ifx-ecus-stealth-eda-users.md
Normal file
32
ad/ifx-ecus-stealth-eda-users.md
Normal file
@ -0,0 +1,32 @@
|
||||
---
|
||||
type: "note"
|
||||
created: "2024-03-05T01:23:56.975Z"
|
||||
updated: "2024-03-05T01:23:56.976Z"
|
||||
---
|
||||
|
||||
# ifx-ecus-stealth-eda-users
|
||||
|
||||
## IFX-ECUS-Stealth-EDAUsers
|
||||
|
||||
Group Details
|
||||
|
||||
Distinghuished Name
|
||||
CN=IFX-ECUS-Stealth-EDAUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com
|
||||
Group Description
|
||||
Permission Group for MES EC Stealth Protected Resources
|
||||
Group Owner
|
||||
Limjuco Jeremy (IT OS IFC NRZ)
|
||||
Group Expiration
|
||||
n/a
|
||||
Direct Members
|
||||
164
|
||||
Notes
|
||||
Additional Owner:
|
||||
Patel Kartik
|
||||
Kim Peter (IFAM IT OS DC DB OP)
|
||||
Narayan Suhas (IFAM IT OS IFC NRZ)
|
||||
Phares Mike (IFAM IT FI MES)
|
||||
Group Type
|
||||
This group is a security group (usually this group type is used to grant access to resources, e.g. Shares).
|
||||
Category
|
||||
Security Group
|
32
ad/ifx-ecus-stealth-fab-approval-users.md
Normal file
32
ad/ifx-ecus-stealth-fab-approval-users.md
Normal file
@ -0,0 +1,32 @@
|
||||
---
|
||||
type: "note"
|
||||
created: "2024-03-05T01:23:56.977Z"
|
||||
updated: "2024-03-05T01:23:56.977Z"
|
||||
---
|
||||
|
||||
# ifx-ecus-stealth-fab-approval-users
|
||||
|
||||
## IFX-ECUS-Stealth-FabApprovalUsers
|
||||
|
||||
Group Details
|
||||
|
||||
Distinghuished Name
|
||||
CN=IFX-ECUS-Stealth-FabApprovalUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com
|
||||
Group Description
|
||||
Permission Group for MES EC Stealth Protected Resources
|
||||
Group Owner
|
||||
Limjuco Jeremy (IT OS IFC NRZ)
|
||||
Group Expiration
|
||||
n/a
|
||||
Direct Members
|
||||
124
|
||||
Notes
|
||||
Additional Owner:
|
||||
Patel Kartik
|
||||
Kim Peter (IFAM IT OS DC DB OP)
|
||||
Narayan Suhas (IFAM IT OS IFC NRZ)
|
||||
Tucker Chase (IFAM IT FI MES)
|
||||
Group Type
|
||||
This group is a security group (usually this group type is used to grant access to resources, e.g. Shares).
|
||||
Category
|
||||
Security Group
|
32
ad/ifx-ecus-stealth-fabtime-users.md
Normal file
32
ad/ifx-ecus-stealth-fabtime-users.md
Normal file
@ -0,0 +1,32 @@
|
||||
---
|
||||
type: "note"
|
||||
created: "2024-03-05T01:23:56.979Z"
|
||||
updated: "2024-03-05T01:23:56.979Z"
|
||||
---
|
||||
|
||||
# ifx-ecus-stealth-fabtime-users
|
||||
|
||||
## IFX-ECUS-Stealth-FabtimeUsers
|
||||
|
||||
Group Details
|
||||
|
||||
Distinghuished Name
|
||||
CN=IFX-ECUS-Stealth-FabtimeUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com
|
||||
Group Description
|
||||
Permission Group for MES EC Stealth Protected Resources
|
||||
Group Owner
|
||||
Limjuco Jeremy (IT OS IFC NRZ)
|
||||
Group Expiration
|
||||
n/a
|
||||
Direct Members
|
||||
0
|
||||
Notes
|
||||
Additional Owner:
|
||||
Patel Kartik
|
||||
Kim Peter (IFAM IT OS DC DB OP)
|
||||
Narayan Suhas (IFAM IT OS IFC NRZ)
|
||||
Ouellette Jonathan (IFAM IT FI MES)
|
||||
Group Type
|
||||
This group is a security group (usually this group type is used to grant access to resources, e.g. Shares).
|
||||
Category
|
||||
Security Group
|
138
ad/ifx-ecus-stealth-iqs-users.md
Normal file
138
ad/ifx-ecus-stealth-iqs-users.md
Normal file
@ -0,0 +1,138 @@
|
||||
---
|
||||
type: "note"
|
||||
created: "2024-03-05T01:23:56.981Z"
|
||||
updated: "2024-03-05T01:23:56.981Z"
|
||||
---
|
||||
|
||||
# ifx-ecus-stealth-iqs-users
|
||||
|
||||
## IFX-ECUS-Stealth-IQSUsers
|
||||
|
||||
Group Details
|
||||
|
||||
Distinghuished Name
|
||||
CN=IFX-ECUS-Stealth-IQSUsers,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com
|
||||
Group Description
|
||||
Permission Group for MES EC Stealth Protected Resources
|
||||
Group Owner
|
||||
Limjuco Jeremy (IT OS IFC NRZ)
|
||||
Group Expiration
|
||||
n/a
|
||||
Direct Members
|
||||
164
|
||||
Notes
|
||||
Additional Owner:
|
||||
Patel Kartik
|
||||
Kim Peter (IFAM IT OS DC DB OP)
|
||||
Narayan Suhas (IFAM IT OS IFC NRZ)
|
||||
Phares Mike (IFAM IT FI MES)
|
||||
Group Type
|
||||
This group is a security group (usually this group type is used to grant access to resources, e.g. Shares).
|
||||
Category
|
||||
Security Group
|
||||
|
||||
```bash domain \ account
|
||||
infineon\amarti4
|
||||
infineon\aobukho1
|
||||
infineon\bellamy
|
||||
infineon\bmoon1
|
||||
infineon\cbecker1
|
||||
infineon\chovann1
|
||||
infineon\conway
|
||||
infineon\crik1
|
||||
infineon\deshong
|
||||
infineon\dluna1
|
||||
infineon\dsien1
|
||||
infineon\garoj
|
||||
infineon\goodwide
|
||||
infineon\goraya
|
||||
infineon\gordono
|
||||
infineon\gramire4
|
||||
infineon\henderss
|
||||
infineon\hendrica
|
||||
infineon\howarth
|
||||
infineon\hvu3
|
||||
infineon\ifxres1352c116b
|
||||
infineon\ifxres189dd5c8b
|
||||
infineon\ifxres20ef1e000
|
||||
infineon\ifxres20f3c2fe3
|
||||
infineon\ifxres2699eeb6c
|
||||
infineon\ifxres2b9350797
|
||||
infineon\ifxres3498fc0cf
|
||||
infineon\ifxres3f2288f85
|
||||
infineon\ifxres4506e0732
|
||||
infineon\ifxres46f537532
|
||||
infineon\ifxres490f3d8be
|
||||
infineon\ifxres49ea5b955
|
||||
infineon\ifxres585cd5d8e
|
||||
infineon\ifxres58c812cae
|
||||
infineon\ifxres5c1b5ed4d
|
||||
infineon\ifxres5e3584700
|
||||
infineon\ifxres65d278ff6
|
||||
infineon\ifxres698b29da6
|
||||
infineon\ifxres6c28ec3e8
|
||||
infineon\ifxres735f9a474
|
||||
infineon\ifxres748063f3a
|
||||
infineon\ifxres7800e1076
|
||||
infineon\ifxres82b759227
|
||||
infineon\ifxres88cd30657
|
||||
infineon\ifxres961e34f42
|
||||
infineon\ifxres9ef7dc15c
|
||||
infineon\ifxres9f4ee895d
|
||||
infineon\ifxresa85d02e76
|
||||
infineon\ifxresab54751bb
|
||||
infineon\ifxresc4744f893
|
||||
infineon\ifxresd38a4fc8e
|
||||
infineon\ifxresdb8e25210
|
||||
infineon\ifxrese21104f61
|
||||
infineon\ifxrese7b0e2ed6
|
||||
infineon\ifxreseab5a5c7d
|
||||
infineon\ifxresedf87e325
|
||||
infineon\ifxresfb3cddd26
|
||||
infineon\ifxresfcd7b22bd
|
||||
infineon\jaquez
|
||||
infineon\jfuente1
|
||||
infineon\jhollan2
|
||||
infineon\jmcinty2
|
||||
infineon\jsperli1
|
||||
infineon\kclark1
|
||||
infineon\kdeshon1
|
||||
infineon\kirkland
|
||||
infineon\knewger1
|
||||
infineon\lawrence
|
||||
infineon\lopesanthony
|
||||
infineon\marroquinbra
|
||||
infineon\marstein
|
||||
infineon\mcchesne
|
||||
infineon\mcouste1
|
||||
infineon\millard
|
||||
infineon\mjarsey1
|
||||
infineon\mtangen1
|
||||
infineon\mvalenc3
|
||||
infineon\mwalsh1
|
||||
infineon\nclark1
|
||||
infineon\olmstead
|
||||
infineon\otero
|
||||
infineon\otooled
|
||||
infineon\ouellette
|
||||
infineon\palmeria
|
||||
infineon\peirce
|
||||
infineon\phares
|
||||
infineon\phaukap1
|
||||
infineon\rblunt1
|
||||
infineon\rbraini1
|
||||
infineon\rinesmith
|
||||
infineon\rubina
|
||||
infineon\smiller2
|
||||
infineon\swoodya1
|
||||
infineon\taustin1
|
||||
infineon\tcarrie1
|
||||
infineon\tkhokha1
|
||||
infineon\tmunoz1
|
||||
infineon\tnguyen6
|
||||
infineon\torreand
|
||||
infineon\ttaylor1
|
||||
infineon\vstucke1
|
||||
infineon\wampler
|
||||
infineon\wwest1
|
||||
```
|
227
ad/ifx-ecus-stealth-mes-fileshare-user.md
Normal file
227
ad/ifx-ecus-stealth-mes-fileshare-user.md
Normal file
@ -0,0 +1,227 @@
|
||||
---
|
||||
type: "note"
|
||||
created: "2024-01-14T02:17:43.863Z"
|
||||
updated: "2024-02-13T15:20:33.605Z"
|
||||
---
|
||||
|
||||
# IFX-ECUS-Stealth-MES-FileshareUser
|
||||
|
||||
Group Details
|
||||
|
||||
Distinghuished Name
|
||||
CN=IFX-ECUS-Stealth-MES-FileshareUser,OU=RestrictedZones,OU=IFX-Groups,DC=infineon,DC=com
|
||||
Group Description
|
||||
Permission Group for MES EC Stealth Protected FileShares
|
||||
Group Owner
|
||||
Limjuco Jeremy (IT OS IFC NRZ)
|
||||
Group Expiration
|
||||
n/a
|
||||
Direct Members
|
||||
183
|
||||
Notes
|
||||
Additional Owner:
|
||||
Hackett Joseph (IFAM IT OS WP AM)
|
||||
Patel Kartik
|
||||
Kim Peter (IFAM IT OS DC DB OP)
|
||||
Narayan Suhas (IFAM IT OS IFC NRZ)
|
||||
Group Type
|
||||
This group is a security group (usually this group type is used to grant access to resources, e.g. Shares).
|
||||
Category
|
||||
Security Group
|
||||
|
||||
```bash domain \ account
|
||||
infineon\amarti4
|
||||
infineon\asasfehr
|
||||
infineon\ayalaborst
|
||||
infineon\bardogrey
|
||||
infineon\bautistaguil
|
||||
infineon\bellamy
|
||||
infineon\benally
|
||||
infineon\bergb
|
||||
infineon\bmoon1
|
||||
infineon\boblettb
|
||||
infineon\brownk
|
||||
infineon\btougas1
|
||||
infineon\calvertk
|
||||
infineon\canche
|
||||
infineon\cardenasreni
|
||||
infineon\cardenasshil
|
||||
infineon\carneys
|
||||
infineon\cbecker1
|
||||
infineon\chavira
|
||||
infineon\cheneycarly
|
||||
infineon\choijoh
|
||||
infineon\chowb
|
||||
infineon\coler
|
||||
infineon\conway
|
||||
infineon\cozat
|
||||
infineon\crik1
|
||||
infineon\curl
|
||||
infineon\dacres
|
||||
infineon\davidsontrey
|
||||
infineon\delereekevin
|
||||
infineon\dluna1
|
||||
infineon\dsien1
|
||||
infineon\ecapcsvc
|
||||
infineon\eccleanroom
|
||||
infineon\ecedasvc
|
||||
infineon\ecfisysadmin
|
||||
infineon\ecfisysadminsvc
|
||||
infineon\ecmescepeafsvc
|
||||
infineon\ecmeseaf
|
||||
infineon\ecreactorrecipes
|
||||
infineon\ecreportservicesadmin
|
||||
infineon\ecyodasvc
|
||||
infineon\ejones1
|
||||
infineon\elsbury
|
||||
infineon\fitial
|
||||
infineon\garoj
|
||||
infineon\gaudino
|
||||
infineon\gonzalesrobe
|
||||
infineon\goodwide
|
||||
infineon\gordono
|
||||
infineon\gramire4
|
||||
infineon\hardyrichard
|
||||
infineon\hart
|
||||
infineon\henderss
|
||||
infineon\hendrica
|
||||
infineon\hopkins
|
||||
infineon\hopkinssavyo
|
||||
infineon\hopperd
|
||||
infineon\howarth
|
||||
infineon\howellleslie
|
||||
infineon\hvu3
|
||||
infineon\ifxmeseppiapps01
|
||||
infineon\ifxmeseppiapps02
|
||||
infineon\ifxmeseppiapps03
|
||||
infineon\ifxmeseppiapps04
|
||||
infineon\ifxmesiappslead01
|
||||
infineon\ifxmespackiapps01
|
||||
infineon\ifxmespackiapps02
|
||||
infineon\ifxres189dd5c8b
|
||||
infineon\ifxres20ef1e000
|
||||
infineon\ifxres20f3c2fe3
|
||||
infineon\ifxres2699eeb6c
|
||||
infineon\ifxres2b9350797
|
||||
infineon\ifxres2dc9530f2
|
||||
infineon\ifxres3f2288f85
|
||||
infineon\ifxres4506e0732
|
||||
infineon\ifxres490f3d8be
|
||||
infineon\ifxres49ea5b955
|
||||
infineon\ifxres585cd5d8e
|
||||
infineon\ifxres58c812cae
|
||||
infineon\ifxres5c1b5ed4d
|
||||
infineon\ifxres5e3584700
|
||||
infineon\ifxres65d278ff6
|
||||
infineon\ifxres698b29da6
|
||||
infineon\ifxres6c28ec3e8
|
||||
infineon\ifxres735f9a474
|
||||
infineon\ifxres748063f3a
|
||||
infineon\ifxres82b759227
|
||||
infineon\ifxres88cd30657
|
||||
infineon\ifxres961e34f42
|
||||
infineon\ifxres9ef7dc15c
|
||||
infineon\ifxres9f4ee895d
|
||||
infineon\ifxresab54751bb
|
||||
infineon\ifxresc4744f893
|
||||
infineon\ifxresd38a4fc8e
|
||||
infineon\ifxresd8b6c1414
|
||||
infineon\ifxrese21104f61
|
||||
infineon\ifxrese7b0e2ed6
|
||||
infineon\ifxreseab5a5c7d
|
||||
infineon\ifxresedf87e325
|
||||
infineon\ifxresfb3cddd26
|
||||
infineon\ifxresfb8e81a3f
|
||||
infineon\ifxresfcd7b22bd
|
||||
infineon\ingramcarina
|
||||
infineon\jaquez
|
||||
infineon\jdocker1
|
||||
infineon\jfuente1
|
||||
infineon\jhacket1
|
||||
infineon\jhollan2
|
||||
infineon\jmcinty2
|
||||
infineon\jonesj
|
||||
infineon\joness
|
||||
infineon\jsperli1
|
||||
infineon\kclark1
|
||||
infineon\kdeshon1
|
||||
infineon\kirkland
|
||||
infineon\knewger1
|
||||
infineon\kpatel1
|
||||
infineon\ksmith3
|
||||
infineon\lawrence
|
||||
infineon\lehrich
|
||||
infineon\leibeh
|
||||
infineon\liow
|
||||
infineon\lopesanthony
|
||||
infineon\louie
|
||||
infineon\marroquinbra
|
||||
infineon\marstein
|
||||
infineon\martindonald
|
||||
infineon\mcchesne
|
||||
infineon\mcouste1
|
||||
infineon\mendozagiuli
|
||||
infineon\mesfacilities1
|
||||
infineon\mesmitchem
|
||||
infineon\mesouellette
|
||||
infineon\mespkim1
|
||||
infineon\millard
|
||||
infineon\mitchem
|
||||
infineon\moreland
|
||||
infineon\mtangen1
|
||||
infineon\murstieberd
|
||||
infineon\mvalenc3
|
||||
infineon\mwalsh1
|
||||
infineon\nagelcor
|
||||
infineon\nclark1
|
||||
infineon\olmstead
|
||||
infineon\origele
|
||||
infineon\otero
|
||||
infineon\otooled
|
||||
infineon\ouellette
|
||||
infineon\palmeria
|
||||
infineon\peirce
|
||||
infineon\petersalicia
|
||||
infineon\phares
|
||||
infineon\phaukap1
|
||||
infineon\pkim1
|
||||
infineon\pnair2
|
||||
infineon\quinones
|
||||
infineon\rblunt1
|
||||
infineon\rbraini1
|
||||
infineon\rbuaben1
|
||||
infineon\rinesmith
|
||||
infineon\riveraa
|
||||
infineon\rosalesappal
|
||||
infineon\rubina
|
||||
infineon\sburboz1
|
||||
infineon\seschen1
|
||||
infineon\siers
|
||||
infineon\singleton
|
||||
infineon\smiller2
|
||||
infineon\snaraya1
|
||||
infineon\sopin
|
||||
infineon\spalos1
|
||||
infineon\stieberd
|
||||
infineon\swoodya1
|
||||
infineon\swyers
|
||||
infineon\taustin1
|
||||
infineon\tcarrie1
|
||||
infineon\tcheney1
|
||||
infineon\teobo
|
||||
infineon\tkhokha1
|
||||
infineon\tmunoz1
|
||||
infineon\tnguyen6
|
||||
infineon\torreand
|
||||
infineon\tuckerc
|
||||
infineon\unterwfl
|
||||
infineon\uribejua
|
||||
infineon\vstucke1
|
||||
infineon\vuthomasviet
|
||||
infineon\wampler
|
||||
infineon\wmontja1
|
||||
infineon\wwest1
|
||||
infineon\yazzie
|
||||
infineon\zacchini
|
||||
na\mescleanroom
|
||||
```
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user