Office 2016=> Retail or VL?

Discussion in 'Microsoft Office' started by debin, Oct 16, 2015.

  1. debin

    debin MDL Member

    Mar 2, 2010
    199
    26
    10
    After the Installation is done, is there any way to check what kind of office it is (Retail or VL)?:rolleyes:
     
  2. xinso

    xinso MDL Guru

    Mar 5, 2009
    12,660
    13,675
    340
    #2 xinso, Oct 16, 2015
    Last edited by a moderator: Apr 20, 2017
    Normally,

    C2R Reatil
    MSI Volume (VLSC)
    MSI Retail (Not shown up yet)

    To show status, we can use

    Method 1. Office OSPP.vbs /dstatus

    Method 2. On Windows 8.1/10, we can also use Windows SLMGR.vbs /dlv ActivationID

    e.g.

    Code:
    C:\windows\system32>cscript slmgr.vbs /dlv 6bf301c1-b94a-43e9-ba31-d494598c47fb
    Microsoft (R) Windows Script Host Version 5.812
    Copyright (C) Microsoft Corp. 1996-2006, 著作權所有,並保留一切權利
    
    軟體授權服務版本: 10.0.10240.16384
    
    名稱: Office 16, Office16VisioProVL_KMS_Client edition
    描述: Office 16, VOLUME_KMSCLIENT channel
    啟用識別碼: 6bf301c1-b94a-43e9-ba31-d494598c47fb
    應用程式識別碼: 0ff1ce15-a989-479d-af46-f275c6370663
    延伸的 PID: 03612-03415-000-000000-03-1028-10240.0000-2902015
    產品金鑰通路: Volume:GVLK
    安裝識別碼: 278870583723128964823566012019273202374233648117449924337200880
    部分產品金鑰: RJRJK
    授權狀態: 已取得授權
    大量授權啟用到期: 259168 分鐘 (180 天)
    剩餘的應用程式重設授權狀態計數: 3
    剩餘的 SKU 重設授權狀態計數: 3
    信任時間: 2015/10/17 上午 02:50:47
    已設定的啟用類型: KMS
    
    最近的啟用資訊:
    金鑰管理服務用戶端資訊
        用戶端電腦識別碼 (CMID): 46aa80b9-2fa8-4804-ad03-943e9a82f9c3
        已登錄的 KMS 電腦名稱: 192.168.1.254:1688
        KMS 電腦 IP 位址: 192.168.1.254
        KMS 電腦延伸的 PID: 55041-00206-234-872559-03-1028-7601.0000-3392014
        啟用間隔: 120 分鐘
        更新間隔: 10080 分鐘
        啟用 KMS 主機快取
    Method 3. WMIC command

    Windows 7
    Code:
    wmic path OfficeSoftwareProtectionProduct where (ApplicationID='0ff1ce15-a989-479d-af46-f275c6370663' and PartialProductKey!=NULL) get ID,LicenseStatus,Name,PartialProductKey,ProductKeyChannel,OfflineInstallationId /format:list
    Windows 8.1/10
    Code:
    wmic path SoftwareLicensingProduct where (ApplicationID='0ff1ce15-a989-479d-af46-f275c6370663' and PartialProductKey!=NULL) get ID,LicenseStatus,Name,PartialProductKey,ProductKeyChannel,OfflineInstallationId /format:list
    e.g.

    On Windows 8.1/10
    Code:
    D:\Desktop>wmic path SoftwareLicensingProduct where (ApplicationID='0ff1ce15-a989-479d-af46-f275c6370663' and PartialProductKey!=NULL) get ID,LicenseStatus,Name,PartialProductKey,ProductKeyChannel,OfflineInstallationId /format:list
    
    
    ID=6bf301c1-b94a-43e9-ba31-d494598c47fb
    LicenseStatus=1
    Name=Office 16, Office16VisioProVL_KMS_Client edition
    OfflineInstallationId=278870583723128964823566012019273202374233648117449924337200880
    PartialProductKey=RJRJK
    ProductKeyChannel=Volume:GVLK
     
  3. debin

    debin MDL Member

    Mar 2, 2010
    199
    26
    10
    "SLMGR.vbs /dlv ActivationID"...don´t work if the Office is not yet activated. o_O
     
  4. xinso

    xinso MDL Guru

    Mar 5, 2009
    12,660
    13,675
    340
    #4 xinso, Oct 16, 2015
    Last edited by a moderator: Apr 20, 2017
    No, it should work whether activated or not. Could you please show me?

    Not activated Volume:GVLK
    Code:
    C:\windows\system32>cscript slmgr.vbs /dlv 6bf301c1-b94a-43e9-ba31-d494598c47fb
    Microsoft (R) Windows Script Host Version 5.812
    Copyright (C) Microsoft Corp. 1996-2006, 著作權所有,並保留一切權利
    
    軟體授權服務版本: 10.0.10240.16384
    
    名稱: Office 16, Office16VisioProVL_KMS_Client edition
    描述: Office 16, VOLUME_KMSCLIENT channel
    啟用識別碼: 6bf301c1-b94a-43e9-ba31-d494598c47fb
    應用程式識別碼: 0ff1ce15-a989-479d-af46-f275c6370663
    延伸的 PID: 03612-03415-000-000000-03-1028-10240.0000-2902015
    產品金鑰通路: Volume:GVLK
    安裝識別碼: 278870583723128964823566012019273202374233648117449924337200880
    部分產品金鑰: RJRJK
    授權狀態: 通知 (Notification)
    通知原因: 0xC004F056。
    剩餘的應用程式重設授權狀態計數: 3
    剩餘的 SKU 重設授權狀態計數: 3
    信任時間: 2015/10/17 上午 03:24:33
    已設定的啟用類型: All
    若要更新值,請使用 slmgr.vbs /ato 來啟用並更新 KMS 用戶端資訊。
     
  5. debin

    debin MDL Member

    Mar 2, 2010
    199
    26
    10
    it Show "no any activation available".
    In fact, i just only want to know what kind of office (VL or Retail) it is, not it´s activated or not. o_O
     
  6. xinso

    xinso MDL Guru

    Mar 5, 2009
    12,660
    13,675
    340
    #6 xinso, Oct 16, 2015
    Last edited: Oct 16, 2015
    Then you could use method 1 and 3.

    Normally,

    C2R Reatil
    MSI Volume (VLSC)
    MSI Retail (Not shown up yet)

    Edit: Have you tried to use Volume key on C2R Retail edition?

    Good night


     
  7. debin

    debin MDL Member

    Mar 2, 2010
    199
    26
    10
    Method 1 also just Show:

    Windows Script Host

    Softwarelizenzeservice-Version 10.0.10240.16384
    Fault: Product Key not found

    I do install a c2r Office 2016 on a win 10. The Office i not yet activate.
     
  8. xinso

    xinso MDL Guru

    Mar 5, 2009
    12,660
    13,675
    340
  9. johtaja_

    johtaja_ MDL Novice

    May 19, 2008
    39
    17
    0
    #9 johtaja_, Oct 17, 2015
    Last edited: Oct 17, 2015
    If your C:\Program Files\Microsoft Office (or C:\Program Files (x86)\Microsoft Office) folder has folder root, then it's Retail, if not, then it's VL.

    To check license from cli, go to your Office16 folder (VL: C:\Program Files\Microsoft Office\Office16 or C:\Program Files (x86)\Microsoft Office\Office16, Retail: C:\Program Files\Microsoft Office\root\Office16 or C:\Program Files (x86)\Microsoft Office\root\Office16), right click with shift, choose open command prompt, type cscript OSPP.vbs /dstatus
     
  10. xinso

    xinso MDL Guru

    Mar 5, 2009
    12,660
    13,675
    340
    #10 xinso, Oct 17, 2015
    Last edited: Oct 17, 2015
    @debin

    This is de-DE Office 2016 C2R ProPlusVolume.

    Office-2016-C2R-ProPlusVolume-de-DE.png
     
  11. debin

    debin MDL Member

    Mar 2, 2010
    199
    26
    10
    Looks good :rolleyes:
     
  12. xinso

    xinso MDL Guru

    Mar 5, 2009
    12,660
    13,675
    340
    #12 xinso, Oct 17, 2015
    Last edited: Oct 18, 2015
    Usually KMS activation is the most convenient.

    If you do not insist on permanently-activated Retail/Volume:MAK, we can have the following everyday-180 Volume editions.

    SUITE
    ProPlus
    Standard

    SINGLE
    Word
    Excel
    PowerPoint
    OneNote
    Outlook
    Publisher
    Access
    VisioPro
    VisioStd
    ProjectPro
    ProjectStd
    SkypeforBusiness
     
  13. debin

    debin MDL Member

    Mar 2, 2010
    199
    26
    10
    Thank you. I am sure KMS is a good temponary solution, but a Permanent activation, in my mind is the most comfortable. o_O
     
  14. EFA11

    EFA11 Avatar Guru

    Oct 7, 2010
    8,719
    6,741
    270
    kms is as permanent as the majority of the world needs. 179/180 days forever seems permanent enough, no?
     
  15. Gharlane00

    Gharlane00 MDL Addicted

    Aug 26, 2009
    838
    302
    30
    doesn't each channel have it's own distinct build number?
     
  16. debin

    debin MDL Member

    Mar 2, 2010
    199
    26
    10
    Like you wrote...180 days...and after that, if nothing happen...180 days again. That solution is good....sure...but nothing comparison to a MAK key....right?
     
  17. CreativeMan

    CreativeMan MDL Novice

    Jan 31, 2008
    29
    10
    0
    ...Until they check and invalidate stolen/leaked MAK activation, right now they just blacklist them, but if they come to this you will quickly reconsider KMS activation as permanent :p
    For me, the only "dirty" activation is the trial reset hack, KMS as well as MAK keys are both reliable.