Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
b44d0d3
vale dale ppe 11.2
jth-nw Aug 24, 2026
9364e9b
fix(vale): auto-fix style issues (Vale + Dale)
github-actions[bot] Aug 24, 2026
55b8d46
vale-dale aa
jth-nw Aug 24, 2026
60c5224
Merge origin/dev, resolve wording conflicts in set-up-source-group.md
jth-nw Aug 24, 2026
07a4410
Merge branch 'dev' into chore/vale-dale-remaining-docs
jth-nw Aug 24, 2026
bb5fd85
fix: preserve underscores in anchor slugs, restore broken anchor links
jth-nw Aug 24, 2026
293947a
fix: preserve underscores in vale-autofix.sh anchor slugify
jth-nw Aug 24, 2026
8e6de13
fix(scripts): correct word-overlap scoring, dedupe slugify, wire up t…
jth-nw Aug 24, 2026
14733af
fix(scripts): trim trailing whitespace/ATX close in slugify, dedupe w…
jth-nw Aug 25, 2026
f5fac69
fix(ci): trigger test:scripts on script changes, wire up orphaned tes…
jth-nw Aug 25, 2026
8761801
Merge remote-tracking branch 'origin/dev' into chore/vale-dale-remain…
jth-nw Aug 25, 2026
560c464
Merge branch 'dev' into chore/vale-dale-remaining-docs
jth-nw Aug 25, 2026
7c6fef9
dataclassification 5.7, 5.6.2, directorymanager 11.1
jth-nw Aug 26, 2026
5adf8f2
Merge branch 'dev' into chore/vale-dale-remaining-docs
jth-nw Aug 26, 2026
4d8fb48
Skip vale-autofix on fork and Dependabot PRs
jth-nw Aug 26, 2026
42151f8
Fix silent pipeline skip on large PRs in vale-autofix
jth-nw Aug 26, 2026
5512f75
Decouple script tests from the vale-autofix job
jth-nw Aug 26, 2026
800d355
fix(vale): auto-fix style issues (Vale + Dale)
github-actions[bot] Aug 26, 2026
22afb00
Merge branch 'dev' into chore/vale-dale-remaining-docs
jth-nw Aug 26, 2026
20dbb00
Merge branch 'dev' into chore/vale-dale-remaining-docs
jth-nw Aug 26, 2026
431c7a6
Gate vale-autofix on test-scripts passing
jth-nw Aug 26, 2026
2d2de9b
Pin test-scripts checkout to head sha; stop swallowing git diff failures
jth-nw Aug 26, 2026
77bbd7d
Merge branch 'dev' into chore/vale-dale-remaining-docs
jth-nw Aug 26, 2026
1e09998
fix(vale): auto-fix style issues (Vale + Dale)
github-actions[bot] Aug 26, 2026
72aaf30
vale-dale changetracker
jth-nw Aug 27, 2026
e2a4834
fix(vale): auto-fix Vale + Dale style issues in auditor/10.9
jth-nw Aug 27, 2026
a1dbebc
fix(vale): auto-fix Vale + Dale style issues in auditor/10.8
jth-nw Aug 27, 2026
a2125a1
fix(vale): auto-fix Vale + Dale style issues in auditor/10.7
jth-nw Aug 27, 2026
e3a3871
fix(vale): auto-fix Vale + Dale style issues in activitymonitor/10.0
jth-nw Aug 27, 2026
37f1c8c
fix(vale): auto-fix Vale + Dale style issues in activitymonitor/9.0
jth-nw Aug 27, 2026
7033876
fix(vale): auto-fix Vale + Dale style issues in activitymonitor/8.0
jth-nw Aug 27, 2026
4d52701
fix(vale): auto-fix Vale + Dale style issues in activitymonitor/7.1
jth-nw Aug 27, 2026
a0c529d
fix(vale): auto-fix Vale + Dale style issues in endpointprotector
jth-nw Aug 28, 2026
616888a
fix(vale): auto-fix Vale + Dale style issues in identitymanager/7.0
jth-nw Aug 28, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
37 changes: 33 additions & 4 deletions .github/workflows/vale-autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,43 @@ on:
- '!docs/**/CLAUDE.md'
- '!docs/**/SKILL.md'
- '!docs/kb/**'
- 'scripts/**'
- 'package.json'

concurrency:
group: vale-autofix-${{ github.event.pull_request.number }}

jobs:
test-scripts:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0

- name: Check if scripts changed
id: scripts-changed
run: |
CHANGED=$(git diff --name-only origin/dev...HEAD -- scripts/ package.json)
if [ -z "$CHANGED" ]; then
echo "changed=false" >> "$GITHUB_OUTPUT"
else
echo "changed=true" >> "$GITHUB_OUTPUT"
fi

- name: Test anchor/slugify scripts
if: steps.scripts-changed.outputs.changed == 'true'
run: npm run test:scripts

vale-autofix:
needs: test-scripts
if: >-
github.event.pull_request.head.repo.fork == false &&
github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
permissions:
contents: write
Expand Down Expand Up @@ -60,11 +91,9 @@ jobs:
- name: Get changed markdown files
id: changed-files
if: steps.bot-check.outputs.skip != 'true'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
PR_NUMBER=${{ github.event.pull_request.number }}
CHANGED_MD_FILES=$(gh pr diff "$PR_NUMBER" --name-only | grep -E '^docs/.*\.md$' | grep -v '/CLAUDE\.md$' | grep -v '/SKILL\.md$' | grep -v '^docs/kb/' || true)
DIFF_OUTPUT=$(git diff --name-only origin/dev...HEAD -- docs/)
CHANGED_MD_FILES=$(printf '%s\n' "$DIFF_OUTPUT" | grep -E '^docs/.*\.md$' | grep -v '/CLAUDE\.md$' | grep -v '/SKILL\.md$' | grep -v '^docs/kb/' || true)
if [ -z "$CHANGED_MD_FILES" ]; then
echo "No docs markdown files changed"
echo "count=0" >> "$GITHUB_OUTPUT"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ Use the Computers Details page to select computer attributes to change.

Highlight the attribute to edit:

