Add SID change script + Dell server tools installer#66
Open
Gumbees wants to merge 3 commits into
Open
Conversation
- Created oem-dell category for Dell-specific OEM tools - Install-DellServerTools.ps1 detects Dell hardware and server type - Checks for missing tools before downloading (OMSA, iSM, DSU) - Uses BITS transfer with HTTP fallback for reliability - Handles extractor-type installers (OMSA, iSM) and direct installers (DSU) - Follows MSP script library conventions (RMM support, logging, camelCase) - Uses corrected paths for iDRAC Service Module extraction and installation 🤖 Generated with [Claude Code](https://claude.com/claude-code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
Created msft-windows-change-sid.ps1 to change computer SID using sidchg.exe utility. Script only changes the SID without modifying computer name, description, or other settings. Features: - Dual execution mode (interactive and RMM) - Administrative privilege verification - Path validation for sidchg.exe - Current SID logging before change - Interactive confirmation prompt with warnings - Full transcript logging for audit trail 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Updated msft-windows-change-sid.ps1 to always auto-download sidchg64 from DTC Inc B2 bucket. Removed menu options for simpler execution. Changes: - Auto-downloads sidchg64-3.0n.exe from public B2 bucket every time - Removed custom path option for simplicity - Downloads to %WINDIR%\temp\sidchg64.exe - Works in both interactive and RMM modes 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
There was a problem hiding this comment.
Code review is billed via overage credits. To resume reviews, an organization admin can raise the monthly limit at claude.ai/admin-settings/claude-code.
Once credits are available, push a new commit or reopen this pull request to trigger a review.
6 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a Windows SID change script using the
sidchgutility (with automatic B2 download of the binary) and a standalone Dell server tools installation script for RMM deployment.Files touched:
msft-windows/msft-windows-change-sid.ps1... SID change viasidchgwith auto B2 downloadoem-dell/Install-DellServerTools.ps1... standalone Dell server tools installerTest plan
msft-windows-change-sid.ps1on a test Windows endpoint and confirm the new SID is applied (verify withwhoami /userafter reboot).sidchgbinary correctly when not already present.Install-DellServerTools.ps1on a Dell server and confirm OpenManage / Dell server tools install silently.Install-DellServerTools.ps1on a non-Dell host and confirm graceful exit.Lineage
Renamed from
feature/sidchg-sid-changetoenhancement/sidchg-sid-changeper CLAUDE.md change taxonomy. Part of the stale-branch reconciliation sweep.