How to retrieve your Dell Service Tag from DOS

Retrieve Dell Service Tag from DOS If you ever needed to retrieve Dell Service Tag from DOS, this works remotely or if you are unable to read the tag on the case below is the syntax to retrieve the Dell service tag by querying Windows WMI service via the DOS command line using the WMIC […]

List installed Windows updates from the command line / DOS

List installed Windows updates from the command line / DOS It is easier than most would think to List installed Windows updates from the command line / DOS. This can come in handy if you have two identical machines and one is having an issue. You could save the output from both systems and use something […]

Get list of software installed from a remote computer via WMIC from DOS

Get list of software installed from a remote computer Have you ever needed to get a quick local inventory of installed software across your network? You can use the WMIC command from the DOS CLI. Simply run the following command: wmic /user:”localhost\UserName” /password:”UsersPassword” /node:”RemoteHostname” product get name,version,vendor You can copy and paste this to a […]