Use jscript List Installed Software

Source: Internet
Author: User

Description
Returns a list of software that was installed on a computer using Windows Installer. This information is then written to a text file. Script Code
Copy codeThe Code is as follows:
Var wbemFlagReturnImmediately = 0x10;
Var wbemFlagForwardOnly = 0x20;

Var ob1_miservice = GetObject ("winmgmts: \\\\\. \ root \ CIMV2 ");
Var colItems = obw.miservice. ExecQuery ("SELECT * FROM Win32_Product", "WQL ",
WbemFlagReturnImmediately | wbemFlagForwardOnly );

Var enumItems = new Enumerator (colItems );
For (;! EnumItems. atEnd (); enumItems. moveNext ()){
Var objItem = enumItems. item ();

WScript. Echo ("Caption:" + objItem. Caption );
WScript. Echo ("Description:" + objItem. Description );
WScript. Echo ("Identifying Number:" + objItem. IdentifyingNumber );
WScript. Echo ("Install Date:" + objItem. InstallDate );
WScript. Echo ("Install Date 2:" + objItem. InstallDate2 );
WScript. Echo ("Install Location:" + objItem. InstallLocation );
WScript. Echo ("Install State:" + objItem. InstallState );
WScript. Echo ("Name:" + objItem. Name );
WScript. Echo ("Package Cache:" + objItem. PackageCache );
WScript. Echo ("SKU Number:" + objItem. SKUNumber );
WScript. Echo ("Vendor:" + objItem. Vendor );
WScript. Echo ("Version:" + objItem. Version );
WScript. Echo ();
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.