Office(R)Tool Project

Discussion in 'Microsoft Office' started by Dark Dinosaur, Nov 6, 2021.

?

Change brand name or not ?

Poll closed Dec 26, 2021.
  1. No, keep it like that

    148 vote(s)
    75.1%
  2. Yes, officeRTool need fresh name

    49 vote(s)
    24.9%
  1. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    4,171
    5,978
    150
    found one bug
    .Replace is case sensitive
    -replace is not case sensitive
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    4,171
    5,978
    150
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    4,171
    5,978
    150
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. Sansa1

    Sansa1 MDL Novice

    Oct 3, 2022
    23
    2
    0
  5. Sansa1

    Sansa1 MDL Novice

    Oct 3, 2022
    23
    2
    0
    Now, tried to do download latest release 16.0.16924.20124, but it gives me only 16.0.12827.20336. I have selected channel: Current (retail)
     
  6. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    4,171
    5,978
    150
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. mx101

    mx101 MDL Junior Member

    Aug 12, 2015
    52
    19
    0
  8. ashoktvm

    ashoktvm MDL Addicted

    Jul 29, 2009
    523
    49
    30
    Is it possible to get copilot for free in powerpoint?
     
  9. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    4,171
    5,978
    150
    this is the latest version in MS 16.0.16924.20124
    it gets the version from the cab file

    I don't know - maybe @abbodi1406 know
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    4,171
    5,978
    150
    MS may publish a new version ..
    but the latest version on their server is 16.0.12827.20336

    upload_2023-11-1_21-2-37.png
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. Dolmatov

    Dolmatov MDL Addicted

    Aug 16, 2017
    558
    486
    30
    #1872 Dolmatov, Nov 1, 2023
    Last edited: Nov 1, 2023
    Microsoft did something with version numbers. This is on different channels. If we get to the "Restriction" branch, we get a smaller version. For me, a regular Office update rolled back to the old version (version 2007, files June 2020, version July 2020).

    VersionDescriptor.xml
    Code:
      <Available Build="16.0.12527.20720" I320Hash="17658A93CD7811361F0378B4A5098570" I640Hash="F4D9F29F73B956BBC8DB717E2AB007EC" I320Version="16.0.16924.20124" I640Version="16.0.16924.20124" />
    
     <DeliveryMechanism FFNRoot="492350f6-3a01-4f97-b9c0-c7c6ddf67d60" />
      <AvailableBuilds>
        <AvailableBuild RestrictionType="Default" Version="16.0.12827.20336" />
        <AvailableBuild RestrictionType="OS" Value="7" Version="16.0.12527.20720" />
      </AvailableBuilds>
    
    If old scripts do not work correctly, then we wait for news or correct the line for obtaining the version number. As a last resort, you will have to build in a JSON parser for the official API.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    4,171
    5,978
    150
    What you suggesting
    Use API or use cab file ?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. Dolmatov

    Dolmatov MDL Addicted

    Aug 16, 2017
    558
    486
    30
    I would recommend using CAB, but analyzing I320Version/I640Version instead of Version. Currently this gives accurate information about the latest available build.
    If you want to get results based on the Windows version, as OTP does, then you will have to change the approach to checking information and displaying it.
    The last line in the previous post is more of a reflective note than a sentence(suggestion). The rest shows why we see and receive the "wrong" Office number.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. nightwingrises

    nightwingrises MDL Novice

    Jan 26, 2018
    19
    2
    0
    Hello everyone

    I'm facing an issue installing Office Professional Plus 2021 Volume when downloaded through current channel. Choosing option "3" does nothing.

    Screenshot1.jpg
     
  15. Dolmatov

    Dolmatov MDL Addicted

    Aug 16, 2017
    558
    486
    30
    Look up and read a few messages.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    4,171
    5,978
    150
    try new code.

    Code:
      set VER_DEF=
      if exist "%temp%/VersionDescriptor.xml" for /f "tokens=11 delims== " %%$ in ('"type "%temp%\VersionDescriptor.xml" | find /i "I640Version""') do (
        if not defined VER_DEF (
          set "VER_DEF=%%$"
          set "VER_DEF=!VER_DEF:~1,-1!"
        )
      )
      rem if exist "%temp%/VersionDescriptor.xml" for /f "tokens=3" %%$ in ('"type "%temp%\VersionDescriptor.xml" | find /i "AvailableBuild RestrictionType""') do (if not defined VER_DEF (set "VER_DEF=%%$"))
      REM if defined VER_DEF set "VER_DEF=!VER_DEF:~9,-1!"
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    4,171
    5,978
    150
    new list

    upload_2023-11-2_19-7-21.png
     

    Attached Files:

    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    4,171
    5,978
    150
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...