• 0

[vb Easy] Export Some Registry Keys To File


Question

Can anybody make a small VBscript which will export these registry keys to separate files? Here's how i want it,trasnlated to normal language

---------------------------------------------

export [HKEY_CURRENT_USER\Software\XXXXXXXX]

save it as X:\XXXX\XXX.REG

next

export [HKEY_CURRENT_USER\Software\ZZZZZZZZ]

save it as Z:\ZZZZ\ZZZ.REG

end

-----------------------------------------

i'll replace XXX and ZZZ.I'm sure this is very easy for all you vbscript programmers.Oh yes,and please make it silent,so i wont have to answer any questions and do not ask if i want to rewrite if file exist.

-one last thing,is it possible in VB to close program? like if i had one script which will close 5 programs which eat resources because and i'm gonna play game(this is only example) so it is possible?

Many Thanks

Dominik

3 answers to this question

Recommended Posts

  • 0

Here is a VBScript that will do the job

--------------------------------------------

Option Explicit

On Error Resume Next

'Declare variables

Dim WSHShell, TheKey, FName, OkToExec

'Set the Windows Script Host Shell

Set WSHShell = WScript.CreateObject("WScript.Shell")

If (WScript.Arguments.Count > 0) And (WScript.Arguments.Count < 3) Then

OkToExec = True

FName = WScript.Arguments(0)

If WScript.Arguments.Count = 2 Then

TheKey = WScript.Arguments(1)

Else

If MsgBox("Are you sure you want to extract all the registry?", vbYesNo or vbDefaultButton2) = vbNo Then OkToExec = False

End If

'Extract the key from registry

If OkToExec Then

WSHShell.Exec "regedit /e /s """ & FName & """ """ & TheKey & """"

End If

End If

--------------------------------------------

Save it let's say as "c:\ExtractReg.vbs"

After you can run it like this

c:\ExtractReg.vbs X:\XXXX\XXX.REG HKEY_CURRENT_USER\Software\XXXXXXXX

Note: If in any path there is a space you must use the "

Example:

"c:\Program Files\ExtractReg.vbs" "c:\Program Files\test.reg" "HKEY_CURRENT_USER\Software\A Word"

=========================

If you want to have the file name and the key inside the script then use this

--------------------------------------------

Option Explicit

On Error Resume Next

'Declare variables

Dim WSHShell, TheKey, FName

'Set the Windows Script Host Shell

Set WSHShell = WScript.CreateObject("WScript.Shell")

FName = "c:\Program Files\test.reg"

TheKey = "HKEY_CURRENT_USER\Software\A Word"

'Extract the key from registry

WSHShell.Exec "regedit /e /s """ & FName & """ """ & TheKey & """"

--------------------------------------------

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • The word "standard" has a very broad set of definitions that covers many uses beyond technical standards. Also, "de facto standard" is a common phrase with its own meaning, which I used correctly.
    • Just want to throw in my two current favorite streaming shows both of which have brilliant theme songs.  Added bonus. Another fun new show is called Duster starring Josh Hollaway. It's opening theme is brilliant.  
    • Depends on where you are from. I know in the US they love their Messages because ISPs there were blocking mobile data for certain apps, especially messengers and voip apps because they wanted to sell bundles of call minutes and sms messages (the reason why Skype was not so popular in US as Microsoft expected - at the very beginning it just couldn't run on mobile data at all in US). Here in EU I don't know anyone using Messages because we moved to better messenger apps long ago. I've used a Java version of ICQ and Google Talk on my dumb phone before the iPhone was a thing.
    • Do we really need to bring more attention to yt-dlp? I'm sure that project will be pulled if it becomes super common knowledge.
    • Windows Photos gets AI-powered light controls and improved search by Taras Buria Microsoft is rolling out a new update for the Windows Photos app in the Insider program. Today's release introduces two new AI-powered features: light controls (Relight) and search with natural language (initially announced in early May 2025). With Relight, users can set up to three light sources on a single image and customize their light color, focus point, brightness, and intensity. The app has built-in presets for quick light adjustments and styles, which you can apply with a single click. Microsoft says that besides styling your photos, Relight can correct poor lighting on images to make them look better. As of right now, Relight is only available to Windows Insiders with Snapdragon-powered Copilot+ PCs. However, Microsoft promises to release the feature to users with AMD and Intel-based Copilot+ PCs in the coming months. Next is improved search, which is now semantically based, allowing you to find photos using natural language. For example, you can search for "sunset at the beach" or "family outdoor fun." Windows Photos will use AI to understand your request and find photos that best fit it. Note that improved search only works with locally stored and indexed pictures in the Pictures library. More information about indexing and supported languages is available in the official documentation. Finally, two Windows Photos features are now available to Entra ID users: Restyle Image and Image Creator. Previously, these features were only available to customers with standard Microsoft Accounts. For reference, Restyle Image lets you use AI to reimagine your photo in a different style, while Image Creator enables you to generate pictures using text prompts. The new features for the Windows Photos app are now rolling out in all Insider channels in version 2025.11060.5006.0 and higher. You can read more about them in the official announcement post.
  • Recent Achievements

    • Mentor
      Karlston went up a rank
      Mentor
    • One Month Later
      EdwardFranciscoVilla earned a badge
      One Month Later
    • One Month Later
      MoyaM earned a badge
      One Month Later
    • One Month Later
      qology earned a badge
      One Month Later
    • One Year In
      Frinco90 earned a badge
      One Year In
  • Popular Contributors

    1. 1
      +primortal
      481
    2. 2
      snowy owl
      257
    3. 3
      +FloatingFatMan
      253
    4. 4
      ATLien_0
      215
    5. 5
      Xenon
      151
  • Tell a friend

    Love Neowin? Tell a friend!