We have to figure out a way to find out if VMWare is installed on the server. The System Administrator is not here anymore. However, if there is a way to figure this out via a command, shell/bat script, or by looking at the file system please let me know.
Thank you.
-
Recent Posts
Categories
- iPhone (16)
- Virtualization Articles (174)
- Virtualization Q&A (660)
- Virtualization Store (1659)

One Comment
how about:
cd /
find . -name “VM*” -print
If you run this as root you’ll be able to scan the entire file system.
Post a Comment