just to make sure it have all files or no one modify it, kind of i can remove few exe file, and use only PS1 files instead so, technically i can ignore this list (cmdow for example, i can use PS1 script, too, and it does use it)
is their their windows 11 activator? Can you add that so its one tool to active both windows and office?
I think there is already all the activators needed within OfficeRTool. I'm glad ohook has been included as OfficeRTool has now become a great beast with a very cool Interface. Ratzlefatz would be very proud.
Also added manual scripts, If you don't like menus Rtool Ohook script for x64 system, With window 10-11 Other wise use mass ohook standalone script The ps1 script will probably work for most 90¢ of computers
ok, done, build an auto script to upload new version to remote server have to break few function,and now everything is restored. also, will change main thread new version
As usual, fantastic work Dark Vador - much appreciated there might be an issue with the code. If I am running it directly from PowerShell, I get "Invoke-WebRequest: Parameter cannot be processed because the parameter name 'Ma' is ambiguous. Possible matches include: -MaximumRedirection -MaximumRetryCount." The older scripts used to work without issues. Thank you again for your work!
what powershell version you have ? cause i have only ---> -MaximumRedirection in your case, change MA --> MaximumRedirection
All I get on my Win 11 24H2 installation is a BAT:Trojan warning and instant deletion for your script, so of course I made it an exclusion zone and could run it. I have tried online installs of 2019, 2021 and 2024 and downloaded offline installs and they all come up with a 365 thing:
# Microsoft Something went wrong Sorry, installation can't continue because no compatible Office products are detected. Go online for additional help Error Code: 30053-44
Any idea? I have the old Office RTools running fine on 2 of my computers to this day with KMS and automatically resetting weekly. This is a new install Win 11 Pro (legit) on a laptop.
This is too confusing. On the 1st page you share a .rar with a complete different SHA1 hash and on the 121th page you share a .zip with a SHA256 hash. There is absolutely no logic. Either in the filename, either in the archive compression format, either in the hash format. Both files (.rar and .zip) are flagged with Trojan by Defender. And the speedtest.exe + wget.exe from /bin are deleted as well by Defender. I taught you some years ago how to modify your file signatures and certificates to avoid Antivirus detection. MAS do that regularly.
Or you excluded the folder before use Or don't use it I use upx to compress all files Check me, I ain't liar And I don't care about hash match or not No one care , only you I used upx ui to compress all folder to 16mb Instead of 40mb, each update, 40x? It's waste of bandwidth I don't obligated to explain it every time Or you agree with my decisions Or stop using it Also upx is a great packer, too bad people use it for bad intres' before And now every stupid a/v complain I don't use a/v because of that
uPDATE Version. major update for ohook activation all my volume keys was MAK key's and i notice it only today well, fixed.
Script to unlock all office features Code: # Ultimate Office 365 Full Feature & AI Unlock Script # ---------------------------------------------------- # WARNING: This script enables extensive internal, hidden, and AI features. # Use ONLY in controlled test environments. # Back up your registry before running. # Some features require Insider builds, proper licenses, and backend service access. $basePath = "HKCU:\Software\Microsoft\Office\16.0\Common\ExperimentConfigs\ExternalFeatureOverrides" function Set-RegValue { param( [string]$Path, [string]$Name, [ValidateSet("DWORD","String")]$Type, $Value ) if (-not (Test-Path $Path)) { # Create key if missing New-Item -Path $Path -Force | Out-Null } # Set the registry value New-ItemProperty -Path $Path -Name $Name -PropertyType $Type -Value $Value -Force | Out-Null } Write-Host "Starting Ultimate Office 365 Feature Unlock Script..." # ======================== # Common (Global) Flags # ======================== $commonPath = "$basePath\common" $commonFlags = @{ # UI and Visual Enhancements "Microsoft.Office.UXPlatform.FluentSVRefresh" = "String:true" # Enable modern Fluent UI refresh "Microsoft.Office.UXPlatform.RibbonTouchOptimization"= "String:true" # Optimize ribbon for touch input "Microsoft.Office.UXPlatform.FluentSVRibbonOptionsMenu"="String:true" # New ribbon options menu UI "Microsoft.Office.UXPlatform.ColorfulRibbon" = "String:true" # Enable colorful ribbon theme "Microsoft.Office.FeatureFlags.RibbonSimplification" = "DWORD:1" # Simplified ribbon interface "Microsoft.Office.FeatureFlags.FocusMode" = "DWORD:1" # Enable distraction-free focus mode "Microsoft.Office.FeatureFlags.NewHelpPane" = "DWORD:1" # New integrated help pane # Account & Cloud Integration "Microsoft.Office.FeatureFlags.NewAccountManager" = "DWORD:1" # New account manager UI experience "Microsoft.Office.FeatureFlags.CloudIntegration" = "DWORD:1" # Enhanced cloud service integration "Microsoft.Office.FeatureFlags.SyncEngineV2" = "DWORD:1" # Improved cloud sync engine # Performance & Reliability "Microsoft.Office.FeatureFlags.ExperimentalPerformance"= "DWORD:1" # Enable experimental performance optimizations "Microsoft.Office.FeatureFlags.ExperimentalCrashRecovery"="DWORD:1" # Enable improved crash recovery # Collaboration & Co-Authoring "Microsoft.Office.FeatureFlags.CollaborationFeatures" = "DWORD:1" # Enable global collaboration features "Microsoft.Office.FeatureFlags.LiveCollaboration" = "DWORD:1" # Enable real-time collaboration # AI & Copilot Features - Unlock all core and advanced AI functionality "Microsoft.Office.FeatureFlags.CopilotCore" = "DWORD:1" # Core Copilot AI framework "Microsoft.Office.FeatureFlags.CopilotWriting" = "DWORD:1" # Copilot writing assistant "Microsoft.Office.FeatureFlags.CopilotDataAnalysis" = "DWORD:1" # Copilot data analysis in Excel "Microsoft.Office.FeatureFlags.CopilotPresentation" = "DWORD:1" # Copilot features in PowerPoint "Microsoft.Office.FeatureFlags.CopilotChat" = "DWORD:1" # Conversational AI interface "Microsoft.Office.FeatureFlags.CopilotExperimentalUI" = "DWORD:1" # Experimental UI elements for Copilot "Microsoft.Office.FeatureFlags.CopilotServiceAccess" = "DWORD:1" # Access to Copilot backend services "Microsoft.Office.FeatureFlags.CopilotTelemetry" = "DWORD:1" # Enable Copilot telemetry # Experimental & Insider Features "Microsoft.Office.FeatureFlags.ExperimentalUI" = "DWORD:1" # Enable various experimental UI features "Microsoft.Office.FeatureFlags.OfficeStartupExperience" = "DWORD:1" # New Office startup UX "Microsoft.Office.FeatureFlags.ExperimentalPowerQuery" = "DWORD:1" # Power Query enhancements in Excel "Microsoft.Office.FeatureFlags.ExperimentalSyncEngine" = "DWORD:1" # Experimental sync improvements # Performance and Diagnostics "Microsoft.Office.FeatureFlags.FastStartup" = "DWORD:1" # Enable faster startup path "Microsoft.Office.FeatureFlags.EnableTelemetryVerbose" = "DWORD:1" # Enable verbose telemetry logging "Microsoft.Office.FeatureFlags.MemoryOptimizations" = "DWORD:1" # Aggressive memory optimization # Advanced Collaboration & Cloud Features "Microsoft.Office.FeatureFlags.CollabCoauthoringV2" = "DWORD:1" # Next-gen collaboration engine "Microsoft.Office.FeatureFlags.ExperimentalCloudSync" = "DWORD:1" # Experimental cloud sync backend "Microsoft.Office.FeatureFlags.InsightsDeepLinking" = "DWORD:1" # Deep linking for Office Insights # AI & Automation Enhancements (beyond Copilot) "Microsoft.Office.FeatureFlags.AIFeaturesAdvanced" = "DWORD:1" # Unlock advanced AI features beyond Copilot "Microsoft.Office.FeatureFlags.AutoContentGeneration" = "DWORD:1" # AI-driven auto content generation "Microsoft.Office.FeatureFlags.VoiceCommandsExperimental"= "DWORD:1" # Experimental voice command integration # Security & Compliance Features "Microsoft.Office.FeatureFlags.StrongEncryption" = "DWORD:1" # Enable enhanced encryption algorithms "Microsoft.Office.FeatureFlags.DataLossPreventionEnhanced"= "DWORD:1" # Enhanced Data Loss Prevention features # Developer & Extensibility Features "Microsoft.Office.FeatureFlags.EnableScriptLab" = "DWORD:1" # Advanced Script Lab features enabled "Microsoft.Office.FeatureFlags.ExperimentalAddins" = "DWORD:1" # Enable experimental add-in APIs # Miscellaneous "Microsoft.Office.FeatureFlags.HiddenDebugMenu" = "DWORD:1" # Show hidden debug menu "Microsoft.Office.FeatureFlags.EnableDarkModeSync" = "DWORD:1" # Sync dark mode with Windows settings } foreach ($name in $commonFlags.Keys) { $split = $commonFlags[$name].Split(":") Set-RegValue -Path $commonPath -Name $name -Type $split[0] -Value $split[1] } # ======================== # Word Flags # ======================== $wordPath = "$basePath\word" $wordFlags = @{ "Microsoft.Office.Word.ExperimentalEditor" = 1 # AI-enhanced Editor with grammar & style suggestions "Microsoft.Office.Word.ExperimentalReview" = 1 # Collaborative review tools and comments "Microsoft.Office.Word.CollaborationFeatures" = 1 # Collaboration features in Word "Microsoft.Office.Word.CopilotIntegration" = 1 # Copilot AI integrated in Word "Microsoft.Office.Word.CopilotAIWritingSuggestions" = 1 # AI writing suggestions via Copilot "Microsoft.Office.Word.ExperimentalStyles" = 1 # Experimental new text styles & formatting "Microsoft.Office.Word.OCRIntegration" = 1 # OCR text recognition inside Word "Microsoft.Office.Word.AutoSummarization" = 1 # AI-based automatic document summarization "Microsoft.Office.Word.CollaborationDeepInsights" = 1 # Collaboration insights and analytics } foreach ($name in $wordFlags.Keys) { Set-RegValue -Path $wordPath -Name $name -Type "DWORD" -Value $wordFlags[$name] } # ======================== # Excel Flags # ======================== $excelPath = "$basePath\excel" $excelFlags = @{ "Microsoft.Office.Excel.DynamicArrays" = 1 # Enable dynamic arrays feature "Microsoft.Office.Excel.DataTypes" = 1 # Rich data types support "Microsoft.Office.Excel.LiveCollaboration" = 1 # Real-time collaboration in Excel "Microsoft.Office.Excel.ExperimentalPowerQuery" = 1 # Power Query experimental features "Microsoft.Office.Excel.FastCalcEngine" = 1 # Improved calculation engine performance "Microsoft.Office.Excel.CopilotDataInsights" = 1 # AI-generated data insights via Copilot "Microsoft.Office.Excel.CopilotAutoClean" = 1 # AI-driven data cleaning automation "Microsoft.Office.Excel.ExperimentalDataConnectors" = 1 # Experimental external data connectors "Microsoft.Office.Excel.AutoChartSuggestions" = 1 # AI-powered chart recommendations "Microsoft.Office.Excel.PowerPivotEnhancements" = 1 # PowerPivot experimental features "Microsoft.Office.Excel.CollaborationVersionControl" = 1 # Version control for collaborative edits } foreach ($name in $excelFlags.Keys) { Set-RegValue -Path $excelPath -Name $name -Type "DWORD" -Value $excelFlags[$name] } # ======================== # PowerPoint Flags # ======================== $powerpointPath = "$basePath\powerpoint" $powerpointFlags = @{ "Microsoft.Office.PowerPoint.MorphPreview" = 1 # Preview new Morph transition "Microsoft.Office.PowerPoint.ExperimentalAnimations" = 1 # Experimental animations and effects "Microsoft.Office.PowerPoint.LivePresentations" = 1 # Live presentation mode "Microsoft.Office.PowerPoint.CopilotDesign" = 1 } foreach ($name in $powerpointFlags.Keys) { Set-RegValue -Path $powerpointPath -Name $name -Type "DWORD" -Value $powerpointFlags[$name] }