Skip to content

Instantly share code, notes, and snippets.

@kewalaka
Last active March 15, 2020 18:42
Show Gist options
  • Save kewalaka/89d1800840591896c9e4559a8e526e9b to your computer and use it in GitHub Desktop.
Save kewalaka/89d1800840591896c9e4559a8e526e9b to your computer and use it in GitHub Desktop.
reg export HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall $env:temp\apps_64bit.txt
reg export HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall $env:temp\apps_32bit.txt
reg export HKCU\Software\Microsoft\Windows\CurrentVersion\Uninstall $env:temp\apps_userapps.txt
ipconfig /all > $env:temp\apps_ipconfig.txt
start $env:temp
<#
// Command prompt version
reg export HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall %temp%\apps_64bit.txt
reg export HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall %temp%\apps_32bit.txt
reg export HKCU\Software\Microsoft\Windows\CurrentVersion\Uninstall %temp%\apps_userapps.txt
ipconfig /all > %temp%\apps_ipconfig.txt
start %temp%
#>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment