Skip to main content

"Setup cannot initialize the server. Please contact your vendor for assistance." appears when installing the OfficeScan server


Problem:
The error message appears because the OfficeScan Master Service is not installed and the OfficeScan website was not created.
 
Solution:
To resolve this issue, please do the following:
A.
Manually install the OfficeScan Master Service.
1.
Open a command prompt.
2.
Go to the ..\Trend Micro\Officescan\PCCSRV directory.
3.
Run the "SVRSVCSETUP –INSTALL" command.
4.
Verify if the OfficeScan Master Service was successfully installed by checking the services console.
5.
Make sure that the service is started.
B.
Create the OfficeScan Website
1.
Open a command prompt.
2.
Go to the ..\Trend Micro\Officescan\PCCSRV directory.
3.
Run the following commands:
"SVRSVCSETUP –SETVIRDIR"
"SVRSVCSETUP –SETPRIVILEGE"
"SVRSVCSETUP –ENABLESSL" (if SSL is enabled)
4.
Verify if the OfficeScan Website is created on IIS.
C.
Log on to the Management Console to verify if OfficeScan is now working.

Comments

Popular posts from this blog

AWS Certification Q&A

The AWS Certified Solutions Architect – Associate Level exam is intended for individuals with experience designing distributed applications and systems on the AWS platform. I am listing many sample certification questions and answers while will help to face the certification successfully Keep in mind that the answers for each question might change due to the advancement of AWS and please try to find the answer in more logical manner Answers are below of the page Sample Questions for Amazon Web Services Associate Solutions Architect Certification What does Amazon S3 stand for? A Simple Storage Solution. B Storage Storage Storage (triple redundancy Storage). C Storage Server Solution. D Simple Storage Service. You must assign each server to at least _____ security group A 3 B 2 C 4 D 1 - Before I delete an EBS volume, what can I do if I want to recreate the volume later? A Create a copy of the EBS volume (not a snapshot) B Store a snapshot of the volume C Downlo...

Powershell script to remote reboot servers

$RebootList = Get-Content RebootServers.txt foreach( $Rsrv in $RebootList ) { Write-host “Issuing remote reboot command to $Rsrv” # Command to force reboot the remote server (gwmi Win32_OperatingSystem -ComputerName $Rsrv).Win32Shutdown (6) } That’s all. You can replace the  (6)  with any of the following: 0 = Log off 1 = Shutdown 2 = Reboot 8 = Power off 4 = Forced log off 5 = Forced shutdown 6 = Forced reboot 12 = Forced power off *******************************************   Note: 1. Create a text file – in this case RebootServers.txt 2. Populate RebootServers.txt with the names of the servers you want to reboot. One server name per line. Make sure there are no blank lines after the last server name. 3. Save the RebootServers.txt file in the same directory as the PS1 script (like the one you created – RemoteShutDown.ps1) 4. Run the script to reboot servers.