EXPRESS's Posts

chill, This is what everyone is talking about we are on update2.
Same here, we are running VC 2.5 Build 104215. I opened a case with VM support and all they stated was: "We already opened a Problem Report with Engineering for this issue. It is scheduled... See more...
Same here, we are running VC 2.5 Build 104215. I opened a case with VM support and all they stated was: "We already opened a Problem Report with Engineering for this issue. It is scheduled to be fixed for the next update for VirtualCenter Server. Please install the new update when it becomes available and advise the resupts." Anyone else with this issue??
All is good here as well, U2 and vRanger...
Not sure if its the same related problem like we just had, but every couple of days I would lose our Update Manager and a message would pop up stating that "Server Connection Invalid" - " Client ... See more...
Not sure if its the same related problem like we just had, but every couple of days I would lose our Update Manager and a message would pop up stating that "Server Connection Invalid" - " Client plugin will be unloaded....." We seemed to have fixed the problem by going to the add/remove and saw they were two installs of Update Manager Client, I removed both and re-did plugin now shows only one. You can give that a shot.... Good Luck.
Thanks for all the info I am going to concentrate on the network portion, I really appreciate all the help. Once I get this going I will post what my solution as well, I got a lot of info from ... See more...
Thanks for all the info I am going to concentrate on the network portion, I really appreciate all the help. Once I get this going I will post what my solution as well, I got a lot of info from you guys now, now i know where to look. Thanks a million...
Unfortunately I can't do the laptop testing since the servers are located offsite. Our servers group stated to me that they enabled the DHCP on the severs just now. I just tried doing an ftp an... See more...
Unfortunately I can't do the laptop testing since the servers are located offsite. Our servers group stated to me that they enabled the DHCP on the severs just now. I just tried doing an ftp and I got "Failed to log into 10.10.10.10: Failed to connect to FTP server". Attached is my ks file. Thanks
I have manually installed ESX 3.5 with update1, and setup the ks.cfg from there. I have tried all the different methods, floppy, ftp, http but nothing connects. I have installed the ESX3.5 with... See more...
I have manually installed ESX 3.5 with update1, and setup the ks.cfg from there. I have tried all the different methods, floppy, ftp, http but nothing connects. I have installed the ESX3.5 without the update as well with the same results. I am think it must be the way the server are setup or the network but i dont know where to look, the help here at my place isnt that great so I am reaching out to you guys for anything you can give me. The servers are HP Proliant BL 460c G1, I am attaching to them via the ILO Intergrated Remote Console. The CDROM attaches with no problem, the a:\ seems to connect I see the light reading on my hardware, but the ESX doesn't seem to see it to mount the drive. If it is a network issue where should I look the HP server. This is driving me nuts.... Thanks again in advance for you help...
Thanks for the reply ac57846, but thats where I am having the problem. I use the cdrom for the install and have been trying to use either ftp, http, a: drive but to no avail. I can run the instal... See more...
Thanks for the reply ac57846, but thats where I am having the problem. I use the cdrom for the install and have been trying to use either ftp, http, a: drive but to no avail. I can run the install from the cdrom and it runs fairly quick, but i am unable to get the ks to go.
Okay, i am having this same problem, but i have not seen any resolutions.... What was done to get it fixed. I have HP 460c, i tried floppy, ftp, http and nothing. how did you get it to work PLEAS... See more...
Okay, i am having this same problem, but i have not seen any resolutions.... What was done to get it fixed. I have HP 460c, i tried floppy, ftp, http and nothing. how did you get it to work PLEASE share it with me. VM support can't give me an answer either, this is very frustrating.... Thanks for your help in advance....
Hey Guys, New here, I'am about to look into this backup utility, I see their are several downloads to chose from which is the correct one for creating backups or do i need them all? Tha... See more...
Hey Guys, New here, I'am about to look into this backup utility, I see their are several downloads to chose from which is the correct one for creating backups or do i need them all? Thanks,
Texiwill You are probably correct that it may be a windows question more than a vmware question. But I figured someone may have tried this or has it working and would be able to share that k... See more...
Texiwill You are probably correct that it may be a windows question more than a vmware question. But I figured someone may have tried this or has it working and would be able to share that knowledge. I have a VBScript to start the process RDP runnnig via ScriptLogic. I am not to concerned with the password at this point the user can login via windows and if asked by vmware thats fine for now. Once the user logs out, locks or shutdown the vm I want the local machine to logoff as well. Any help would be appreciated. Thanks.
Ok let me try and simplify my question, I would like to have a single logon to windows to automatocally logon to my vmware. any ideas. Is anyone using VM as thier main pc's at thier comp... See more...
Ok let me try and simplify my question, I would like to have a single logon to windows to automatocally logon to my vmware. any ideas. Is anyone using VM as thier main pc's at thier company? Message was edited by: EXPRESS
Hi All, Hope you can help me here. I need to setup a single login from a Windows pc W2k or XP via RDP to the users VM. I can get it to work to start from XP but I cant get it to start using W2... See more...
Hi All, Hope you can help me here. I need to setup a single login from a Windows pc W2k or XP via RDP to the users VM. I can get it to work to start from XP but I cant get it to start using W2k. I know XP uses RDP 6.0 and W2k 5.2. Also I need to figure out how to do a Logoff from VM and to it also logoff local desktop any ideas??? This is what I use in a .vbs to logon directly to VM via XP; ' vmconnect.vbs - Connect to a user's Virtual Machine instead of explorer.exe as the shell. Dim objShell, objExec, strAppExe strAppExe="mstsc.exe /span vmw-%username%.RDP" 'strAppExe="mstsc.exe vmw-%username%.RDP" Set objShell = CreateObject("WScript.Shell") Set objExec = objShell.Exec(strAppExe) Do While objExec.Status = 0 WScript.Sleep 500 Loop 'Set objExec = objShell.Exec("logoff") Thanks,