Tuesday, November 18, 2014

How to Remove quantserve.com Tracking Cookie?


Quantserve (Quantcast): What is it and what does it do?
Quantserve appeared as the second-biggest name in our Tracking the Trackers data. Here we find out as much as we can about what it does.

For an introduction to cookies and web trackers, read our guide.

What is Quantserve?
Quantserve.com creates web beacons and cookies operated by audience research and behavioural advertising company Quantcast.

It has a number of products:

Measurement & Insight
This service allows website owners and advertisers can use Quantcast web beacons in their content to see how many views they get, what age range the people viewing are likely to be in, and what income they are likely to generate (demographic data).

Audience Targeting
Quantcast uses the measurement and insight data help companies find people to target with their advertising. Their "Quantcast Lookalikes" service lets website owners build their own audience segments, which can be very specific. For example, a company could build a behavioural profile of the type of person that likes buying a particular product from their website. Quantcast would then identify other browsers that are similar so adverts for that product could be targeted to them.

What information is Quantcast tracking?
Quantcast says all its tracking is anonymous, accessing when, from where and at what time a browser loads its web beacon. "Quantcast only models anonymous records of internet usage. Quantcast does not intentionally collect any personally identifiable information – that is, information that could be used to uniquely identify or locate an individual."

On its website, Quantcast says it uses statistical modelling to "build a translation of cookies to people". Part of the aim of this approach is to counteract the issue that some people who access sites on multiple devices, or delete cookies regularly, may be counted more than once.

Quantcast say it does this by looking at patterns such as how often browsers are visiting the site, and how often they are likely to visit at home and work to infer how many "real" people are accessing a website.

However, it does not obtain information that relates back to specific individuals. What Quantcast does is build up a profile of a browser's behaviour across all sites using their web beacons (it claims these include over "100m web destinations, including websites, video, widgets, blogs, and advertising campaigns").

Information that may be captured when browsing a site using Quantcast includes: what page the browser was on; what searches were typed into the website search; the time the browser was on the website. This information, or "log data", is then used to build a profile of different types or "segments" of browsers.

In 2010, Quantcast paid $2.4m to settle a class action lawsuit alleging it used Flash cookies to reset tracking cookies after users deleted them. The firm stopped using Flash cookies in 2009, after research by The University of California Berkley identified the practice and it was publicised in the media.

Is the data sold to third parties?
In its privacy policy, Quantcast says it may share log data and aggregated information with third parties. These include:
- companies employed to support Quantcast services.
- companies that provide delivery and measurement of ad campaigns.

This data would be used for such things as industry analysis and targeting adverts.

How much money does Quantcast make?
Quantcast is a private US company so is not obliged to publish detailed breakdowns of its revenue and profit. However, the company does say it is backed by over $50m in funding from the following investors: Allen & Company, Cisco Systems, Founders Fund, Polaris Venture Partners and Revolution Ventures


quantserve.com Removal Instructions:

Go to Start > Settings > Control Panel > Internet Options.
Click the Privacy tab, click the Website button or Edit button in Website group box.
In the Website box, enter quantserve.com and click Reject button to add this website to block lists.
Click Ok button to save the changes.
Open the file "%WinDir%\system32\drivers\etc\hosts" with a text editor program.
Add the following lines to the end of the text file.
127.0.0.1 quantserve.com www.quantserve.com
127.0.0.1 edge.quantserve.com
127.0.0.1 pixel.quantserve.com
127.0.0.1 quantcast.com www.quantcast.com
Save and close the file.
Reboot your computer.


Recommended free malware remover:

http://www.malwarebytes.org/products/malwarebytes_free

http://www.superantispyware.com/?tag=SUPERANTISPYWARE (Free edition)


Monday, November 17, 2014

vCenter 5.x appliance space issue /storage/core out of space

Issue:

vCenter 5.x appliance space issue /storage/core out of space


/storage/core folder shows 100% used.










Resolution


  • SSH into vCSA.
  • issue the command "df -h" to display the disk space status
  • CD into /storage/core directory
  • issue the command "ls -l -t" to display the files by date. Delete the oldest first.

  •  You should be able to manually remove (rm -f file) some core file placed in /storage/core. 
Doing this, it should free some disk space. Issue the command "rm -l core.xxxx.xxxx" to delete the core dump files.













Thursday, October 30, 2014

Internet Explorer 11 - Page Setup Dialog", Error 13, Error in loading DLL

Cannot print from webpages. When I try to print an error message


Issue


Computer running Win 7 SP1
Internet Explorer 11
Cannot print from webpages. When I try to print an error message comes up that "An error has occurred raising "Page Setup Dialog", Error 13, Error in loading DLL
Solution
Check that a working default printer is configured.


Friday, October 24, 2014

How to set up a silent install of QuickTime through a batch script

How to set up a silent install of QuickTime through 

a batch script


1.

Download the QuickTime installer

2.

Open a command prompt to extract the .msi files

Navigate to where the installer was downloaded. Extract the .msi files with:
QuickTimeInstaller.exe /extract
This may take a minute or two depending on the speed of your computer. There should be four files produced:
QuickTime.msi
AppleSoftwareUpdate.msi
AppleApplicationSupport.msi
QuickTimeInstallerAdmin.exe
3.

Copy the files to your distribution share

For the purposes of this example, assume they are copied to
\\servername\share\QuickTime\7.7.6
4.

Create a batch file and add the installation commands

Use the following commands in your batch file to silently install QuickTime:
msiexec /i "\\servername\share\Quicktime\7.7.6\AppleApplicationSupport.msi" /passive
msiexec /i "\\servername\share\Quicktime\7.7.6\QuickTime.msi" /passive DESKTOP_SHORTCUTS=NO
msiexec /i "\\servername\share\Quicktime\7.7.6\AppleSoftwareUpdate.msi" /passive

NOTE: Apple Applicaiton Support needs to be installed first or Quick Time will not install.

In the first line, "DESKTOP_SHORTCUTS=NO" will suppress the automatic creation of the QuickTime desktop shortcut.
If upgrading QuickTime, this will also replace the previous version.
All three .msi files seem to be required for the installation to work.

That should set things up so you can run the install/upgrade as an interactive batch file, as a scheduled task,
or however you desire.
Tested with QuickTime 7.7.6 on Win 7 and 8/8.1