Can anyone determine what conditions would warrant Office 365 to be repaired? It seems almost every time I restart the machine, Office needs to be repaired. Have not performed an online repair which takes longer.
Please note lcid=xxx, even optional, is necessary for setup to display messages on language chosen by user (another language than not english)... scenario=xxx, scenariosubtype=xxx is just for compatibility with office deployment tool... All other changes implemented...
I am getting Error 404: Not Found for the files "stream.x64.en-US.dat.cobra" and "stream.x64.x-none.dat.cobra" when I try to download using O2016R Tool from the "Dogfood DevMain" channel. Is it normal?
I have had the same problem error 404 same streams missing, I tried option 2 download the insider office channel
A new OfficeRTool version (2019/June/08) was released today - Removed download of *.cobra files because they are not created anymore by MS - This will avoid missing file 404 error during download and won't affect setup No other changes were made, no new features were added. Download-links and checksums in OP were updated.
Hello, In OfficeRTool I think there's an error on line 1897, a quote is missing if "%StandardVLFound:~-30%" EQU "Microsoft Office Standard 2016" ((set "StandardVLFound=YES)&&(set "_StandardRetail=YES")) It should be this: if "%StandardVLFound:~-30%" EQU "Microsoft Office Standard 2016" ((set "StandardVLFound=YES")&&(set "_StandardRetail=YES")) I think there's an error on line 1901, a quote is missing if "%VisioProVLFound:~-33%" EQU "Microsoft Visio Professional 2016" ((set "VisioProVLFound=YES)&&(set "_VisioProRetail=YES")) It should be this: if "%VisioProVLFound:~-33%" EQU "Microsoft Visio Professional 2016" ((set "VisioProVLFound=YES")&&(set "_VisioProRetail=YES")) I think there's an error on line 1921, a quote is missing if "%StandardVLFound:~-30%" EQU "Microsoft Office Standard 2016" ((set "StandardVLFound=YES)&&(set "_StandardRetail=YES")) It should be this: if "%StandardVLFound:~-30%" EQU "Microsoft Office Standard 2016" ((set "StandardVLFound=YES")&&(set "_StandardRetail=YES")) I think there's an error on line 1925, a quote is missing if "%VisioProVLFound:~-33%" EQU "Microsoft Visio Professional 2016" ((set "VisioProVLFound=YES)&&(set "_VisioProRetail=YES")) It should be this: if "%VisioProVLFound:~-33%" EQU "Microsoft Visio Professional 2016" ((set "VisioProVLFound=YES")&&(set "_VisioProRetail=YES")) I think there's an error on line 1933, a quote is missing if "%StandardVLFound:~-30%" EQU "Microsoft Office Standard 2016" ((set "StandardVLFound=YES)&&(set "_StandardRetail=YES")) It should be this: if "%StandardVLFound:~-30%" EQU "Microsoft Office Standard 2016" ((set "StandardVLFound=YES")&&(set "_StandardRetail=YES")) I think there's an error on line 1937, a quote is missing if "%VisioProVLFound:~-33%" EQU "Microsoft Visio Professional 2016" ((set "VisioProVLFound=YES)&&(set "_VisioProRetail=YES")) It should be this: if "%VisioProVLFound:~-33%" EQU "Microsoft Visio Professional 2016" ((set "VisioProVLFound=YES")&&(set "_VisioProRetail=YES"))
Hello everyone, when I try to download office from OfficeRtool the following message appears and the prossess ends...what should I do to fix this problem? find: 'Available Build': No such file or directory The process tried to write to a nonexistent pipe. Check file "C:\Users\panag\AppData\Local\Temp\Monthly_Channel_V32.cab" Check file "C:\Users\panag\AppData\Local\Temp\Monthly_Channel_VersionDescriptor.xml"
Antivirus active? Temporarily disable AV, then extract OfficeRTool again. Later create exclusions in AV. See this post what to include in exclusion. Then retry download and install.
I was experimenting with the C2R-R2V_9 on one of my VM's and it's working perfectly for: Office 365 Pro. along with Visio 2019 Pro. and Project 2019 Pro. I'm trying to integrate this script into my Windows Deployment scenario, but I need to be able to modify your script to exit when complete, and not display the results and pause as it currently does :end echo. echo ============================================================ echo %msg% echo ============================================================ echo. echo Press any key to exit... if %_Debug% EQU 0 pause >nul goto :eof I' not sure about the best way to go about it, other than adding exit after the :end label like so: :end exit I haven't tested this just yet, because I wanted to make one other modification to the script so that I know the conversion was successful. I'd like to output the %msg% from above to a Text file. I'm thinking something like this might work: %msg% > "%UserProfile%\Desktop\C2R_Status.txt" What would be the best way to go about it? Would I need to remove the last two lines of the script as well? Any help would be greatly appreciated. Thanks!
@ZERO269 just delete this line Code: if %_Debug% EQU 0 pause >nul setupcomplete.cmd runs under system account, so %UserProfile% might not be good you may change echo %msg% line to Code: echo %msg% > "%SystemDrive%\Users\Default\Desktop\C2R_Status.txt" p.s. latest is C2R-R2V_10