Hi Trying to run C2R-R2V gets the following error, Could not execute SoftwareLicensingService WMI... I have installed a fresh install of office 2019 using wotok, what am I doing wrong?
Wotok installs retail or volume. If you want volume, install volume. You do not need to use C2R-R2V then, because volume will already be installed. If you want office activation, you don't need to use KMS_VL_ALL, Wotok can also KMS activation (installs SppExtComObjHook.dll).
Officertool, I have the message Activation failed, nothing more. In the end, I activated using Office C2R Install
Hello to everyone My first message here and i want to thank this forum for giving me a lot of goodies for freeeee )))) My story starts with Windows 7 Daz loader activated both on my PC and Laptop so i upgraded them both to Windows 10 Pro with yours internal methods ,and works perfectly fine ))) But still on my PC i am back to Windows 7 because of work ,but on my Laptop i have Windows 10 for learning curve ,cause i kinda like Windows 10 after all because of some specific features but that is not the point right now.... . Well i have a questions about OfficeRTools. Is safe to use this tool to activate a Office Pro plus with Genuine Windows 10 Pro? I am trying for days to find this answer and i cant ,no chances .... I have used OfficerTools on my PC Win 7, Daz activated for Office Pro 2016 activation and it works like charm,but..... My question is here.... Just to be clear , so you can eventualy give me a short and simple answer. Is it "legal" to use OfficeRtool for KMS activation of Office Pro Plus 2019 on genuine Windows 10 (my Laptop) and is there any chance that MS can get me caught for using this patch so i can get in trouble with my rest MS Windows licences on my MS Account for both PC and Laptop, because both of them are linked to my MS Account ? What is the risk , or i should buy a cheap ebay licence for Office , but tbh, to me ,that is more suspicious than everything.... I hope my question and your answer help and other users who have same dilema... Thanks in advance for helping me Best regards
You might want to try abbodi1406 YAOCTRI & YAOCTRU which makes installing and activating Office 2019 easy and almost fool proof, IMHO. Spoiler: YAOCTRI https://forums.mydigitallife.net/posts/1479890/ Spoiler: YAOCTRU https://forums.mydigitallife.net/posts/1505755/ Hope this helps....
Thanks for short and direct answer. So i will avoid to use OfficeRTools on my WIndows 10. That was my thougts also. Thanks a lot for answer
Many thanks for the reply, but that words in your sentence "almost fool proof" scares me, so i could lose that legit licence on my MS account, which as we all know they are HWID activated. Therefore i doubt that can be retrieved later again with "Windows 7 free upgrade" on the same maschine, because i believe it could be blacklisted HWID or something... I dont know how that works ,but just in case ,I will not play that game.For sure i can live without Office and stay safe as long as i can. I am thankful enough with Windows upgrade for free, and that is not a small thing... I will keep using it on Win 7 on my PC, but once i install Win 10 again on it, i will skip that kind of activation. Thanks guys, this place is lifesaver Best regards to all of you
@abbodi1406 I think Visio 2019 and Project 2019 are registered with the wrong license file Code: cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\ProjectProVL_KMS_Client-ppd.xrm-ms" cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\ProjectProVL_KMS_Client-ul-oob.xrm-ms" cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\ProjectProVL_KMS_Client-ul.xrm-ms" cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\VisioProVL_KMS_Client-ppd.xrm-ms" cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\VisioProVL_KMS_Client-ul-oob.xrm-ms" cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\VisioProVL_KMS_Client-ul.xrm-ms" instead of: Code: cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\ProjectPro2019VL_KMS_Client_AE-ppd.xrm-ms" cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\ProjectPro2019VL_KMS_Client_AE-ul-oob.xrm-ms" cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\ProjectPro2019VL_KMS_Client_AE-ul.xrm-ms" cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\VisioPro2019VL_KMS_Client_AE-ppd.xrm-ms" cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\VisioPro2019VL_KMS_Client_AE-ul-oob.xrm-ms" cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\VisioPro2019VL_KMS_Client_AE-ul.xrm-ms" or is it due to wrong parameter/setting on C2R-R2V-AIO.cmd file?
@Leewy integrator.exe is used to install licenses for Office 2019/2016 slmgr.vbs/ospp.vbs are used for Office 2013 how did you get that?
Honestly, I have no idea how the license file is installed. It happens that after I run ospp.vbs /act command, I saw Office16 label for Visio and Project. Thus, I run Code: cscript.exe slmgr.vbs /ilc command to register the Office19 Visio and Project products and thus, am able to register GVLKs for Project Pro 2019 and Visio Pro 2019.
@abbodi1406 I believe there's a bug at line 452 of C2R-R2V-AIO.cmd : Code: for %%a in (ProjectPro,VisioPro,ProjectStd,VisioStd) do if !_%%a2019! equ 1 ( echo %%a 2019 SKU echo. if defined tag (call :InsLic %%a2019) else (call :InsLic %%a) ) Possible fix: Code: for %%a in (ProjectPro,VisioPro,ProjectStd,VisioStd) do if !_%%a2019! equ 1 ( echo %%a 2019 SKU echo. if defined _tag (call :InsLic %%a2019) else (call :InsLic %%a) ) Verified (from debug log): - Before fix: Code: >if !_ProjectPro2019! EQU 1 ( echo ProjectPro 2019 SKU echo. if defined tag (call :InsLic ProjectPro2019 ) else (call :InsLic ProjectPro ) ) ProjectPro 2019 SKU >set "_ID=ProjectProVolume" >set "_pkey=" >if not "" == "" ( set "_ID=ProjectProRetail" set "_pkey=PidKey=" ) - After fix: Code: >if !_ProjectPro2019! EQU 1 ( echo ProjectPro 2019 SKU echo. if defined _tag (call :InsLic ProjectPro2019 ) else (call :InsLic ProjectPro ) ) ProjectPro 2019 SKU >set "_ID=ProjectPro2019Volume" >set "_pkey=" >if not "" == "" ( set "_ID=ProjectPro2019Retail" set "_pkey=PidKey=" )
@Sk4t3 latest C2R-R2V skip activated retail products from conversion but just to be sure, first run the script in non-conversion mode edit C2R-R2V.cmd and set _Cnvrt=0 this will create a debug log you can examine yourself to see if your Office 365 will be converted look for "O365Business 2016 Suite -> Mondo 2016 Licenses" or "O365SmallBusPrem 2016 Suite -> Mondo 2016 Licenses"