Computing.net: Question & Answers Forum Latest Questions

Computing Staff
  • 1
  • 1

can anyone post a batch coding for the reg file… [HKEY_LOCAL_MACHINE\SOFTWARE\KONAMI] [HKEY_LOCAL_MACHINE\SOFTWARE\KONAMI\PES2008] “installdir”=”C:\\pes\\Pro Evolution Soccer 2008” “code”=”NA9C97ANHSLC46R5JYM9” “version”=”1.00.0000” [HKEY_LOCAL_MACHINE\SOFTWARE\KONAMI\PES2008\1.00.0000] because i can’t fix the reg file in the registry .. due to some problems in windows 7

Computing Staff
  • 0
  • 0

here is a solution to produce a Do While Loop in DOS Batch: @REM initialize test value to be “true” @SET intCounter=1   :while @REM test condition @IF %intCounter% GTR 10 (GOTO wend) @REM procedure where condition is “true” @echo %intCounter% @REM set new test value