Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Package LoggerNew to Visual Studio Code? Get it now.
Package Logger

Package Logger

taizod1024

|
179 installs
| (0) | Free
package logger extension for windows
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

package-logger

Output Windows application, package list with version and config. Use it with Git.

  • update
    • os
      PS> abc-update /a:install /s:wsus /r:n
      
    • chocolatey
      PS> choco upgrade all --ignore-checksums
      
    • nodejs
      PS> npm update -g
      
    • vscode
      PS> code --install-extension <EXTENSION_NAME>
      
  • log
    • os
      • system information
        PS> systeminfo
        PS> diskpart ...
        PS> GET-PSDrive ...
        
      • windows features
        PS> Get-WindowsOptionalFeature -Online
        
      • windows services
        PS> Get-Service
        
      • environment variable
        PS> Get-ChildItem env:
        
    • package
      • windows application list
        PS> Get-ChildItem `
          Registry::HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall, `
          Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall, `
          Registry::HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
        
      • chocolatey package list and config
        PS> choco config list
        PS> choco list --local-only
        
      • git config
        PS> git config --list
        
      • nodejs package list and config
        PS> npm config list
        PS> npm list --global
        PS> nvm list
        
      • python package list and config
        PS> pip config list
        PS> pip list
        
      • vscode extension list
        PS> code --list-extensions -show-versions
        
    • office
      • excel addins
      • word addins
      • powerpoint addins
      • outlook addins
        PS> Get-ChildItem `
          Registry::HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\<OFFICE_APP_NAME>\Addins, `
          Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\<OFFICE_APP_NAME>\Addins, `
          Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Office\<OFFICE_APP_NAME>\Addins
        
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft