Difference between revisions of "Bing bar"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Created page with "== Bing Bar == This script is runing on every start of a machine to remove bing bar, which sometimes comes with certain softwareinstallations <source lang="xml"> <?xml version=...")
 
Line 25: Line 25:
  
 
</source>
 
</source>
 +
 +
[[category:Silent Installers]]

Revision as of 13:29, 25 July 2012

Bing Bar

This script is runing on every start of a machine to remove bing bar, which sometimes comes with certain softwareinstallations

<?xml version="1.0" encoding="UTF-8"?>

<packages>
	
		 
 <package
        id="bing"
        name="bing"
        revision="4"
        execute="always">
		<variable name="SOFTWARE" value="\\sfbk0002\programme\wpkg\software"/>
        <install cmd='%COMSPEC% /C if exist "%PROGRAMFILES%\Bing Bar Installer\InstallManager.exe" "%PROGRAMFILES%\Bing Bar Installer\InstallManager.exe" /UNINSTALL /silent' />
		<install cmd='%COMSPEC% /C if exist "%PROGRAMFILES(x86)%\Bing Bar Installer\InstallManager.exe" "%PROGRAMFILES(x86)%\Bing Bar Installer\InstallManager.exe" /UNINSTALL /silent' />
    </package>
	
	
	
</packages>