IR7 doesn't really do much except wait to rearm which is silent mostly unless the 180 days is up and IR7 needs to be reinstalled of which it will give msg box to reinstall and restart computer then you get another 180 days in the rearm zone without any warnings, etc... IORRT is maintenance and restart free for the life of it's installation... Worked really good for a long time and was a neat development that went on for years but now everyone is into W10 so it is mostly an archive or a learning tool to understand cmd line...
Rearm Wizard was the latest. Download link is below number 9. @timesurfer seems to be long gone. Last activity was in April 2016.
My rev of IORRT (run as admin). Also it working with office 2016 vl on W7 just replace all "office15" for "office16". Spoiler: IORRT rev. Code: @echo off mode con: cols=45 lines=2 REG QUERY "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v CurrentVersion | FINDSTR 6.1 >NUL IF %ERRORLEVEL% NEQ 0 CLS & echo IR7 supports only windows 7... & ping -n 5 127.0.0.1 >nul & exit echo Loading IORRT... net stop osppsvc 1>nul 2>nul IF %ERRORLEVEL% EQU 9009 ( color 4F echo Office is not installed... ping -n 4 127.0.0.1 >nul exit ) IF %ERRORLEVEL% NEQ 0 ( color 4F net start osppsvc 1>nul 2>nul echo RUN AS ADMIN... ping -n 4 127.0.0.1 >nul exit ) SET title="IORRT not installed" :IORRT schtasks /query /TN "IORRT" 2>&1 | FINDSTR /I "IORRT" >NUL IF %ERRORLEVEL% NEQ 0 ( SET title=IORRT Uninstalled ) ELSE ( SET title=IORRT Installed ) title %title% mode con: cols=45 lines=9 CLS echo. echo. echo. InfiniteOfficeRestoreRearmTask (IORRT) echo. echo. A. Install echo. B. Uninstall echo. C. License Status echo. D. Exit echo. :CHOOSEACTION1 set /p userinp= ^ Make your selection: set userinp=%userinp:~0,1% if /i "%userinp%"=="A" goto InstallIORRT if /i "%userinp%"=="I" goto InstallIORRT if /i "%userinp%"=="B" goto UninstallIORRT if /i "%userinp%"=="U" goto UninstallIORRT if /i "%userinp%"=="C" goto LicenseStatus if /i "%userinp%"=="L" goto LicenseStatus if /i "%userinp%"=="D" Exit if /i "%userinp%"=="E" Exit GOTO IORRT :InstallIORRT title Installing IORRT... mode con: cols=45 lines=2 schtasks /query /TN "IORRT" 2>&1 | FINDSTR /I "IORRT" >NUL IF %ERRORLEVEL% NEQ 0 ( echo. ) ELSE ( echo. echo IORRT is already installed... ping -n 5 127.0.0.1 >nul GOTO IORRT ) echo Installing IORRT... schtasks /query /TN "IR7" 2>&1 | FINDSTR /I "IR7" IF %ERRORLEVEL% EQU 1 ( GOTO TrialFolder2 ) ELSE ( GOTO Check ) :TrialFolder2 md %SystemDrive%\Trial >nul 2>&1 :Check md %SystemDrive%\Trial\IORRT >nul 2>&1 net stop osppsvc >NUL xcopy /cheriky "%ALLUSERSPROFILE%\Microsoft\OfficeSoftwareProtectionPlatform" "%SystemDrive%\Trial\IORRT\Backup\Files\Tokens" >NUL mkdir "%SystemDrive%\Trial\IORRT\Backup\Registry" >NUL reg save "HKLM\SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform" %SystemDrive%\Trial\IORRT\Backup\Registry\OfficeSPPInfo.hiv >NUL net start osppsvc >NUL DEL "%ALLUSERSPROFILE%\Microsoft\OfficeSoftwareProtectionPlatform\Backup.hiv" 2> nul IF Exist "%ProgramFiles%\Microsoft Office\Office15\OSPPREARM.exe" ( "%ProgramFiles%\Microsoft Office\Office15\OSPPREARM.exe" >NUL ) ELSE ( "%programfiles(x86)%\Microsoft Office\Office15\OSPPREARM.exe" >NUL ) if %ERRORLEVEL% EQU 0 ( GOTO Pass ) ELSE ( GOTO UninstallIORRT ) color 4F echo No Rearms Detected... ping -n 5 127.0.0.1 >nul GOTO IORRT :Pass SET file=%SystemDrive%\Trial\IORRT\IORRT.bat echo @echo off >%file% echo IF Exist "%ProgramFiles%\Microsoft Office\Office15\OSPPREARM.exe" ( >>%file% echo "%ProgramFiles%\Microsoft Office\Office15\OSPPREARM.exe" >>%file% echo ) ELSE ( >>%file% echo "%programfiles(x86)%\Microsoft Office\Office15\OSPPREARM.exe" >>%file% echo ) >>%file% echo. >>%file% echo IF %%ERRORLEVEL%% EQU 0 EXIT >>%file% echo IF %%ERRORLEVEL%% EQU 9009 EXIT >>%file% echo. >>%file% echo net stop osppsvc >>%file% echo xcopy /cheriky "%SystemDrive%\Trial\IORRT\Backup\Files\Tokens" "%ALLUSERSPROFILE%\Microsoft\OfficeSoftwareProtectionPlatform" >>%file% echo REG DELETE HKLM\SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform /f >>%file% echo REG ADD HKLM\SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform /f >>%file% echo reg restore "HKLM\SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform" %SystemDrive%\Trial\IORRT\Backup\Registry\OfficeSPPInfo.hiv >>%file% echo net start osppsvc >>%file% echo IF Exist "%ProgramFiles%\Microsoft Office\Office15\OSPPREARM.exe" ( >>%file% echo "%ProgramFiles%\Microsoft Office\Office15\OSPPREARM.exe" >>%file% echo ) ELSE ( >>%file% echo "%programfiles(x86)%\Microsoft Office\Office15\OSPPREARM.exe" >>%file% echo ) >>%file% attrib +h "%SystemDrive%\Trial" schtasks /create /tn "IORRT" /tr "%SystemDrive%\Trial\IORRT\IORRT.bat" /SC WEEKLY /MO 3 /D FRI /ST 12:00 /ru "" >NUL echo Installation Successful... ping -n 5 127.0.0.1 >nul GOTO IORRT :UninstallIORRT mode con: cols=45 lines=2 schtasks /query /TN IORRT 2>&1 | FINDSTR /I "IORRT" IF '%ERRORLEVEL%' EQU '0' ( echo. ) ELSE ( echo. echo IORRT is already uninstalled... ping -n 5 127.0.0.1 >nul GOTO IORRT ) echo Uninstalling IORRT... net stop osppsvc >NUL xcopy /cheriky "%SystemDrive%\Trial\IORRT\Backup\Files\Tokens" "%ALLUSERSPROFILE%\Microsoft\OfficeSoftwareProtectionPlatform" >NUL REG DELETE HKLM\SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform /f >NUL REG ADD HKLM\SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform /f >NUL reg restore "HKLM\SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform" %SystemDrive%\Trial\IORRT\Backup\Registry\OfficeSPPInfo.hiv >NUL net start osppsvc >NUL DEL "%ALLUSERSPROFILE%\Microsoft\OfficeSoftwareProtectionPlatform\Backup.hiv" >nul 2>nul schtasks /query /TN IR7 2>&1 | FINDSTR /I "IR7" IF ERRORLEVEL 1 ( rd /S /Q %SystemDrive%\Trial ) ELSE ( rd /S /Q %SystemDrive%\Trial\IORRT ) schtasks /delete /tn "IORRT" /f >NUL echo Successfully Uninstalled... ping -n 5 127.0.0.1 >nul GOTO IORRT :LicenseStatus mode con: cols=80 lines=45 cscript "C:\Program Files\Microsoft Office\Office15\OSPP.VBS" /dstatus pause GOTO IORRT
It's right.I like more in "repair install" console. Code: reg load HKLM\SYST "%~dp0Windows\System32\config\system" reg delete HKLM\SYST\WPA /f del /F "%~dp0Windows\ServiceProfiles\NetworkService\AppData\Roaming\Microsoft\SoftwareProtectionPlatform\tokens.*" My rev of IR7 (run as admin). I like in "repair install" console ^ and working autorearm. Spoiler: IR7 rev. Code: @echo off SET title="IR7 not installed" :IR7 REG QUERY "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v CurrentVersion | FINDSTR 6.1 >NUL IF %ERRORLEVEL% NEQ 0 CLS & echo IR7 supports only windows 7... & ping -n 5 127.0.0.1 >nul & exit schtasks /query /TN "IR7" 2>&1 | FINDSTR /I "IR7" >NUL IF %ERRORLEVEL% NEQ 0 ( SET title=IR7 Uninstalled ) ELSE ( SET title=IR7 Installed ) title %title% mode con: cols=45 lines=9 cls echo. echo. echo. InfiniteRearm7 (IR7) echo. echo. A. Install echo. B. Uninstall echo. C. License Status echo. D. Exit echo. set /p userinp= ^ Make your selection: set userinp=%userinp:~0,1% if /i "%userinp%"=="A" goto InstallIR7 if /i "%userinp%"=="I" goto InstallIR7 if /i "%userinp%"=="B" goto UninstallIR7 if /i "%userinp%"=="U" goto UninstallIR7 if /i "%userinp%"=="C" goto LicenseStatus if /i "%userinp%"=="L" goto LicenseStatus if /i "%userinp%"=="D" goto Exit if /i "%userinp%"=="E" goto Exit GOTO IR7 :InstallIR7 mode con: cols=45 lines=2 schtasks /query /TN "IR7" 2>&1 | FINDSTR /I "IR7" >NUL IF ERRORLEVEL 1 ( echo. ) ELSE ( cls & echo IR7 is already installed... ping -n 5 127.0.0.1 >nul GOTO IR7 ) echo Installing IR7... schtasks /query /TN "IORRT" 2>&1 | FINDSTR /I "IORRT" >NUL IF ERRORLEVEL 1 ( GOTO TrialFolder ) ELSE ( GOTO Pass ) :TrialFolder md %SystemDrive%\Trial >nul 2>&1 :Pass md %SystemDrive%\Trial\IR7 >nul 2>&1 REG ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform\Activation" /v NotificationDisabled /t REG_DWORD /d 1 /f >NUL SET file=%SystemDrive%\Trial\IR7\IR7.bat echo @echo off >>%file% echo slmgr.vbs /rearm >>%file% echo. >>%file% echo IF %%ERRORLEVEL%% EQU 0 EXIT >>%file% echo. >>%file% echo net stop sppsvc >>%file% echo del /F "%windir%\ServiceProfiles\NetworkService\AppData\Roaming\Microsoft\SoftwareProtectionPlatform\tokens.*" >>%file% echo REG SAVE "HKLM\SYSTEM" "%TEMP%\SYSTEM.HIV" /y >>%file% echo REG RESTORE "HKLM\SYSTEM" "%TEMP%\SYSTEM.HIV" >>%file% echo del "%TEMP%\SYSTEM.HIV" >>%file% echo POWERSHELL -command rename-item HKLM:\SYSTEM\WPA -NewName WPA_Delete >>%file% echo REG DELETE HKLM\SYSTEM\WPA_Delete /f >>%file% echo IR7 Windows is restarting now... >>%file% echo shutdown.exe /r /t 5 /f >>%file% attrib +h "%SystemDrive%\Trial" schtasks /create /tn "IR7" /tr %file% /sc daily /mo 30 /ru "" /f >nul net stop sppsvc del /F "%windir%\ServiceProfiles\NetworkService\AppData\Roaming\Microsoft\SoftwareProtectionPlatform\tokens.*" >NUL 2>&1 REG SAVE "HKLM\SYSTEM" "%TEMP%\SYSTEM.HIV" /y >NUL 2>&1 REG RESTORE "HKLM\SYSTEM" "%TEMP%\SYSTEM.HIV" >NUL 2>&1 del "%TEMP%\SYSTEM.HIV" >NUL 2>&1 POWERSHELL -command rename-item HKLM:\SYSTEM\WPA -NewName WPA_Delete >NUL 2>&1 REG DELETE HKLM\SYSTEM\WPA_Delete /f >NUL 2>&1 echo Windows is restarting now... ping -n 10 127.0.0.1 >nul shutdown.exe /r /t 0 /f exit :UninstallIR7 mode con: cols=45 lines=2 schtasks /query | FINDSTR /I "IR7" >NUL IF %ERRORLEVEL%==0 ( echo. ) ELSE ( echo IR7 is already uninstalled... ping -n 5 127.0.0.1 >nul GOTO IR7 ) echo Uninstalling IR7... REG ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform\Activation" /v NotificationDisabled /t REG_DWORD /d 0 /f >NUL schtasks /delete /tn "IR7" /f >NUL 2>&1 schtasks /query /tn "IORRT" | FINDSTR /I "IORRT" >NUL IF ERRORLEVEL 1 ( rd /S /Q %SystemDrive%\Trial ) ELSE ( rd /S /Q %SystemDrive%\Trial\IR7 ) cls & echo IR7 has been successfully uninstalled... ping -n 5 127.0.0.1 >nul GOTO IR7 :LicenseStatus slmgr.vbs /dlv GOTO IR7
Tried to install Ream Wizard on fresh WIN7, it's stuck in <<Installing IR7...>>. Am I missing something? So, when I type in cmd slmgr /dlv it says Error: Product key not found. So I recreated the Licencing Store, but again the IR7 progess does not end... Reinstalled again, now it works
I have been using IR7 successfuly for some time now my computer will not reboot into Recovery Environment. I am getting the below message. This has happened once before but I can't remember how I fixed it. I think I just uninstalled IR7 and then reinstalled. But I know I didn't end up getting into RE. I get the same message if I use F8 to try and get into RE manually as well. Any ideas? Windows failed to start. A recent hardware or software change might be the cause. To fix the problem: 1. Insert your Windows installation disc and restart your computer. 2. Choose your language settings, and then click "Next." 3. Click "Repair your computer." If you do not have this disc, contact your system administrator or computer manufacturer for assistance. Status: 0xc000000f Info: The boot selection failed because a required device is inaccessible
...so how come there isn't one for other windows editions and office editions and only windows 7 and office 2013?
Windows 8 and up do not have any 30 day initial grace anymore. For that reason, there cannot be such a tool made for them. The foundations are missing.
What about Windows Vista and older or the server version counter part, like 2008 r2, 2012, 2016, 2019, 2003, 2000? And other Office editions, like 2016, 2019, 365, 2010, 2007, 2003, XP.....
For Win 7 and Server 2016 and LTSB 2016 (aka build 14393): Rearming Windows Server 2016 pass it's maximum rearm count period?. Later Windows versions need a script running from WinPE.
...that doesn't include Office does it...? And what about Vista and XP? ...just for completion sake....both will lock you out of our computer if you don't activate or your trial period expires - yes I've actually experienced this it was kinda a surprise to me coz I thought it wouldn't happened...hahahaha....can't remember if windows 2000 had the same issue or not, but I haven't used windows 2000 in a while....anything older don't have trial periods and must have key verification or else you won't even be able to install the operating system...but that shouldn't be a problem if you got the net....and a copy of the ISO/CD but lost the original COA that had the key on it....
1. Windows 2000 and earlier did not have any Activation. 2. If XP locked you out, you could still access Safe Mode. Same for Vista SP1 (with Reduced Functionality Mode). 3. From what I know, they killed RFM with Vista SP2.
But safe mode is no fun if you wanna play around just the way it's meant to be.....since a lot of things are disabled in safe mode....