Skip to main content

Customizing the OfficeScan 10.0 Web Reputation Services notificati


Problem:
You can customize the HTML notifications displayed by OfficeScan when the Web Reputation Services blocks a URL.

 
Solution:
Public

 
Please do the following:
   
1.
On the OfficeScan server, open the \PCCSRV\Pccnt\Common folder.
   
2.
Make a backup copy of the following files:
   
    URLfAlt.htm
UrlFDnsS.htm
UrlFErr.htm
UrlFPhis.htm
URLFCredLevel.htm
URLFCredScore.htm
   
3.
Open the URLfAlt.htm file in a text or HTML editor.
   
4.
Edit the message and appearance of the notification as required.
   
5.
Save and close the file.
   
6.
Repeat steps 3 to 5 for the five other .htm files.
   
7.
On the OfficeScan client, run the \\\ofcscan\autopcc.exe to update the files on the client.
 
Note: In order for the files to be deployed to client machines, hot fix deployment should be enabled.
 
  To verify if hot fix deployment is enabled:
  a. Log on to the OfficeScan management console.
     
  b. Go to Networked Computers > Client Management > Settings > Privileges and Other Settings > Other Settings tab.
     
  c. Make sure that the Clients can update components but not upgrade the client program or deploy hot fixes check box is not selected.
     
  d. Click Apply to All Clients if you deselected the above-mentioned check box.
 
The above .htm files may also be included in future patches and releases. If they are, the edited .htm files will be replaced upon installing a patch.
When this happens, back up then replace the above files with the edited ones. Only make sure that the timestamp of the files is newer than those which came from the patch so they will be deployed to the client machines.

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.