<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to Start &amp; Stop VMware server/Workstation manually</title>
	<atom:link href="http://www.windowsreference.com/general/how-to-start-stop-vmware-serverworkstation-manually/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.windowsreference.com/general/how-to-start-stop-vmware-serverworkstation-manually/</link>
	<description>Windows 7 2008 2003 Vista XP 2000 Ms Office Tutorials Fixes Tips</description>
	<lastBuildDate>Sat, 21 Nov 2009 08:13:24 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Rilo</title>
		<link>http://www.windowsreference.com/general/how-to-start-stop-vmware-serverworkstation-manually/comment-page-1/#comment-2694</link>
		<dc:creator>Rilo</dc:creator>
		<pubDate>Thu, 15 Oct 2009 06:02:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.windowsreference.com/windows-xp/how-to-start-stop-vmware-serverworkstation-manually/#comment-2694</guid>
		<description>Another remark:

The FIRST service to start should be the authorization service. The second one the host agent.

The LAST service to STOP is the uthorization service. Prior to last the host agent.

If you do not, other services might fail to start or stop.</description>
		<content:encoded><![CDATA[<p>Another remark:</p>
<p>The FIRST service to start should be the authorization service. The second one the host agent.</p>
<p>The LAST service to STOP is the uthorization service. Prior to last the host agent.</p>
<p>If you do not, other services might fail to start or stop.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rilo</title>
		<link>http://www.windowsreference.com/general/how-to-start-stop-vmware-serverworkstation-manually/comment-page-1/#comment-2692</link>
		<dc:creator>Rilo</dc:creator>
		<pubDate>Thu, 15 Oct 2009 05:35:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.windowsreference.com/windows-xp/how-to-start-stop-vmware-serverworkstation-manually/#comment-2692</guid>
		<description>Thanks! Especially Ted. These are the actual services in my version of VMware server. The solution is simple. I was actually searching for a way to start the virtual machine with a shortcut WITHOUT the console and I also need to know what services need to be started for that. I presume that the web access service is not, the dhcp service and/or nat service only if you need and configured it for the network and the host agent maybe for host-only network? (together with the DHCP service?). VSS I don&#039;t know and the Authorization service is probably always needed. Am I right?</description>
		<content:encoded><![CDATA[<p>Thanks! Especially Ted. These are the actual services in my version of VMware server. The solution is simple. I was actually searching for a way to start the virtual machine with a shortcut WITHOUT the console and I also need to know what services need to be started for that. I presume that the web access service is not, the dhcp service and/or nat service only if you need and configured it for the network and the host agent maybe for host-only network? (together with the DHCP service?). VSS I don&#8217;t know and the Authorization service is probably always needed. Am I right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ted</title>
		<link>http://www.windowsreference.com/general/how-to-start-stop-vmware-serverworkstation-manually/comment-page-1/#comment-1050</link>
		<dc:creator>Ted</dc:creator>
		<pubDate>Sat, 24 Jan 2009 21:05:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.windowsreference.com/windows-xp/how-to-start-stop-vmware-serverworkstation-manually/#comment-1050</guid>
		<description>I put my start and stop in the quicklaunch bar, which I found more convenient, until I accidentally sopped the server with an aberrant click.  I also found that vmware-vmx.exe often lingered after everything else shut down, so here is my shut down script:

&lt;code&gt;
@ECHO OFF
set /p userinp=Are you sure you want to kill all vmware server processes? Press 6 to continue or any other key to quit followed by the Enter key . . .
set userinp=%userinp:~0,1%
if &quot;%userinp%&quot;==&quot;6&quot; goto yes
goto no

:Yes
Net Stop &quot;VMWARE VSS Writer&quot;
NET Stop &quot;VMWARE SERVER WEB ACCESS&quot;
NET stop &quot;VMWARE NAT Service&quot;
NET stop &quot;VMware DHCP Service&quot;
NET STOP &quot;VMware Host Agent&quot;
NET Stop &quot;VMware Authorization Service&quot;
taskkill /f /im &quot;vmware-vmx.exe&quot;

ECHO 
ECHO attempted to kill vmware server processes
ECHO check terminal output to verify
GOTO End

:No
ECHO Did not attempt to end VMware server processes

:End
pause
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>I put my start and stop in the quicklaunch bar, which I found more convenient, until I accidentally sopped the server with an aberrant click.  I also found that vmware-vmx.exe often lingered after everything else shut down, so here is my shut down script:</p>
<p><code><br />
@ECHO OFF<br />
set /p userinp=Are you sure you want to kill all vmware server processes? Press 6 to continue or any other key to quit followed by the Enter key . . .<br />
set userinp=%userinp:~0,1%<br />
if "%userinp%"=="6" goto yes<br />
goto no</p>
<p>:Yes<br />
Net Stop "VMWARE VSS Writer"<br />
NET Stop "VMWARE SERVER WEB ACCESS"<br />
NET stop "VMWARE NAT Service"<br />
NET stop "VMware DHCP Service"<br />
NET STOP "VMware Host Agent"<br />
NET Stop "VMware Authorization Service"<br />
taskkill /f /im "vmware-vmx.exe"</p>
<p>ECHO<br />
ECHO attempted to kill vmware server processes<br />
ECHO check terminal output to verify<br />
GOTO End</p>
<p>:No<br />
ECHO Did not attempt to end VMware server processes</p>
<p>:End<br />
pause<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vincent</title>
		<link>http://www.windowsreference.com/general/how-to-start-stop-vmware-serverworkstation-manually/comment-page-1/#comment-33</link>
		<dc:creator>vincent</dc:creator>
		<pubDate>Thu, 30 Oct 2008 06:12:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.windowsreference.com/windows-xp/how-to-start-stop-vmware-serverworkstation-manually/#comment-33</guid>
		<description>I used the following batch files to start and stop VMWaure Player.

VMPlayer.bat
-------------------------------------------------------------
@echo off
ECHO Starting VMWare Related Services
@call c:\progra~1\vmware\vmservices.bat start
:player
ECHO Starting VMWare Player
@c:\progra~1\vmware\vmware~1\vmplayer.exe
REM - Are you going to quit VM Player?
c:\progra~1\vmware\CHOICE /N /C:YN /T:N,20 Are you going to quit VM Player?
IF ERRORLEVEL ==2 GOTO player
IF ERRORLEVEL ==1 GOTO exit
:exit
ECHO Stopping VMWare Related Services
@call c:\progra~1\vmware\vmservices.bat stop
------------------------------------------------------------
VMServices.bat
------------------------------------------------------------
net %1 &quot;VMware Authorization Service&quot;
net %1 &quot;VMware NAT Service&quot;
net %1 &quot;VMware Virtual Mount Manager Extended&quot;
net %1 &quot;VMware DHCP Service&quot;</description>
		<content:encoded><![CDATA[<p>I used the following batch files to start and stop VMWaure Player.</p>
<p>VMPlayer.bat<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
@echo off<br />
ECHO Starting VMWare Related Services<br />
@call c:\progra~1\vmware\vmservices.bat start<br />
:player<br />
ECHO Starting VMWare Player<br />
@c:\progra~1\vmware\vmware~1\vmplayer.exe<br />
REM &#8211; Are you going to quit VM Player?<br />
c:\progra~1\vmware\CHOICE /N /C:YN /T:N,20 Are you going to quit VM Player?<br />
IF ERRORLEVEL ==2 GOTO player<br />
IF ERRORLEVEL ==1 GOTO exit<br />
:exit<br />
ECHO Stopping VMWare Related Services<br />
@call c:\progra~1\vmware\vmservices.bat stop<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
VMServices.bat<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
net %1 &#8220;VMware Authorization Service&#8221;<br />
net %1 &#8220;VMware NAT Service&#8221;<br />
net %1 &#8220;VMware Virtual Mount Manager Extended&#8221;<br />
net %1 &#8220;VMware DHCP Service&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ZenMonk</title>
		<link>http://www.windowsreference.com/general/how-to-start-stop-vmware-serverworkstation-manually/comment-page-1/#comment-34</link>
		<dc:creator>ZenMonk</dc:creator>
		<pubDate>Fri, 26 Sep 2008 21:15:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.windowsreference.com/windows-xp/how-to-start-stop-vmware-serverworkstation-manually/#comment-34</guid>
		<description>I use this one to start, in order keep all services stopped:

sc config VMnetDHCP start= demand
net start VMnetDHCP
sc config &quot;VMware NAT Service&quot; start= demand
net start &quot;VMware NAT Service&quot;
sc config vmount2 start= demand
net start vmount2
&quot;C:\Program Files\VMware\VMware Workstation\vmware.exe&quot;

And for the stop:

net stop VMnetDHCP
sc config VMnetDHCP start= disabled
net stop &quot;VMware NAT Service&quot;
sc config &quot;VMware NAT Service&quot; start= disabled
net stop vmount2
sc config vmount2 start= disabled</description>
		<content:encoded><![CDATA[<p>I use this one to start, in order keep all services stopped:</p>
<p>sc config VMnetDHCP start= demand<br />
net start VMnetDHCP<br />
sc config &#8220;VMware NAT Service&#8221; start= demand<br />
net start &#8220;VMware NAT Service&#8221;<br />
sc config vmount2 start= demand<br />
net start vmount2<br />
&#8220;C:\Program Files\VMware\VMware Workstation\vmware.exe&#8221;</p>
<p>And for the stop:</p>
<p>net stop VMnetDHCP<br />
sc config VMnetDHCP start= disabled<br />
net stop &#8220;VMware NAT Service&#8221;<br />
sc config &#8220;VMware NAT Service&#8221; start= disabled<br />
net stop vmount2<br />
sc config vmount2 start= disabled</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ansgar</title>
		<link>http://www.windowsreference.com/general/how-to-start-stop-vmware-serverworkstation-manually/comment-page-1/#comment-35</link>
		<dc:creator>Ansgar</dc:creator>
		<pubDate>Fri, 18 Jul 2008 04:34:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.windowsreference.com/windows-xp/how-to-start-stop-vmware-serverworkstation-manually/#comment-35</guid>
		<description>thanks a lot for your help. on my version of windows (xp pro), the service names seem to be for your help, so here is the vmstart.bat that works for me:

net start VMAuthdService
net start VMnetDHCP
net start &quot;VMware NAT Service&quot;
net start vmserverdWin32
net start vmount2
&quot;C:\Program Files\VMware\VMware Server\vmware.exe&quot;</description>
		<content:encoded><![CDATA[<p>thanks a lot for your help. on my version of windows (xp pro), the service names seem to be for your help, so here is the vmstart.bat that works for me:</p>
<p>net start VMAuthdService<br />
net start VMnetDHCP<br />
net start &#8220;VMware NAT Service&#8221;<br />
net start vmserverdWin32<br />
net start vmount2<br />
&#8220;C:\Program Files\VMware\VMware Server\vmware.exe&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thierry B.</title>
		<link>http://www.windowsreference.com/general/how-to-start-stop-vmware-serverworkstation-manually/comment-page-1/#comment-36</link>
		<dc:creator>Thierry B.</dc:creator>
		<pubDate>Sun, 13 Jul 2008 09:14:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.windowsreference.com/windows-xp/how-to-start-stop-vmware-serverworkstation-manually/#comment-36</guid>
		<description>Pour faire la même chose sur Ubuntu/Linux :

&lt;code&gt;
sudo update-rc.d vmware-server remove
&lt;/code&gt;

pour désactiver le lancement automatique du service, puis dans un fichier script :

&lt;code&gt;
#!/bin/sh
#
gksudo /etc/init.d/vmware-server start
vmware
gksudo /etc/init.d/vmware-server stop
&lt;/code&gt;

Le service est arrêté automatiquement quand on quitte &lt;i&gt;vmware&lt;/i&gt;.</description>
		<content:encoded><![CDATA[<p>Pour faire la même chose sur Ubuntu/Linux :</p>
<p><code><br />
sudo update-rc.d vmware-server remove<br />
</code></p>
<p>pour désactiver le lancement automatique du service, puis dans un fichier script :</p>
<p><code><br />
#!/bin/sh<br />
#<br />
gksudo /etc/init.d/vmware-server start<br />
vmware<br />
gksudo /etc/init.d/vmware-server stop<br />
</code></p>
<p>Le service est arrêté automatiquement quand on quitte <i>vmware</i>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Drew</title>
		<link>http://www.windowsreference.com/general/how-to-start-stop-vmware-serverworkstation-manually/comment-page-1/#comment-37</link>
		<dc:creator>Drew</dc:creator>
		<pubDate>Fri, 16 May 2008 15:39:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.windowsreference.com/windows-xp/how-to-start-stop-vmware-serverworkstation-manually/#comment-37</guid>
		<description>I love this, that&#039;s for the help. I always hated having the VM services start themselves up and I went and disabled them, but this is really what I wanted and was looking for so I could still use the VM server. Thanks.</description>
		<content:encoded><![CDATA[<p>I love this, that&#8217;s for the help. I always hated having the VM services start themselves up and I went and disabled them, but this is really what I wanted and was looking for so I could still use the VM server. Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
