Disable Skype Auto-update - Improved
Log In or Register to download the BES file, and more.

0 Votes

Versioning - This is the latest version.

1Disable Skype Auto-update - Improved12/4/2013 1:09:27 PM
2Disable Skype Auto-update - Improved12/4/2013 1:45:31 PM

Description

The listed computers have Skype installed and configured to check for updates automatically. Deploying the action below will disable Skype auto-update.

Property Details

ID3662
StatusAlpha - Code that was just developed
TitleDisable Skype Auto-update - Improved
DomainBESC
Download Size0
Source IDjgstew
Source Release Date12/4/2013 12:00:00 AM
Added by on 12/4/2013 1:45:31 PM
Last Modified by on 12/4/2013 1:45:31 PM
Counters 12141 Views / 10 Downloads
User Rating 1 star 2 star 3 star 4 star 5 star * Average over 0 ratings. ** Log In or Register to add your rating.

Relevance

Used in 368 fixlets   * Results in a true/false
Show indented relevance
(if( name of operating system starts with "Win" ) then platform id of operating system != 3 else false) AND (if exists property "in proxy agent context" then ( not in proxy agent context ) else true )
Used in 257 fixlets and 9 analyses   * Results in a true/false
Show indented relevance
name of operating system as lowercase starts with "win"
Used in 16 fixlets   * Results in a true/false
Show indented relevance
version of client >= "7"
Used in 103 fixlets   * Results in a true/false
Show indented relevance
not exists values "PROCESSOR_ARCHITECTURE" whose (it as string as lowercase = "ia64") of keys "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" of registry
Used in 2 fixlets   * Results in a true/false
Show indented relevance
/* Windows 2000 or later */ version of operating system >= "5.0" /* http://msdn.microsoft.com/en-us/library/windows/desktop/ms724832(v=vs.85).aspx */
Used in 2 fixlets   * Results in a true/false
Show indented relevance
/* Only relevant if skype is installed */ exists key "HKLM\Software\Skype" whose(exists key "Phone" of it AND exists value "SkypePath" of key "Phone" of it) of registry
Used in 2 fixlets   * Results in a true/false
Show indented relevance
/* Only relevant if skype is installed */ exists file ((value "SkypePath" of key "Phone" of it as string) of key "HKLM\Software\Skype" of registry)
Used in 1 fixlet   * Results in a true/false
Show indented relevance
( /* Check if updates are disabled for Skype < version 6.5 */ ((version of file (value "SkypePath" of key "Phone" of it as string) < "6.5") AND (not exist key "Phone" whose (value "DisableVersionCheck" of it = 1) of it)) OR /* Check if updates are disabled for Skype >= version 6.5 */ ((version of file (value "SkypePath" of key "Phone" of it as string) >= "6.5") AND (not exist key "Installer" whose (value "InstallUpdates" of it = 0) of it))) of key "HKLM\Software\Skype" of registry

Actions

Action 1

Action Link Click here to disable Skype Auto-update.
Script Type BigFix Action Script
// http://www.updatefreezer.org/index.php?id=4
// http://download.skype.com/share/business/guides/skype-it-administrators-guide.pdf
// http://www.tersetechtips.com/disable-skype-forced-updates/

if{((version of file (value "SkypePath" of key "Phone" of it as string)) of key "HKLM\Software\Skype" of registry) < "6.5"}
    regset "[HKEY_LOCAL_MACHINE\SOFTWARE\Skype\Phone]" "DisableVersionCheck"=dword:00000001
else
    regset "[HKEY_LOCAL_MACHINE\SOFTWARE\Skype\Installer]" "InstallUpdates"=dword:00000000
endif
Success Criteria

This action will be considered successful when the applicability relevance evaluates to false.


Sharing

Social Media:
Share this page on Yammer

Comments

Log In or Register to leave comments!
jgstew -
A variant of this is now available in "Updates for Windows Applications, version 625" provided by IBM. See thread here: https://www.ibm.com/developerworks/community/forums/html/topic?id=25d95b33-506e-4f61-80ae-e1292f5ae3ea
jgstew -
I have not sufficiently tested this yet, let me know if there are any issues.