Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Virtual machine additions?

Featured Replies

I have been testing my CD/DVDs out on a virtual machine and just noticed that one of the first things i do after booting up is re-loading the virtual machine additions

Is there any way to put these onto my image? (i'm vaguely aware that there's some way of creating an iso from VM but have never tried it so it also begs the question - does VM work like ghost et al in this way? can it be used as a disk cloner?)

Now call me lazy because i could probably experiment and find out all of the above but i wondered if anyone could help so i dont have to re-invent the wheel

Thanks in advance

:thumbup


This is an AutoIt script for VMWare additions based from RogueSpear's VBScript solution to detect whether inside VMWare and install the additions if it is. It uses WMI so should be executed as late as the RunOnce key just before logon. I keep an archive with the additions which the script can execute.

Global $objWMIService, $colBIOS, $objBIOS, $strComputer = ".", $exitcode
$objWMIService = ObjGet('winmgmts:{impersonationLevel=impersonate}!\\' & $strComputer & '\root\cimv2')
$colBIOS = $objWMIService.ExecQuery('Select * from Win32_BIOS')
If IsObj($colBIOS) Then
For $objBIOS In $colBIOS
If $objBIOS.SerialNumber Then
If StringLeft($objBIOS.SerialNumber, 6) = 'VMware' Then
If FileExists(@ScriptDir & '\VMWareTools.exe') Then
RunWait('"' & @ScriptDir & '\VMWareTools.exe"')
EndIf
EndIf
EndIf
Next
EndIf
RunWait('sc start VMTools', '', @SW_HIDE)

Kudo's to RogueSpear for the original VBSript.

I may expect VirtualPC maybe similar to script from reading the bios.

:)

Edited by MHz

I have been testing my CD/DVDs out on a virtual machine and just noticed that one of the first things i do after booting up is re-loading the virtual machine additions

Is there any way to put these onto my image? (i'm vaguely aware that there's some way of creating an iso from VM but have never tried it so it also begs the question - does VM work like ghost et al in this way? can it be used as a disk cloner?)

Now call me lazy because i could probably experiment and find out all of the above but i wondered if anyone could help so i dont have to re-invent the wheel

Thanks in advance

:thumbup

If you want to use M$ Virtual PC instead of VMWare check out this thread...

http://www.msfn.org/board/index.php?showtopic=85061

@MonkeyMan1979

Thanks for other option for virtual machine tools.

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.