View startup applications (xp not support)

You can get startup applications details using below script,

import subprocess;
process = subprocess.Popen(['wmic','startup','get','name,command,user'],stdout=subprocess.PIPE);
for line in iter(process.stdout.readline,''):
    print line.rstrip();

Note: Please refer attach text file for script text without indentation error.

startup_applications.txt (191 Bytes)