Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8898407
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T00:36:31+00:00 2026-06-15T00:36:31+00:00

I want to Ensure that my machine there are no version up on 2

  • 0

I want to Ensure that my machine there are no version up on 2
So example I try to get 3 version in the line below:

REG QUERY "HKEY_LOCAL_MACHINE\SOFTWARE\zup\Product" /v 3
if ERRORLEVEL  0 ( //found 3
ECHO error.>>%LogFileName%

But when it try to get this field from the registry I get an error:
“The system was unable to find the specified registry key or value”
So how I can to check it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T00:36:33+00:00Added an answer on June 15, 2026 at 12:36 am

    I think the problem is that Product is a ValueName.

    If Product is the ValueName, you should be calling it like this:

    REG QUERY "HKLM\SOFTWARE\zup" /v Product

    this will echo the details of the ValueName Product


    There is a problem with your if statement.

    IF ERRORLEVEL 0
    matches return codes equal to or greater than 0, which will always match.

    To check for a missing ValueName use IF ERRORLEVEL 1

    Noting that REG has two return code.

    0 - Successful
    1 - Failed
    

    Here is some example code that checks if notepad has it’s statusbar visable.

    Notepad is the keyname and statusbar is the ValueName.

    @echo off
    setlocal
    
    set statusbar=0
    set query_command=reg query hkcu\software\microsoft\notepad /v statusbar
    
    :: parse output of reg
    for /f "tokens=1,2,3" %%a in ('%query_command%') do (
        :: search for line starting with statusbar
        if /i "statusbar"=="%%a" (
            :: parse hex into int
            set /a statusbar=%%c
            )
        )
    
    if %statusbar% EQU 1 (
        echo notepad's status bar is visable
        ) else (
        echo notepad's status bar isn't visable
        )
    
    endlocal
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to ensure that there are no duplicate book titles in the following
I want to ensure that a division of integers is always rounded up if
I want to ensure that a WCF-ServiceClient State will be closed after using the
I have run into a situation where I want to ensure that a compound
I'm trying to move a file but I want to ensure that it exists
I have a windows installer (MSI) project. I want to ensure that when i
I don't mind so much about pirating etcetera, but I want to ensure that
I want to create NUnit test to ensure that my function does not throw
I have a C# Windows application that I want to ensure will show up
I want to ensure that a preference is cleared before my Activity is started

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.