- Insert field – Use the drop-down list to select a field (column) from the source table. Then click
- Insert field – Use the dropdown list to select a field (column) from the source table. Then click
the blue arrow to insert the item into the Value box. The executed action replaces the AD Object
property with the specified value from the source table.
- Add Attribute – Adds a custom attribute to the Computer Details attribute list
- Remove Attribute – Removes a selected attribute Computer Details attribute list
- Edit Attribute – Click this icon to change the name of the selected custom attribute
- Import Attribute – Opens the Import Custom Attributes Import Wizard where one or more custom
attributes can be imported. See the
- Import Attribute – Opens the Import Custom Attributes Import Wizard, where you can import one or
more custom attributes. See the
[Custom Attribute Import Wizard](#custom-attribute-import-wizard) topic for additional
information.
- Value – This field contains selections from the Insert field. If the Manager attribute is
Expand All @@ -30,16 +30,15 @@ Highlight the attribute to edit:

## Custom Attribute Import Wizard

The Custom Attributes Import Wizard is used to import a list of custom attributes. Follow the steps
to use the Custom Attributes Import Wizard.
Use the Custom Attributes Import Wizard to import a list of custom attributes.

**Step 1 –** On the Computer Details page of the Active Directory Action Module Wizard, click
**Import**. The Custom Attribute Import Wizard opens.

![Custom Attributes Import Wizard Credentials page](/images/accessanalyzer/11.6/admin/action/activedirectory/operations/credentials.webp)

**Step 2 –** On the Credentials page, identify a domain either by entering one manually or selecting
one from the **Domain Name** drop-down menu which displays a list of domains trusted by the one in
one from the **Domain Name** dropdown menu which displays a list of domains trusted by the one in
which the Enterprise Auditor Console server resides. Then set the credentials for reading the
attributes list from the domain:

Expand All @@ -52,11 +51,11 @@ attributes list from the domain:
![Custom Attributes Import Wizard Attributes page](/images/accessanalyzer/11.6/admin/action/activedirectory/operations/attributescomputer.webp)

**Step 4 –** The wizard populates available attributes from the domain specified on the Attributes
page. Expand the desired object class and select the checkboxes for the custom attributes to be
page. Expand the object class you want and select the checkboxes for the custom attributes to be
imported. Then click **Next**.

![Custom Attributes Import Wizard Completion page](/images/accessanalyzer/11.6/admin/action/activedirectory/operations/completionpage.webp)

**Step 5 –** On the Completion page, click **Finish**.

The selected attributes have been added to the attribute list on the Computer Details page.
The wizard adds the selected attributes to the attribute list on the Computer Details page.
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ Use the Create Groups page to configure the action to create groups on the selec

Use the following options to configure the action:

- Insert field – Use the drop-down list to select a field (column) from the source table. Then,
- Insert field – Use the dropdown list to select a field (column) from the source table. Then,
click the blue arrow to insert the item into the OU, Group name, or Group name (pre Windows 2000)
boxes.
- OU – The organizational unit that contains the group

- Create target OU location if it does not already exist – Select this checkbox to create the
- Create target OU location if it doesn't already exist – Select this checkbox to create the
target OU

- Group Name – The name of the group that being created. This field is required.
Expand All @@ -27,10 +27,10 @@ Use the following options to configure the action:
- Universal
- Global
- DomainLocal
- SqlField – Enter a value from the drop-down list
- SqlField – Enter a value from the dropdown list

- Group type – The type of group being created. Select from the following:

- Security
- Distribution
- SqlField – Enter a value from the drop-down list
- SqlField – Enter a value from the dropdown list
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ Use the Create Users page to create users on the selected target.

Use the following options to configure the action:

- Insert field – Use the drop-down list to select a field (column) from the source table. Then,
- Insert field – Use the dropdown list to select a field (column) from the source table. Then,
click the blue arrow to insert the item into the selected box.
- OU – The organizational unit in which to create the user

- Create target OU location if it does not already exist - Select this checkbox to create the
- Create target OU location if it doesn't already exist - Select this checkbox to create the
target OU.

- First Name – The first name of the user being created
Expand All @@ -31,6 +31,6 @@ Optionally, select from the following checkboxes:

- User must change password at next logon – Require the user to change the password at the next
logon
- User cannot change password
- User can't change password
- Password never expires
- Account is disabled
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ options on target computers.

![Active Directory Action Module Wizard Disable/Enable Computers page](/images/accessanalyzer/11.6/admin/action/activedirectory/operations/disableenablecomputers.webp)

Select the radio button for the desired option:
Select the radio button for the option you want:

- Enable – Enables users' operation options
- Disable – Disables users' operation options
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Use the Disable/Enable Users page to enable or disable target users.

![Active Directory Action Module Wizard Disable/Enable Users page](/images/accessanalyzer/11.6/admin/action/activedirectory/operations/disableenableusers.webp)

Select the radio button for the desired option:
Select the radio button for the option you want:

- Disable – Select this radio button to disable users' operation options
- Enable – Select this radio button to enable users' operation options
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ The options at the bottom of the page vary based on the highlighted attribute.
:::


- Insert field – Use the drop-down list to select a field (column) from the source table. Then,
- Insert field – Use the dropdown list to select a field (column) from the source table. Then,
click the blue arrow to insert the item into the Value box.
- Add Attribute – Adds a custom attribute to the Computer Details attribute list
- Remove Attribute – Removes a selected attribute from the action
- Edit Attribute – Click this icon to change the name of the selected custom attribute
- Import Attribute – Opens the Import Custom Attributes Import Wizard where current attributes for
an object is viewed and can be imported for editing. See the
- Import Attribute – Opens the Import Custom Attributes Import Wizard, where you can view an
object's current attributes and import them for editing. See the
[Custom Attribute Import Wizard](#custom-attribute-import-wizard) topic for additional
information.
- Value/Name – This field derives its name from selections made on the page. It can contain
Expand All @@ -36,16 +36,15 @@ the action.

## Custom Attribute Import Wizard

The Custom Attributes Import Wizard is used to import a list of custom attributes. Follow the steps
to use the Custom Attributes Import Wizard.
Use the Custom Attributes Import Wizard to import a list of custom attributes.

**Step 1 –** On the Group Details page of the Active Directory Action Module Wizard, click
**Import**. The Custom Attribute Import Wizard opens.

![Custom Attributes Import Wizard Credentials page](/images/accessanalyzer/11.6/admin/action/activedirectory/operations/credentials.webp)

**Step 2 –** On the Credentials page, identify a domain either by entering one manually or selecting
one from the **Domain Name** drop-down menu which displays a list of domains trusted by the one in
one from the **Domain Name** dropdown menu which displays a list of domains trusted by the one in
which the Enterprise Auditor Console server resides. Then set the credentials for reading the
attributes list from the domain:

Expand All @@ -58,11 +57,11 @@ attributes list from the domain:
![Custom Attributes Import Wizard Attributes page](/images/accessanalyzer/11.6/admin/action/activedirectory/operations/attributesgroup.webp)

**Step 4 –** The wizard populates available attributes from the domain specified on the Attributes
page. Expand the desired object class and select the checkboxes for the custom attributes to be
page. Expand the object class you want and select the checkboxes for the custom attributes to be
imported. Then click **Next**.

![Custom Attributes Import Wizard Completion page](/images/accessanalyzer/11.6/admin/action/activedirectory/operations/completionpage.webp)

**Step 5 –** On the Completion page, click **Finish**. On the Completion page, click **Finish**.
**Step 5 –** On the Completion page, click **Finish**.

The selected attributes have been added to the attribute list on the Group Details page.
The wizard adds the selected attributes to the attribute list on the Group Details page.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ be used to specify if the object will be added or removed.

Use the following options to configure the action:

- Insert field – Use the drop-down list to select a field (column) from the source table. Then,
- Insert field – Use the dropdown list to select a field (column) from the source table. Then,
click the blue arrow to insert the item into the selected box.
- Select one of the following:

Expand All @@ -22,18 +22,18 @@ Use the following options to configure the action:

- OU – The organizational unit that contains the group. This field is required.

- Create target OU location if it does not already exist – Select this checkbox to create the
- Create target OU location if it doesn't already exist – Select this checkbox to create the
target OU.

- Group (CN, not a pre-Windows 2000 name) – The group to create. This field is required.

- Create target Group if it does not already exist
- Create target Group if it doesn't already exist

- Select one of the following:

- Add members
- Remove members
- Add/Remove members – Enables the ChangeType Column drop down list
- Add/Remove members – Enables the ChangeType Column dropdown list

- ChangeType Column – The value to use from the source table to specify if the object is added or
removed. The contents of the ChangeType column should be a 0 for Add or a 1 for Remove.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Use the Move Objects page to specify the OU in which to move objects.
Use the following options to configure the action:

- Insert Field – Contains available values from populated from the source table
- OU – Use the drop-down list to select a field (column) from the source table. Then, click the blue
- OU – Use the dropdown list to select a field (column) from the source table. Then, click the blue
arrow to insert the item into the OU box.

- Create target OU location if it does not already exist – Select this checkbox to create the
- Create target OU location if it doesn't already exist – Select this checkbox to create the
target OU
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Active Directory objects. Some operations have wizard pages to specify the confi

![Active Directory Action Module Wizard Operations page](/images/accessanalyzer/11.6/admin/action/activedirectory/operations.webp)

The Operations drop-down menu contains the following operations:
The Operations dropdown menu contains the following operations:

- [Clear/Set SID History ](/docs/accessanalyzer/11.6/admin/action/activedirectory/operations/sidhistory.md)
- [Computer Details](/docs/accessanalyzer/11.6/admin/action/activedirectory/operations/computerdetails.md)
Expand All @@ -28,28 +28,28 @@ The Operations drop-down menu contains the following operations:
- [Unlock Users ](#unlock-users)
- [Users Details ](/docs/accessanalyzer/11.6/admin/action/activedirectory/operations/usersdetails.md)

Select an operation from the drop-down list and then click **Add**. The selection appears in the
Select an operation from the dropdown list and then click **Add**. The selection appears in the
Selections pane as well as the navigation pane if there is an associated configuration page. If
performing multiple operations, the action executes the operations in the order in which they appear
here. To change the order, select an operation and use the **Down** and **Up** buttons.

## Delete Objects

:::warning
Once deleted, objects from Active Directory cannot be restored.
Once deleted, objects from Active Directory can't be restored.
:::


Select this operation to delete objects from Active Directory, such as users, groups, or computers.
The source table determines which objects are deleted from the Active Directory. Therefore, this
operation does not possess its own wizard window.
The source table determines which objects the action deletes from Active Directory. This operation
doesn't have its own wizard window.

## Groups Remove All Members

Select this operation to remove all members from groups located in the source table. There is not a
wizard window associated with this operation. No configuration is required.
Select this operation to remove all members from groups located in the source table. This operation
doesn't have an associated wizard window and requires no configuration.

## Unlock Users

Select this operation to unlock the account of the specified users in the source table. There is not
a wizard window associated with this operation. No configuration is required.
Select this operation to unlock the account of the specified users in the source table. This
operation doesn't have an associated wizard window and requires no configuration.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Use the Set/Reset Users Password page to set or reset user passwords with the sp

Use the following options to configure the action:

- Insert field – Use the drop-down list to select a field (column) from the source table. Then,
- Insert field – Use the dropdown list to select a field (column) from the source table. Then,
click the blue arrow to insert the item into the Password box.
- Password – The field with the passwords to set or reset. This field is required.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ sidebar_position: 10
# Clear/Set SID History

Use the Clear/Set SID History page to overwrite or append to the SID history for targeted objects.
Please review the restrictions for this operation in the Notes box.
review the restrictions for this operation in the Notes box.

The source table used for this operation must contain a column with the following information:

Expand All @@ -20,15 +20,15 @@ Configure the action with the following options:
- Overwrite – Overwrites the SID History
- Append – Adds to the SID History
- Clear – Clears the SID History
- Insert Field – This drop-down list is enabled when the Overwrite or Append radio buttons are
selected. Use the drop-down list to select a field (column) from the source table. Then, click the
blue arrow to insert the item into the SID History box. The SID history is overwritten with the
selected fields or appended to with the selected fields depending on the selected radio button.
- SID History – This box is enabled by selecting the Overwrite or Append radio buttons. The SID
history is overwritten or appended to with the inserted fields, depending on the selected radio
button. Populate the SID History box using either of the following methods:

- Select one or more fields at the Insert Field drop-down menu
- Insert Field – Selecting the Overwrite or Append radio button enables this dropdown list. Use the
dropdown list to select a field (column) from the source table. Then, click the blue arrow to
insert the item into the SID History box. Depending on which radio button you select, the action
overwrites the SID history with the selected fields or appends the selected fields to it.
- SID History – Selecting the Overwrite or Append radio button enables this box. Depending on which
radio button you select, the action overwrites the SID history with the inserted fields or appends
the inserted fields to it. Populate the SID History box using either of the following methods:

- Select one or more fields at the Insert Field dropdown menu
- Click the **ellipsis (…)** to access the Select Users or Groups window to populate this field

- Reference link – Accesses a Microsoft web page called Using DsAddSidHistory containing important
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@ sidebar_position: 30

# Active Directory Action Options

The Options page provides the option to select to use the default domain or specific a domain to
use.
Use the Options page to select the default domain or specify a domain to use.

![Active Directory Action Module Wizard Options page](/images/accessanalyzer/11.6/admin/action/activedirectory/options.webp)

Use the following options to configure the action:

- Insert field – Use the drop-down list to select a field (column) from the source table. Then,
- Insert field – Use the dropdown list to select a field (column) from the source table. Then,
click the blue arrow to insert the item into the **Specify domain (controller) to use** box.
- Use default domain (controller) – Use the default domain controller for the action
- Specify domain (controller) to use – Click the ellipsis to open the Browse for Domain window and
Expand Down
Loading
Loading